csvsqlite3 0.1.1

Creator: bradpython12

Last updated:

0 purchases

TODO
Add to Cart

Description:

csvsqlite3 0.1.1

Csv reader like PEP 249 API.
https://github.com/harelba/q inspired

Requirements

Python 3.x



Installation
$ pip install csvsqlite3


Example
import csvsqlite3
conn = csvsqlite3.connect('/foo/bar/baz.csv')
cur = conn.cursor()
cur.execute('select * from csv')
for r in cur.fetchall():
print(r[0], r[1])
conn.close()

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.