Collection of username checkers for various platforms. Proxyless and proxy support!
**Features**
1. Multi-threading Support:
* Enables concurrent execution of tasks to improve efficiency and speed.
2. Custom Website Integration:
* Allows users to specify and scrape data from...
<
import asyncio
from os import system
from typing import List
import aiohttp
def write_file(arg: str) -> None:
with open('hits.txt', 'a', encoding='UTF-8') as f:
f.write(f'{arg}\n')
class Checker:
def __init__(self, usernames: List[str]):
self.to_check = usernames...