Skip to content

Instantly share code, notes, and snippets.

@jacobmischka
Created August 29, 2015 21:33
Show Gist options
  • Save jacobmischka/f8d7b49df55e3a3678d4 to your computer and use it in GitHub Desktop.
Save jacobmischka/f8d7b49df55e3a3678d4 to your computer and use it in GitHub Desktop.
rs name checker
import requests
from bs4 import BeautifulSoup
names = ["allie", "panty", "sici", "alison"]
token = "N2VOTGc2VW5zNExoZldEQ2dJTzJPajY3d05ZblM5ejNkaWhkMXEwSw=="
data = {"_token": token}
for rsn in names:
data["rsn"] = rsn
r = requests.post("http://178.62.54.243/name-check", data=data)
if "404 - Page not found" in r.text:
print(rsn)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment