-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
555 additions
and
14,695 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! | ||
- Steam ID URLs | ||
- Steam Group URLs | ||
- Mixer (formerly Beam.pro) | ||
- Twitch.tv | ||
- Soundcloud | ||
- Github | ||
- About.me | ||
- YouTube (/{username} url format) | ||
|
||
### Known Unsupported Services | ||
- 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/ |
Oops, something went wrong.