π User Scanner: Find Your Perfect Username Across All Platforms in Seconds β‘
Tired of opening tabs and hunting site-by-site to see if your favorite username is taken?
user-scanner fixes that , fast, from your terminal, with clear color-coded output. Perfect for developers, creators, and anyone who wants a consistent online identity without the busywork.
Features
- β Check usernames across social networks, developer platforms, and creator communities.
- β Clear Available / Taken / Error output for each platform.
- β Robust error handling: It prints the exact reason (e.g. Cannot use underscores, hyphens at the start/end)
- β Fully modular: add new platform modules easily.
- β Wildcard-based username permutations for automatic variation generation using provided suffix
- β
Command-line interface ready: works directly after
pip install - β Can be used as username OSINT tool.
- β Very low and lightweight dependencies, can be run on any machine.
Installation
pip install user-scanner
Usage
Scan a username across all platforms:
user-scanner -u <username>
Optionally, scan a specific category or single module:
user-scanner -u <username> -c dev
user-scanner -l # Lists all available modules
user-scanner -u <username> -m github
user-scanner -u <username> -p <suffix>
Generate multiple username variations by appending a suffix:
user-scanner -u <username> -p <suffix>
Optionally, scan a specific category or single module with limit:
user-scanner -u <username> -p <suffix> -c dev
user-scanner -u <username> -p <suffix> -m github
user-scanner -u <username> -p <suffix> -s <number> # limit generation of usernames
user-scanner -u <username> -p <suffix> -d <seconds> #delay to avoid rate-limits
Screenshots:
- Note*: New modules are constantly getting added so this might have only limited, outdated output:
Contributing:
Modules are organized by category:
user_scanner/
βββ dev/ # Developer platforms (GitHub, GitLab, etc.)
βββ social/ # Social platforms (Twitter/X, Reddit, Instagram, etc.)
βββ creator/ # Creator platforms (Hashnode, Dev.to, Medium, etc.)
βββ community/ # Community platforms (forums, niche sites)
βββ gaming/ # Gaming sites (chess.com, roblox, monkeytype etc.)
βββ donation/ # Donation taking sites (buymeacoffe.com, similar...)
Module guidelines:
This project contains small "validator" modules that check whether a username exists on a given platform. Each validator is a single function that returns a Result object (see core/orchestrator.py).
Result semantics:
- Result.available() β
available - Result.taken() β
taken - Result.error(message: Optional[str]) β
error, blocked, unknown, or request failure (include short diagnostic message when helpful)
Follow this document when adding or updating validators.
Dependencies:
License
This project is licensed under the MIT License.
Top comments (1)
Contributions are always welcome, feel free to check out.