mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 12:02:13 +00:00
Merge branch 'develop' of github.com:lefnire/habitrpg into develop
This commit is contained in:
commit
b4b0733e21
1 changed files with 10 additions and 0 deletions
10
migrations/csvexport.phy
Normal file
10
migrations/csvexport.phy
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import csv
|
||||
|
||||
data = csv.reader(open('/home/slappybag/backrs/800dollar.csv', 'rb'), delimiter=",", quotechar='|')
|
||||
column = []
|
||||
|
||||
for row in data:
|
||||
column.append(row[9])
|
||||
|
||||
print "one:"
|
||||
print column
|
||||
Loading…
Reference in a new issue