Skip to content

Instantly share code, notes, and snippets.

View DatDraggy's full-sized avatar
💭
Rawr

DatDraggy DatDraggy

💭
Rawr
View GitHub Profile
@SUT0L
SUT0L / email_commit_finder.py
Created January 29, 2024 06:48
Get all emails from a users github accounts across all commits
import asyncio
import aiohttp
import re
import argparse
import time
from aiohttp import ClientSession
class RateLimiter:
def __init__(self, max_rate):
self.max_rate = max_rate