Skip to content

Commit 2c8317e

Browse files
committed
Removed Minecraft, edited README
1 parent 1277cbc commit 2c8317e

File tree

3 files changed

+11
-24
lines changed

3 files changed

+11
-24
lines changed

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
1-
# Multi-Site Username Availability Checker
1+
# OGCheckr CLI
22

33
### About
44
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.
55

66
### TODO
7-
- Proxy support
8-
- Multi-threading support
9-
- Windows and Mac executable binary
10-
- Full GUI Application
7+
- Add proxy support for Instagram checking
118

129
### Known Supported Services
13-
- Minecraft
14-
- Twitter (IMPROVED in 1.4, strict rate limit)
15-
- Instagram (IMPROVED in 1.4, strict rate limit)
10+
- ~~Minecraft~~ - For your Minecraft checking needs, check out [this](http://www.mc-market.org/resources/4480/) awesome checker instead!
11+
- Twitter
12+
- Instagram (no proxy support)
1613
- Steam ID URLs
1714
- Steam Group URLs
1815
- Mixer (formerly Beam.pro)
@@ -27,7 +24,7 @@ This is a script I made a while back to check the availability of OG words as ha
2724
- Kik
2825

2926
### Comptability
30-
Version `1.4` is only compatible with Python 3+
27+
Version `1.4+` is only compatible with Python 3+
3128
Verion `1.0-1.3` is compatible with Python 2 & 3
3229

3330
### Installation

UsernameChecker.py

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -146,12 +146,7 @@ def log_result(response, word, link, matches=None):
146146
manual(response, word, service)
147147

148148
def get_cookie():
149-
r = None
150-
if PROXY:
151-
proxyDict[PROTOCOL] = get_proxy()
152-
r = requests.get(URLS[int(SITE)], proxies=proxyDict)
153-
else:
154-
r = requests.get(URLS[int(SITE)])
149+
r = requests.get(URLS[int(SITE)])
155150
return r.cookies
156151

157152
def ready_payload(word):
@@ -221,14 +216,9 @@ def send_post(words):
221216
cookie = get_cookie()
222217
header = prepare_headers(cookie)
223218
link = URLS[int(SITE)]
224-
r = None
225219
for w in range(words.__len__()):
226220
payload = ready_payload(words[w])
227-
if PROXY:
228-
proxyDict[PROTOCOL] = get_proxy()
229-
r = requests.post(URLS[int(SITE)], json=payload, headers=header, cookies=cookie, proxies=proxyDict)
230-
else:
231-
r = requests.post(URLS[int(SITE)], json=payload, headers=header, cookies=cookie)
221+
r = requests.post(URLS[int(SITE)], json=payload, headers=header, cookies=cookie)
232222
log_result(r, words[w], link)
233223

234224
def main():

config.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
; Place the number from the table above that corresponds
2121
; with the site you want to check available names for.
2222
; If your target site is not listed, put "1" for CUSTOM (without the quotes).
23-
siteNum = 3
23+
siteNum = 5
2424
; Fill in the option below with the profile URL of the service you want to check available names for.
2525
; Use %%word%% as the placeholder for the username to check.
2626
; customSite is only for sites not specifically listed in the chart above, but please be aware
@@ -36,9 +36,9 @@ wordList = word_lists/WORD-LIST-1
3636

3737
[proxy]
3838
; To enable proxy support, put True. To disable, put False
39-
enableProxy = True
39+
enableProxy = False
4040
; If proxy support is enabled, put http or https below depending on what type of proxies you are using.
41-
proxyProtocol = https
41+
proxyProtocol = http
4242
; If proxy support is enabled, you must specify the path to the proxy list you want to use here
4343
; Place all proxy lists in the proxy_lists directory
4444
proxyList = proxy_lists/proxies.txt

0 commit comments

Comments
 (0)