Skip to content

Instantly share code, notes, and snippets.

View ssharker21's full-sized avatar

Summit ssharker21

View GitHub Profile
@ssharker21
ssharker21 / redditusername.py
Created February 12, 2022 22:33
Reddit Username Scraper
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:
@ssharker21
ssharker21 / Self-Bot.py
Created May 4, 2021 23:30
Discord Self-Bot (created by jpark9013)
import asyncio
import json
import logging
import random
import string
import typing
from datetime import datetime
import discord
from discord import Embed, Colour