Q8 - Onur Yigit Arpali
Anonymous
python
03/08/2021 2:27 PM
324 B
22
Indexable
import sqlite3
con = sqlite3.connect("DATABASE")
cur = con.cursor()
for row in cur.execute('SELECT * FROM DATABASE;'):
re.split(r'(?<=>)(http.+?//)(.+?)(?=<)', row['Stats_Access_Link'])[2]
# Be sure to close the connection
con.close()Editor is loading...