Skip to content

johan--/records

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Records: SQL for Humans™

Records is a very simple, but powerful, library for making raw SQL queries to Postgres databases.

This common task can be surprisingly difficult with the standard tools available. This library strives to make this workflow as simple as possible, while providing an elegant interface to work with your query results.

We know how to write SQL, so let's send some to our database:

import records

db = records.Database('postgres:https://...')
rows = db.query('select * from active_users')    # or db.query_file('sqls/active-users.sql')

☤ The Basics

Grab one row at a time:

>>> rows[0]
Record(username='model-t', name='Henry Ford', active=True, timezone=datetime.datetime(2016, 2, 6, 22, 28, 23, 894202), user_email='[email protected]')

Or iterate over them:

for r in rows:
    spam_user(name=r.name, email=r.user_email)

Or store them all for later reference:

>>> rows.all()
[Record(username=...), Record(username=...), Record(username=...), ...]

☤ Features

  • HSTORE support, if available.
  • Iterated rows are cached for future reference.
  • $DATABASE_URL environment variable support.
  • Convenience Database.get_table_names method.
  • Command-line records tool for exporting queries.
  • Safe parameterization: Database.query('life=%s', params=('42',))
  • Queries can be passed as strings or filenames, parameters supported.

Records is proudly powered by Psycopg2 and Tablib.

☤ Data Export Functionality

Records also features full Tablib integration, and allows you to export your results to CSV, XLS, JSON, HTML Tables, or YAML with a single line of code. Excellent for sharing data with friends, or generating reports.

>>> print rows.dataset
username|active|name      |user_email       |timezone
--------|------|----------|-----------------|--------------------------
model-t |True  |Henry Ford|[email protected]|2016-02-06 22:28:23.894202
...
  • Comma Seperated Values (CSV)

    >>> print rows.export('csv')
    username,active,name,user_email,timezone
    model-t,True,Henry Ford,[email protected],2016-02-06 22:28:23.894202
    ...
  • YAML Ain't Markup Language (YAML)

    >>> print rows.export('yaml')
    - {active: true, name: Henry Ford, timezone: '2016-02-06 22:28:23.894202', user_email: model-t@gmail.com, username: model-t}
    ...
  • JavaScript Object Notation (JSON)

    >>> print rows.export('json')
    [{"username": "model-t", "active": true, "name": "Henry Ford", "user_email": "[email protected]", "timezone": "2016-02-06 22:28:23.894202"}, ...]
  • Microsoft Excel (xls, xlsx)

    with open('report.xls', 'wb') as f:
        f.write(rows.export('xls'))

You get the point. All other features of Tablib are also available, so you can sort results, add/remove columns/rows, remove duplicates, transpose the table, add separators, slice data by column, and more.

See the Tablib Documentation for more details.

☤ Installation

Of course, the recommended installation method is pip:

$ pip install records
✨🍰✨

☤ Command-Line Tool

As an added bonus, a records command-line tool is automatically included. Here's a screenshot of the usage information:

https://s3.amazonaws.com/f.cl.ly/items/1M0147110J3k0p2D3z2b/records.png?v=729fd472

☤ Thank You

Thanks for checking this library out! I hope you find it useful.

Of course, there's always room for improvement. Feel free to open an issue so we can make Records better, stronger, faster.

Packages

No packages published

Languages

  • Python 98.4%
  • Makefile 1.6%