You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
481 B
24 lines
481 B
import re |
|
from time import sleep |
|
from getpass import getpass |
|
|
|
from bs4 import BeautifulSoup |
|
from arango import ArangoClient |
|
import requests |
|
from urllib.parse import urlencode |
|
|
|
|
|
|
|
def check_ip(): |
|
""" |
|
Checks the current IP. |
|
""" |
|
url = f'https://mrkoll.se/resultat?n={46706111785}' |
|
proxies = {'https': 'http://sgz2bkt7:TtLyyPGKMmjabg7R_country-Sweden@proxy.proxy-cheap.com:31112'} |
|
ip = requests.get(url, proxies=proxies).text |
|
|
|
return ip |
|
|
|
print(check_ip()) |
|
|
|
|
|
|