Skip to content

Commit

Permalink
Initial commit v1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
crock committed Oct 25, 2017
1 parent 7d98a1d commit 93f80ec
Show file tree
Hide file tree
Showing 28 changed files with 555 additions and 14,695 deletions.
12 changes: 7 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
archive/
# Useless Mac-only file
.DS_Store

# Editor configurations
.vscode
username-checker.iml
.idea
word_lists/TEST-LIST
word_lists/words.txt
word_lists/1-1000.txt

# Keeping my personal OG findings private hehe ;)
AVAILABLE.txt
14 changes: 14 additions & 0 deletions OGCheckr.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Python Standard Modules
import sys
import os

from lib.configure import getSite as SITE

def main():
if (SITE() == 5) or (SITE() == 6): # Steam
import lib.parse
else:
import lib.get

if __name__ == "__main__":
main()
71 changes: 3 additions & 68 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,69 +1,4 @@
# OGCheckr CLI

### About
This is a script I made a while back to check the availability of OG words as handles on the various social media platforms. For the most part, it works with any site that has web-based profile pages.

### Known Supported Services
- ~~Minecraft~~ - For your Minecraft checking needs, check out [this](http://www.mc-market.org/resources/4480/) awesome checker instead!
- Twitter
- Steam ID URLs
- Steam Group URLs
- Mixer (formerly Beam.pro)
- Twitch.tv
- Soundcloud
- Github
- About.me
- YouTube (/{username} url format)

### Known Unsupported Services
- Instagram
- Snapchat
- Kik

### Comptability
Version `1.4-1.5+` is only compatible with Python 3+
Verion `1.0-1.3` is compatible with Python 2 & 3

### Installation

1. Download the zip or clone the repo with Git on your local machine.

2. Make sure Python and PIP are installed.

3. Install the dependencies using the following command

```
pip3 install configparser requests termcolor bs4
```

4. Edit the `config.ini` with the appropriate values for the site you want to check.

5. Run the script via command line using the following command

```
python3 UsernameChecker.py
```

You can optionally supply some additional command-line arguments for faster use.
```
python3 UsernameChecker.py -l {list filename} -o {output filename} {site number}
```
Example:
```
python3 UsernameChecker.py -l word_lists/HOT-WORDS -o output.txt 2
```


### Contributing
As this is just a personal side project, I only work on it when I have time, so I would love your help to make improvements! Just make a pull request and I'll review the changes as soon as I can.

If you are not a developer, you can also help me greatly by opening issues with bugs you encounter while running the script.

If you would like to see further improvements and updates for free, please consider donating a few dollars as it really helps me to set aside time out of my busy schedule to work on improving the script. All contributions are great appreciated! 🙂

[PayPal](https://paypal.me/croc)

[Square Cash](https://cash.me/$croc)


![OGCheckr CLI username availability checker application](http://d.pr/i/CiqHOH+ "OGCheckr CLI")

For additional information and installation instructions, view the wiki.
https://github.com/crock/username-checker/wiki/
Loading

0 comments on commit 93f80ec

Please sign in to comment.