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
Paribu.com - Türkiye'nin Bitcoin Borsası | |
2021 (update) | |
Api endpoint | |
https://v3.paribu.com/app/markets/btc-tl?interval=1000 | |
Ticker |
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
@yasinkuyu | |
def get_luminati_ip(): | |
username = 'lum-customer-XXX-zone-XXX' | |
password = 'XXXX' | |
port = 22225 | |
session_id = random.random() | |
super_proxy_url = ('http://%s-session-%s:%[email protected]:%d' % | |
(username, session_id, password, port)) | |
proxy_handler = urllib2.ProxyHandler({ |
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
#@yasinkuyu 08/09/2017 | |
# install luminati (https://luminati.io) proxy manager & run | |
from selenium import webdriver | |
from selenium.webdriver.common.proxy import Proxy, ProxyType | |
from selenium.webdriver.chrome.options import Options | |
from selenium.webdriver.common.proxy import * | |
PROXY = '127.0.0.1:24000' |
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
#@yasinkuyu 08/09/2017 | |
# install luminati (https://luminati.io) proxy manager & run | |
from selenium import webdriver | |
from selenium.webdriver.common.proxy import Proxy, ProxyType | |
from selenium.webdriver.chrome.options import Options | |
PROXY = '127.0.0.1:24000' |
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
#@yasinkuyu 08/09/2017 | |
INDEX = 1 | |
Continue = True | |
while Continue: | |
print INDEX | |
if (INDEX % 5) == 0: | |
print "Success" | |
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
#@yasinkuyu 08/09/2017 | |
def check_internet(): | |
url='http://www.google.com/' | |
timeout=5 | |
try: | |
_ = requests.get(url, timeout=timeout) | |
return True | |
except requests.ConnectionError: | |
print("İnternet bağlantısı yok.") |
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
def router_reset(): | |
print "Modem resetleniyor" | |
driver = webdriver.Chrome('./chromedriver') | |
driver.get('http://192.168.1.1/login.cgi') | |
username = driver.find_element_by_id('username') | |
password = driver.find_element_by_id('userpassword') |
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
<style type="text/css" media="print"> | |
@page { | |
size: a4; | |
margin: 8.5mm 0; | |
padding: 0 | |
} | |
@page :first{ | |
size: a4; | |
margin: 0; | |
margin-right: 0; |
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
preg_split('/(?=\.[^.]+$)/', $_SERVER['HTTP_HOST']); |