🏃♂️
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import lastpass | |
| import regex | |
| import time | |
| from getpass import getpass | |
| from tkinter import Tk | |
| def init_vault(): | |
| vault = lastpass.Vault.open_remote( | |
| str(input("Email:\t\t")), getpass(prompt="Password:\t", stream=None)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| import requests | |
| url = str(input('Please paste the link of the discord invite:\t')) | |
| # Receives the response from the GET request | |
| resp = requests.get(url) | |
| # Extracting the number of members from the HTML using regex, while also removing unnecessary characters, such as | |
| # commas and the string " other members". |