Created
November 1, 2011 17:58
-
-
Save tebeka/1331360 to your computer and use it in GitHub Desktop.
Sum tuples of data using sqlite3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sqlite3 | |
def sumtuples(data, key_index): | |
cur = sqlite3.connect(':memory:').cursor() | |
cols = ['i{0}'.format(i) for i, _ in enumerate(data[0])] | |
schema = 'CREATE TABLE items ({0})'.format(','.join(cols)) | |
cur.execute(schema) | |
cur.connection.commit() | |
sql = 'INSERT INTO items VALUES ({0})'.format(','.join('?' for _ in cols)) | |
cur.executemany(sql, data) | |
cur.connection.commit() | |
key = cols[key_index] | |
summed = ','.join(['SUM({0})'.format(col) for col in cols if col != key]) | |
sql = 'SELECT {0}, {1} FROM items GROUP BY {0}'.format(key, summed) | |
cur.execute(sql) | |
return cur | |
def main(): | |
data = [ | |
('a', 1, 2), | |
('b', 2, 3), | |
('a', 1, 2), | |
('b', 2, 3) | |
] | |
print(list(sumtuples(data, 0))) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment