DEV Community

Cover image for User Scanner : Find Your Unique & Perfect Username Across All Popular Platforms πŸ”₯⭐
kaifcodec
kaifcodec

Posted on

User Scanner : Find Your Unique & Perfect Username Across All Popular Platforms πŸ”₯⭐

User Scanner

Repo: https://github.com/kaifcodec/user-scanner


Scan a username across multiple social, developer, and creator platforms to see if it’s available.

Perfect for finding a unique username across GitHub, Twitter, Reddit, Instagram, and more, all in one command.

Features

  • βœ… Check usernames across social networks, developer platforms, and creator communities.
  • βœ… Clear Available / Taken / Error output for each platform.
  • βœ… Fully modular: add new platform modules easily.
  • βœ… Command-line interface ready: works directly after pip install.

- βœ… Can be used as username OSINT tool.

Installation

pip install user-scanner
Enter fullscreen mode Exit fullscreen mode

Usage

Scan a username across all platforms:

user-scanner -u <username>
Enter fullscreen mode Exit fullscreen mode

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

Enter fullscreen mode Exit fullscreen mode

Example Output:

 Checking username: johndoe078

== DEV SITES ==
  [βœ”] Codeberg: Available
  [βœ”] Cratesio: Available
  [βœ”] Dockerhub: Available
  [✘] Github: Taken
  [βœ”] Gitlab: Available
  [βœ”] Launchpad: Available
  [βœ”] Npmjs: Available
  [βœ”] Replit: Available

== SOCIAL SITES ==
  [βœ”] Bluesky: Available
  [✘] Instagram: Taken
  [βœ”] Mastodon: Available
  [βœ”] Pinterest: Available
  [✘] Reddit: Taken
  [βœ”] Snapchat: Available
  [βœ”] Telegram: Available
  [✘] Threads: Taken
  [βœ”] X (Twitter): Available
  [βœ”] Youtube: Available

== CREATOR SITES ==
  [βœ”] Devto: Available
  [βœ”] Hashnode: Available
  [βœ”] Kaggle: Available
  [βœ”] Medium: Available
  [βœ”] Patreon: Available

== COMMUNITY SITES ==
  [βœ”] Coderlegion: Available

== GAMING SITES ==
  [βœ”] Chess_com: Available
  [βœ”] Osu: Available
  ...
  ...
  ...
Enter fullscreen mode Exit fullscreen mode

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, and many more(upcoming))
Enter fullscreen mode Exit fullscreen mode

Module guidelines:

  • Each module must define a validate_<site>() function that takes a username and returns:
    • 1 β†’ Available
    • 0 β†’ Taken
    • 2 β†’ Error / Could not check
  • Use httpx for requests, colorama for colored output.
  • Optional: modules can define a CLI parser if they support custom arguments.

See CONTRIBUTING.md for examples.


Dependencies:


License

This project is licensed under the MIT License.

⚠️ community/ and gaming/ are small, looking for contributions

Top comments (1)

Collapse
 
kaifcodec profile image
kaifcodec

We’re looking for passionate contributors to join us, help add new sites, refine features, and make the tool faster and better for everyone!