Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
muydipalma committed Nov 6, 2020
1 parent 0d23d4e commit e720b5f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scraper.py
Expand Up @@ -6,8 +6,6 @@
import sqlite3 as sql
import pandas as pd
import unicodedata
import tqdm
from tqdm import tqdm


df=pd.read_csv('p12_2010.csv')
Expand All @@ -27,7 +25,7 @@ def get(self,url):
self.url=url

data=[]
for i,x in enumerate(tqdm(df.urls[:20])):
for x in df.urls[:20]:
nota=p12()
try:
nota.get(x)
Expand Down

0 comments on commit e720b5f

Please sign in to comment.