aktueller Stand
This commit is contained in:
parent
d5457380f7
commit
9775f8991d
22 changed files with 692 additions and 216 deletions
161
Lotto2SQL.py
161
Lotto2SQL.py
|
|
@ -1,7 +1,6 @@
|
|||
import requests
|
||||
import pymysql
|
||||
import time
|
||||
|
||||
import bs4 as bs
|
||||
import requests
|
||||
|
||||
connection = pymysql.connect(db="hubobel",
|
||||
user="hubobel",
|
||||
|
|
@ -9,67 +8,141 @@ connection = pymysql.connect(db="hubobel",
|
|||
host='10.0.1.59',charset='utf8')
|
||||
cursor = connection.cursor()
|
||||
|
||||
wtag = time.strftime('%w')
|
||||
#todo eurojackpot wieder fixen
|
||||
|
||||
if wtag == 3:
|
||||
try:
|
||||
cursor.execute("""CREATE TABLE mittwoch (
|
||||
datum Text, z1 INTEGER, z2 INTEGER, z3 INTEGER, z4 INTEGER, z5 INTEGER, z6 INTEGER, sz INTEGER, super6 INTEGER, spiel77 INTEGER)""")
|
||||
except:
|
||||
None
|
||||
url_zitat = 'http://api.hubobel.de/lotto/Mittwoch'
|
||||
resp_zitat = requests.get(url_zitat)
|
||||
data_zitat = resp_zitat.json()
|
||||
data=data_zitat[1]
|
||||
sql = "INSERT INTO `mittwoch`(`datum`, `z1`, `z2`, `z3`, `z4`, `z5`, `z6`, `sz`, `super6`, `spiel77` ) VALUES " \
|
||||
"('"+str(data['Datum'])+"','"+str(data['Z1'])+"','"+str(data['Z2'])+"','"+str(data['Z3'])+"','"+\
|
||||
str(data['Z4'])+"','"+str(data['Z5'])+"','"+str(data['Z6'])+"','"+str(data['Superzahl'])+\
|
||||
"','"+str(data['Super6'])+"','"+str(data['Spiel77'])+"')"
|
||||
sql_q = "SELECT * FROM mittwoch WHERE datum like '%" + data['Datum'] + "%'"
|
||||
resp = cursor.execute(sql_q)
|
||||
if resp == 0:
|
||||
cursor.execute(sql)
|
||||
connection.commit()
|
||||
requests.packages.urllib3.disable_warnings()
|
||||
sauce = requests.get('https://www.eurojackpot.org/gewinnzahlen/', verify=False)
|
||||
soup = bs.BeautifulSoup(sauce.text, 'lxml')
|
||||
|
||||
if wtag == 6:
|
||||
ZahlenEuro = {'Datum': '', 'Z1': '', 'Z2': '', 'Z3': '', 'Z4': '', 'Z5': '', 'Eurozahl1': '', 'Eurozahl2': ''}
|
||||
a = 1
|
||||
datum = soup.find_all('li')
|
||||
for i in datum:
|
||||
i=str(i)
|
||||
i = i.replace('<li>' , '').replace('</li>' , '').replace('<li class="extra">' , '')
|
||||
if a <= 7:
|
||||
if a<6:
|
||||
ZahlenEuro['Z'+str(a)]=i
|
||||
if a ==6:
|
||||
ZahlenEuro['Eurozahl1']=i
|
||||
if a ==7:
|
||||
ZahlenEuro['Eurozahl2']=i
|
||||
a +=1
|
||||
|
||||
sauce=(soup.find_all('div', class_ ='calendar'))
|
||||
date=(soup.select_one('input[id=calendar]')['value'])
|
||||
ZahlenEuro['Datum']=date
|
||||
|
||||
requests.packages.urllib3.disable_warnings()
|
||||
sauce = requests.get('https://www.lotto24.de/webshop/product/lottonormal/result', verify=False)
|
||||
soup = bs.BeautifulSoup(sauce.text, 'lxml')
|
||||
|
||||
# print(soup.prettify())
|
||||
Lottozahlen = {'Datum': '', 'Z1': '', 'Z2': '', 'Z3': '', 'Z4': '', 'Z5': '', 'Z6': '', 'Superzahl': '',
|
||||
'Spiel77': '', 'Super6': ''}
|
||||
daten = soup.find_all('div', class_="winning-numbers__number")
|
||||
zahlen = []
|
||||
for i in daten:
|
||||
zahlen.append(int(i.text))
|
||||
a = 1
|
||||
while a != 7:
|
||||
Lottozahlen['Z' + str(a)] = zahlen[a - 1]
|
||||
a = a + 1
|
||||
Spiel77 = ''
|
||||
Super6 = ''
|
||||
zahlen77 = []
|
||||
daten = soup.find_all('div', class_="winning-numbers__number--additional")
|
||||
for i in daten:
|
||||
zahlen77.append(int(i.text))
|
||||
spiel77 = zahlen77[0:7]
|
||||
super6 = zahlen77[-6:]
|
||||
for i in spiel77:
|
||||
Spiel77 = Spiel77 + str(i)
|
||||
for i in super6:
|
||||
Super6 = Super6 + str(i)
|
||||
|
||||
daten = soup.find_all('h2', class_="strong hidden-xs")
|
||||
for i in daten:
|
||||
date = i.text
|
||||
date = date.replace(' ', '')
|
||||
date = date.replace('\n', '')
|
||||
|
||||
start = (date.find('dem')) + 4
|
||||
ende = (date.find('(Alle'))
|
||||
|
||||
Lottozahlen['Superzahl'] = zahlen[6]
|
||||
Lottozahlen['Spiel77'] = Spiel77
|
||||
Lottozahlen['Super6'] = Super6
|
||||
Lottozahlen['Datum'] = date[start:ende]
|
||||
|
||||
#print(ZahlenEuro)
|
||||
print(Lottozahlen)
|
||||
print(date)
|
||||
|
||||
try:
|
||||
cursor.execute("""CREATE TABLE euro (
|
||||
datum Text, z1 INTEGER, z2 INTEGER, z3 INTEGER, z4 INTEGER, z5 INTEGER, sz1 INTEGER, sz2 INTEGER )""")
|
||||
except:
|
||||
None
|
||||
data = ZahlenEuro
|
||||
sql = "INSERT INTO `euro`(`datum`, `z1`, `z2`, `z3`, `z4`, `z5`, `sz1`, `sz2`) VALUES" \
|
||||
" ('" + str(data['Datum']) + "','" + str(data['Z1']) + "','" + str(data['Z2']) + "','" + str(data['Z3']) + \
|
||||
"','" + str(data['Z4']) + "','" + str(data['Z5']) + "','" + str(data['Eurozahl1']) + "','" + str(
|
||||
data['Eurozahl2']) + "')"
|
||||
sql_q = "SELECT * FROM euro WHERE datum like '%" + data['Datum'] + "%'"
|
||||
resp = cursor.execute(sql_q)
|
||||
if resp == 0:
|
||||
cursor.execute(sql)
|
||||
data=Lottozahlen
|
||||
|
||||
if "Samstag," in date:
|
||||
try:
|
||||
cursor.execute("""CREATE TABLE samstag (
|
||||
datum Text, z1 INTEGER, z2 INTEGER, z3 INTEGER, z4 INTEGER, z5 INTEGER, z6 INTEGER, sz INTEGER, super6 INTEGER, spiel77 INTEGER)""")
|
||||
except:
|
||||
None
|
||||
url_zitat = 'http://api.hubobel.de/lotto/Samstag'
|
||||
resp_zitat = requests.get(url_zitat)
|
||||
data_zitat = resp_zitat.json()
|
||||
data=data_zitat[1]
|
||||
sql = "INSERT INTO `samstag`(`datum`, `z1`, `z2`, `z3`, `z4`, `z5`, `z6`, `sz`, `super6`, `spiel77`) VALUES" \
|
||||
" ('"+str(data['Datum'])+"','"+str(data['Z1'])+"','"+str(data['Z2'])+"','"+str(data['Z3'])+\
|
||||
"','"+str(data['Z4'])+"','"+str(data['Z5'])+"','"+str(data['Z6'])+"','"+str(data['Superzahl'])+\
|
||||
"','"+str(data['Super6'])+"','"+str(data['Spiel77'])+"')"
|
||||
" ('" + str(data['Datum']) + "','" + str(data['Z1']) + "','" + str(data['Z2']) + "','" + str(data['Z3']) + \
|
||||
"','" + str(data['Z4']) + "','" + str(data['Z5']) + "','" + str(data['Z6']) + "','" + str(data['Superzahl']) + \
|
||||
"','" + str(data['Super6']) + "','" + str(data['Spiel77']) + "')"
|
||||
sql_q = "SELECT * FROM samstag WHERE datum like '%" + data['Datum'] + "%'"
|
||||
resp = cursor.execute(sql_q)
|
||||
if resp == 0:
|
||||
cursor.execute(sql)
|
||||
connection.commit()
|
||||
|
||||
if wtag == 5:
|
||||
if "Mittwoch," in date:
|
||||
try:
|
||||
cursor.execute("""CREATE TABLE euro (
|
||||
datum Text, z1 INTEGER, z2 INTEGER, z3 INTEGER, z4 INTEGER, z5 INTEGER, sz1 INTEGER, sz2 INTEGER )""")
|
||||
cursor.execute("""CREATE TABLE mittwoch (
|
||||
datum Text, z1 INTEGER, z2 INTEGER, z3 INTEGER, z4 INTEGER, z5 INTEGER, z6 INTEGER, sz INTEGER, super6 INTEGER, spiel77 INTEGER)""")
|
||||
except:
|
||||
None
|
||||
url_zitat = 'http://api.hubobel.de/lotto/Euro'
|
||||
resp_zitat = requests.get(url_zitat)
|
||||
data_zitat = resp_zitat.json()
|
||||
data=data_zitat[1]
|
||||
sql = "INSERT INTO `euro`(`datum`, `z1`, `z2`, `z3`, `z4`, `z5`, `sz1`, `sz2`) VALUES" \
|
||||
" ('"+str(data['Datum'])+"','"+str(data['Z1'])+"','"+str(data['Z2'])+"','"+str(data['Z3'])+\
|
||||
"','"+str(data['Z4'])+"','"+str(data['Z5'])+"','"+str(data['Superzahl1'])+"','"+str(data['Superzahl2'])+"')"
|
||||
sql_q = "SELECT * FROM euro WHERE datum like '%" + data['Datum'] + "%'"
|
||||
|
||||
sql = "INSERT INTO `mittwoch`(`datum`, `z1`, `z2`, `z3`, `z4`, `z5`, `z6`, `sz`, `super6`, `spiel77`) VALUES" \
|
||||
" ('" + str(data['Datum']) + "','" + str(data['Z1']) + "','" + str(data['Z2']) + "','" + str(data['Z3']) + \
|
||||
"','" + str(data['Z4']) + "','" + str(data['Z5']) + "','" + str(data['Z6']) + "','" + str(data['Superzahl']) + \
|
||||
"','" + str(data['Super6']) + "','" + str(data['Spiel77']) + "')"
|
||||
sql_q = "SELECT * FROM mittwoch WHERE datum like '%" + data['Datum'] + "%'"
|
||||
resp = cursor.execute(sql_q)
|
||||
if resp == 0:
|
||||
cursor.execute(sql)
|
||||
|
||||
connection.commit()
|
||||
|
||||
try:
|
||||
cursor.execute("""CREATE TABLE 6aus49 (
|
||||
datum Text, z1 INTEGER, z2 INTEGER, z3 INTEGER, z4 INTEGER, z5 INTEGER, z6 INTEGER, sz INTEGER, super6 INTEGER, spiel77 INTEGER)""")
|
||||
except:
|
||||
None
|
||||
|
||||
sql = "INSERT INTO `6aus49`(`datum`, `z1`, `z2`, `z3`, `z4`, `z5`, `z6`, `sz`, `super6`, `spiel77`) VALUES" \
|
||||
" ('" + str(data['Datum']) + "','" + str(data['Z1']) + "','" + str(data['Z2']) + "','" + str(data['Z3']) + \
|
||||
"','" + str(data['Z4']) + "','" + str(data['Z5']) + "','" + str(data['Z6']) + "','" + str(data['Superzahl']) + \
|
||||
"','" + str(data['Super6']) + "','" + str(data['Spiel77']) + "')"
|
||||
sql_q = "SELECT * FROM 6aus49 WHERE datum like '%" + data['Datum'] + "%'"
|
||||
resp = cursor.execute(sql_q)
|
||||
if resp == 0:
|
||||
cursor.execute(sql)
|
||||
|
||||
connection.commit()
|
||||
cursor.close()
|
||||
connection.close()
|
||||
connection.close()
|
||||
Loading…
Add table
Add a link
Reference in a new issue