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 asyncio | |
import json | |
import logging | |
import random | |
import string | |
import typing | |
from datetime import datetime | |
import discord | |
from discord import Embed, Colour |
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 asyncio | |
import aiohttp | |
# This program was created by jpark. It scrapes reddit for valid accounts if one already knows the username besides numbers at the end. | |
# Swap the characters inside the quotation marks for the variable s. | |
# Inside the quotation marks, type the part of the username that you already know (letters only). For the value of the number inside the string (i + _), | |
# Set the starting number for this scraper. | |
async def main(): | |
async with aiohttp.ClientSession() as session: |