Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
danozgriff committed Feb 23, 2016
1 parent ffc8a55 commit 14494c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
Expand Up @@ -8,7 +8,7 @@

#scraperwiki.sqlite.execute("create table Company_Performance (`TIDM` varchar2(8) NOT NULL, `1D` real, `3D` real, `1W` real, '1M' real, '6M' real, `Date` date, UNIQUE (`TIDM`, `Date`))")

complist = scraperwiki.sqlite.execute"select `TIDM`, `Price` from (select C.TIDM, C.Price from company as C inner join Signal_History as S on C.TIDM = S.TIDM)")
complist = scraperwiki.sqlite.execute("select `TIDM`, `Price` from (select C.TIDM, C.Price from company as C inner join Signal_History as S on C.TIDM = S.TIDM)")

for x in complist["data"]:
print x[0]
Expand Down

0 comments on commit 14494c1

Please sign in to comment.