Skip to main content

SQL for Humans

Project description

Records: SQL for Humans™


☤ The Basics


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

import records



db = records.Database('postgres://...')

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

Grab one row at a time:

>>> rows[0]

<Record {"username": "model-t", "active": true, "name": "Henry Ford", "user_email": "model-t@gmail.com", "timezone": "2016-02-06 22:28:23.894202"}>

Or iterate over them:

for r in rows:

    print(r.name, r.user_email)

Values can be accessed many ways: row.user_email, row['user_email'], or row[3].

Fields with non-alphanumeric characters (like spaces) are also fully supported.

Or store a copy of your record collection for later reference:

>>> rows.all()

[<Record {"username": ...}>, <Record {"username": ...}>, <Record {"username": ...}>, ...]

If you’re only expecting one result:

>>> rows.first()

<Record {"username": ...}>

Other options include rows.as_dict() and rows.as_dict(ordered=True).

☤ Features


  • 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=:everything', everything=42).

  • Queries can be passed as strings or filenames, parameters supported.

  • Transactions: t = Database.transaction(); t.commit().

  • Bulk actions: Database.bulk_query() & Database.bulk_query_file().

Records is proudly powered by SQLAlchemy

and Tablib.

☤ Data Export Functionality


Records also features full Tablib integration, and allows you to export

your results to CSV, XLS, JSON, HTML Tables, YAML, or Pandas DataFrames 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|model-t@gmail.com|2016-02-06 22:28:23.894202

...

Comma Separated Values (CSV)

>>> print(rows.export('csv'))

username,active,name,user_email,timezone

model-t,True,Henry Ford,model-t@gmail.com,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": "model-t@gmail.com", "timezone": "2016-02-06 22:28:23.894202"}, ...]

Microsoft Excel (xls, xlsx)

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

    f.write(rows.export('xls'))

Pandas DataFrame

>>> rows.export('df')

    username  active       name        user_email                   timezone

0    model-t    True Henry Ford model-t@gmail.com 2016-02-06 22:28:23.894202

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 pipenv:

$ pipenv install records[pandas]

✨🍰✨

☤ Command-Line Tool


As an added bonus, a records command-line tool is automatically

included. Here’s a screenshot of the usage information:

☤ 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.

v0.5.1 (09-01-2017)


  • Depend on tablib[pandas].

  • Support for Bulk quies: Database.bulk_query() & Database.bulk_query_file().

v0.5.0 (11-15-2016)


  • Support for transactions: t = Database.transaction(); t.commit()

v0.4.3 (02-16-2016)


  • The cake is a lie.

v0.4.2 (02-15-2016)


  • Packaging fix.

v0.4.1 (02-15-2016)


  • Bugfix for Python 3.

v0.4.0 (02-13-2016)


  • Refactored to be fully powered by SQLAlchemy!

  • Support for all major databases (thanks, SQLAlchemy!).

  • Support for non-alphanumeric column names.

  • New Record class, for representing/accessing result rows.

  • ResultSet renamed RecordCollection.

  • Removed Interactive Mode from the CLI.

v0.3.0 (02-11-2016)


  • New record command-line tool available!

  • Various improvements.

v0.2.0 (02-10-2016)


  • Results are now represented as Record, a namedtuples class with dict-like qualities.

  • New ResultSet.export method, for exporting to various formats.

  • Slicing a ResultSet now works, and results in a new ResultSet.

  • Lots of bugfixes and improvements!

v0.1.0 (02-07-2016)


  • Initial release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

records-fork-0.5.5.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

records_fork-0.5.5-py2.py3-none-any.whl (9.7 kB view details)

Uploaded Python 2Python 3

File details

Details for the file records-fork-0.5.5.tar.gz.

File metadata

  • Download URL: records-fork-0.5.5.tar.gz
  • Upload date:
  • Size: 11.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.2

File hashes

Hashes for records-fork-0.5.5.tar.gz
Algorithm Hash digest
SHA256 cf30496d6c1c17af615160fa89b1358a5e48f0f26b116a7f285b9489c573a15a
MD5 4c3ca4e2d4c1ea34ead0c157d78ba1e8
BLAKE2b-256 179fc46f5f826cd19d69957f404cd739a95eb8d3d9b9c2d25587ff37c3aac0a0

See more details on using hashes here.

File details

Details for the file records_fork-0.5.5-py2.py3-none-any.whl.

File metadata

  • Download URL: records_fork-0.5.5-py2.py3-none-any.whl
  • Upload date:
  • Size: 9.7 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.2

File hashes

Hashes for records_fork-0.5.5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ee0915919251405731ee396834ae8a88614d37f2a868f82f96738976f6c77d6d
MD5 e99ecedb33fd54edd41ab1cfb7642e63
BLAKE2b-256 263c5efac62b0c0d37d2fc73747be6c5c0a32d2a5062bfadcffeacc15f28b034

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page