{ "info": { "author": "Kenneth Reitz", "author_email": "me@kennethreitz.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: ISC License (ISCL)", "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython" ], "description": "Records: SQL for Humans\u2122\n========================\n\n\n.. image:: https://img.shields.io/pypi/v/records.svg\n :target: https://pypi.python.org/pypi/records\n\n.. image:: https://travis-ci.org/kennethreitz/records.svg?branch=master\n :target: https://travis-ci.org/kennethreitz/records\n\n.. image:: https://img.shields.io/badge/SayThanks.io-\u263c-1EAEDB.svg\n :target: https://saythanks.io/to/kennethreitz\n\n\n\n**Records is a very simple, but powerful, library for making raw SQL queries\nto most relational databases.**\n\n.. image:: https://farm1.staticflickr.com/569/33085227621_7e8da49b90_k_d.jpg\n\nJust write SQL. No bells, no whistles. This common task can be\nsurprisingly difficult with the standard tools available.\nThis library strives to make this workflow as simple as possible,\nwhile providing an elegant interface to work with your query results.\n\n*Database support includes RedShift, Postgres, MySQL, SQLite, Oracle, and MS-SQL (drivers not included).*\n\n----------\n\nIf you're interested in financially supporting Kenneth Reitz open source, consider `visiting this link `_. Your support helps tremendously with sustainability of motivation, as Open Source is no longer part of my day job.\n\n\u2624 The Basics\n------------\nWe know how to write SQL, so let's send some to our database:\n\n.. code:: python\n\n import records\n\n db = records.Database('postgres://...')\n rows = db.query('select * from active_users') # or db.query_file('sqls/active-users.sql')\n\n\nGrab one row at a time:\n\n.. code:: python\n\n >>> rows[0]\n \n\nOr iterate over them:\n\n.. code:: python\n\n for r in rows:\n print(r.name, r.user_email)\n\nValues can be accessed many ways: ``row.user_email``, ``row['user_email']``, or ``row[3]``.\n\nFields with non-alphanumeric characters (like spaces) are also fully supported.\n\nOr store a copy of your record collection for later reference:\n\n.. code:: python\n\n >>> rows.all()\n [, , , ...]\n\nIf you're only expecting one result:\n\n.. code:: python\n\n >>> rows.first()\n \n\nOther options include ``rows.as_dict()`` and ``rows.as_dict(ordered=True)``.\n\n\u2624 Features\n----------\n\n- Iterated rows are cached for future reference.\n- ``$DATABASE_URL`` environment variable support.\n- Convenience ``Database.get_table_names`` method.\n- Command-line `records` tool for exporting queries.\n- Safe parameterization: ``Database.query('life=:everything', everything=42)``.\n- Queries can be passed as strings or filenames, parameters supported.\n- Transactions: ``t = Database.transaction(); t.commit()``.\n- Bulk actions: ``Database.bulk_query()`` & ``Databse.bulk_query_file()``.\n\nRecords is proudly powered by `SQLAlchemy `_\nand `Tablib `_.\n\n\u2624 Data Export Functionality\n---------------------------\n\nRecords also features full Tablib integration, and allows you to export\nyour results to CSV, XLS, JSON, HTML Tables, YAML, or Pandas DataFrames with a single line of code.\nExcellent for sharing data with friends, or generating reports.\n\n.. code:: pycon\n\n >>> print(rows.dataset)\n username|active|name |user_email |timezone\n --------|------|----------|-----------------|--------------------------\n model-t |True |Henry Ford|model-t@gmail.com|2016-02-06 22:28:23.894202\n ...\n\n**Comma Separated Values (CSV)**\n\n.. code:: pycon\n\n >>> print(rows.export('csv'))\n username,active,name,user_email,timezone\n model-t,True,Henry Ford,model-t@gmail.com,2016-02-06 22:28:23.894202\n ...\n\n**YAML Ain't Markup Language (YAML)**\n\n.. code:: python\n\n >>> print(rows.export('yaml'))\n - {active: true, name: Henry Ford, timezone: '2016-02-06 22:28:23.894202', user_email: model-t@gmail.com, username: model-t}\n ...\n\n**JavaScript Object Notation (JSON)**\n\n.. code:: python\n\n >>> print(rows.export('json'))\n [{\"username\": \"model-t\", \"active\": true, \"name\": \"Henry Ford\", \"user_email\": \"model-t@gmail.com\", \"timezone\": \"2016-02-06 22:28:23.894202\"}, ...]\n\n**Microsoft Excel (xls, xlsx)**\n\n.. code:: python\n\n with open('report.xls', 'wb') as f:\n f.write(rows.export('xls'))\n\n\n**Pandas DataFrame**\n\n.. code:: python\n\n >>> rows.export('df')\n username active name user_email timezone\n 0 model-t True Henry Ford model-t@gmail.com 2016-02-06 22:28:23.894202\n\nYou get the point. All other features of Tablib are also available,\nso you can sort results, add/remove columns/rows, remove duplicates,\ntranspose the table, add separators, slice data by column, and more.\n\nSee the `Tablib Documentation `_\nfor more details.\n\n\u2624 Installation\n--------------\n\nOf course, the recommended installation method is `pipenv `_::\n\n $ pipenv install records[pandas]\n \u2728\ud83c\udf70\u2728\n\n\u2624 Command-Line Tool\n-------------------\n\nAs an added bonus, a ``records`` command-line tool is automatically\nincluded. Here's a screenshot of the usage information:\n\n.. image:: http://f.cl.ly/items/0S14231R3p0G3w3A0x2N/Screen%20Shot%202016-02-13%20at%202.43.21%20AM.png\n :alt: Screenshot of Records Command-Line Interface.\n\n\u2624 Thank You\n-----------\n\nThanks for checking this library out! I hope you find it useful.\n\nOf course, there's always room for improvement. Feel free to `open an issue `_ so we can make Records better, stronger, faster.\n\n\n\n\nv0.5.1 (09-01-2017)\n===================\n\n- Depend on ``tablib[pandas]``.\n- Support for Bulk quies: ``Database.bulk_query()`` & ``Database.bulk_query_file()``.\n\nv0.5.0 (11-15-2016)\n===================\n\n- Support for transactions: ``t = Database.transaction(); t.commit()``\n\n\nv0.4.3 (02-16-2016)\n===================\n\n- The cake is a lie.\n\nv0.4.2 (02-15-2016)\n===================\n\n- Packaging fix.\n\nv0.4.1 (02-15-2016)\n===================\n\n- Bugfix for Python 3.\n\nv0.4.0 (02-13-2016)\n===================\n\n- Refactored to be fully powered by SQLAlchemy!\n- Support for all major databases (thanks, SQLAlchemy!).\n- Support for non-alphanumeric column names.\n- New ``Record`` class, for representing/accessing result rows.\n- ``ResultSet`` renamed ``RecordCollection``.\n- Removed Interactive Mode from the CLI.\n\n\nv0.3.0 (02-11-2016)\n===================\n\n- New ``record`` command-line tool available!\n- Various improvements.\n\nv0.2.0 (02-10-2016)\n===================\n\n- Results are now represented as `Record`, a namedtuples class with dict-like qualities.\n- New `ResultSet.export` method, for exporting to various formats.\n- Slicing a `ResultSet` now works, and results in a new `ResultSet`.\n- Lots of bugfixes and improvements!\n\nv0.1.0 (02-07-2016)\n===================\n\n- Initial release.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/kennethreitz/records", "keywords": "", "license": "ISC", "maintainer": "", "maintainer_email": "", "name": "records", "package_url": "https://pypi.org/project/records/", "platform": "", "project_url": "https://pypi.org/project/records/", "project_urls": { "Homepage": "https://github.com/kennethreitz/records" }, "release_url": "https://pypi.org/project/records/0.5.3/", "requires_dist": [ "openpyxl (<2.5.0)", "tablib (>=0.11.4)", "docopt", "SQLAlchemy (<1.1) ; python_version < \"3.0\"", "SQLAlchemy ; python_version >= \"3.0\"", "tablib[pandas] ; extra == 'pandas'", "psycopg2 ; extra == 'pg'", "sqlalchemy-redshift ; extra == 'redshift'", "psycopg2 ; extra == 'redshift'" ], "requires_python": "", "summary": "SQL for Humans", "version": "0.5.3" }, "last_serial": 4850208, "releases": { "0": [], "0.1.0": [ { "comment_text": "", "digests": { "md5": "7bc1434f4a2e3b784d6dde49b9aa2856", "sha256": "08f1953d266c4ee8d02fed5d5233db3d9e7377369e9631bf24eb787c231087a7" }, "downloads": -1, "filename": "records-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7bc1434f4a2e3b784d6dde49b9aa2856", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6932, "upload_time": "2016-02-07T07:24:08", "url": "https://files.pythonhosted.org/packages/22/1e/0f0ae83652c1053d69f6b8d40e870c5f32a6cde2d185e5fb64ee7c314ae9/records-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "445568032b3c78dc86cc6846951aea70", "sha256": "9338343138106f7e45c9aa05d71f44a64086b36ff2508ff59a2f2abfc007f6af" }, "downloads": -1, "filename": "records-0.1.0.tar.gz", "has_sig": false, "md5_digest": "445568032b3c78dc86cc6846951aea70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5386, "upload_time": "2016-02-07T07:24:01", "url": "https://files.pythonhosted.org/packages/a6/d4/7ee85b05c556dd5619243053ef75094710d77481016d3d072152d4a5d38f/records-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "2b353309d766e2e817c56c7bbef3fa8a", "sha256": "cca18c27a2a62603abdab08c94a4f03f60323d60a185c7931665e474f72a6855" }, "downloads": -1, "filename": "records-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2b353309d766e2e817c56c7bbef3fa8a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8724, "upload_time": "2016-02-11T02:05:33", "url": "https://files.pythonhosted.org/packages/bf/d2/b78d8674bb2457d4541890a24ece61c300268f9364703d5ae3e96e2e3efb/records-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6e0ea335642212a881c649e34d2f2967", "sha256": "a63be8589062d721b5236acc0b5a5caa700469f8062f634e83a77325407bc80e" }, "downloads": -1, "filename": "records-0.2.0.tar.gz", "has_sig": false, "md5_digest": "6e0ea335642212a881c649e34d2f2967", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6782, "upload_time": "2016-02-11T02:04:57", "url": "https://files.pythonhosted.org/packages/01/82/12fbbd8919a4e139d6d4fdd1cbf8de6d50110e7d3a5fe04222d1afb8d6a9/records-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "5349510a1f6efa84dae17f736c42a8b7", "sha256": "54324ae74ca921356f82b6be03db43af52df6c569d616dd26e06844a65a84e09" }, "downloads": -1, "filename": "records-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5349510a1f6efa84dae17f736c42a8b7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9945, "upload_time": "2016-02-12T00:51:34", "url": "https://files.pythonhosted.org/packages/67/0f/f7d49ceb88be88f92323e7d89b311478549a60ed7eb9b5cc724039e7f7aa/records-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0a47a7eaf754b7ba1be7032b23edb22b", "sha256": "229adabf75b68f021cdfddeeae5211b7ea54df06bd2ad4092e9d3cc09f2bf711" }, "downloads": -1, "filename": "records-0.3.0.tar.gz", "has_sig": false, "md5_digest": "0a47a7eaf754b7ba1be7032b23edb22b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7864, "upload_time": "2016-02-12T00:51:22", "url": "https://files.pythonhosted.org/packages/e3/21/6fd9c76a55b5ec4e6a8ca753513a97cbae941f69a698f290bfd66d3ec3cd/records-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "b8de163b90df6d008463e11fed7aac4b", "sha256": "b0563492481068713e4d69aba73aa6f0e26d397b43a83b4b3deea6010a55606f" }, "downloads": -1, "filename": "records-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b8de163b90df6d008463e11fed7aac4b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10780, "upload_time": "2016-02-13T07:45:34", "url": "https://files.pythonhosted.org/packages/e2/5c/4f7874ad8f6cf558964885e6cbfe28136e9c31cee8681464cf7f28d892d4/records-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50d5384b0179292377d0833750d0f14e", "sha256": "b8ab389045748f46cef702778c0c1aa2702680e3cf03f047b3c58dc459a337d5" }, "downloads": -1, "filename": "records-0.4.0.tar.gz", "has_sig": false, "md5_digest": "50d5384b0179292377d0833750d0f14e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8374, "upload_time": "2016-02-13T07:45:29", "url": "https://files.pythonhosted.org/packages/a3/15/c762fc5821f1f5ccb78f6245ca63be7689b4e4eac464673afcf6e52a0322/records-0.4.0.tar.gz" } ], "0.4.1": [], "0.4.2": [ { "comment_text": "", "digests": { "md5": "b1d80a94df2391aebd3a9c186605920c", "sha256": "2aa56a85f5e0df13f4fc0c23e2a90bf2374e80faa67fdc3d5e99a03fddc866aa" }, "downloads": -1, "filename": "records-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b1d80a94df2391aebd3a9c186605920c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10817, "upload_time": "2016-02-15T05:35:53", "url": "https://files.pythonhosted.org/packages/3b/34/cb4bd3ae5233b075d4305c2bfdc716c8f49070d5e789f73c22f82caa1194/records-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "85d8a5794125b8c2a2051a45ad13b156", "sha256": "40b973e2ccfc18fdccdce058cb612290485c9e6de20157b2e5c15d6d58a672df" }, "downloads": -1, "filename": "records-0.4.2.tar.gz", "has_sig": false, "md5_digest": "85d8a5794125b8c2a2051a45ad13b156", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8413, "upload_time": "2016-02-15T05:35:47", "url": "https://files.pythonhosted.org/packages/be/c0/a5d217f1b23ce087e525fc42ba22a15d248acca468afafcd6387059990b0/records-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "ed3992660daaf585496dc8128631cd94", "sha256": "20c422ad40f978781df3d637557debef38e216fa9543b653af41febeb5b03c4a" }, "downloads": -1, "filename": "records-0.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ed3992660daaf585496dc8128631cd94", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10852, "upload_time": "2016-02-16T08:24:26", "url": "https://files.pythonhosted.org/packages/ee/95/42ce88d9e1206e9139864275932c020a17747f817e31572cf2aa0217a971/records-0.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7267810c57b8a19ff63c9b7722ee7de", "sha256": "1c35f06ca04a7c3a349b19c9906aabb763c0168f5ccfa9062fe74cbeb5084753" }, "downloads": -1, "filename": "records-0.4.3.tar.gz", "has_sig": false, "md5_digest": "d7267810c57b8a19ff63c9b7722ee7de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8455, "upload_time": "2016-02-16T08:24:21", "url": "https://files.pythonhosted.org/packages/18/76/8f1046ddbde9d4bcadd7d0ca8e5da57ab2af63a008372da452df3a843ce4/records-0.4.3.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "7c9884e87c9842ac9fa42273d8df8505", "sha256": "035f3db7fc64aa8ae012b7148fd3bd01afa5582a35c005d742fa535a48457f9a" }, "downloads": -1, "filename": "records-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7c9884e87c9842ac9fa42273d8df8505", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11065, "upload_time": "2016-11-15T14:46:03", "url": "https://files.pythonhosted.org/packages/37/a1/d22be230a70c8c8674676860395e29503fafb7f2cecf3732a6ceed74222d/records-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5ab2c9a5dab9bc7a24de6053c843f749", "sha256": "bf3a28907c25c5403eb9183e3ab8353fe74411f6f58cc609c15ae123488e20fb" }, "downloads": -1, "filename": "records-0.5.0.tar.gz", "has_sig": false, "md5_digest": "5ab2c9a5dab9bc7a24de6053c843f749", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8683, "upload_time": "2016-11-15T14:45:59", "url": "https://files.pythonhosted.org/packages/2e/b1/84a47a508f5f5931e7ee289dc3e94e9afdad71b18378862054c4f8bdddd0/records-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "12a5e3c1fd10e9b34ee692240d7e64e9", "sha256": "885230f2faf2bb256c69344f7ac27b7187f76898a4706b3b0591ddf32f9f5ee3" }, "downloads": -1, "filename": "records-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "12a5e3c1fd10e9b34ee692240d7e64e9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11890, "upload_time": "2017-09-01T19:45:37", "url": "https://files.pythonhosted.org/packages/58/88/9a1d50d1309cfa6a51ae5d37ce613fd18ddfe6746a9825f48d8f3d4deb03/records-0.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f1c97fa5af79b41ed1e092b03d5829ef", "sha256": "f3946f19d5c7cdfe02acff2cb461afb609119171f3990fef5335d72a8992c788" }, "downloads": -1, "filename": "records-0.5.1.tar.gz", "has_sig": false, "md5_digest": "f1c97fa5af79b41ed1e092b03d5829ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9292, "upload_time": "2017-09-01T19:45:42", "url": "https://files.pythonhosted.org/packages/d9/3f/a5bcf1623e0637fd5bbad11b767f40d1f6480c8e2514b5bf896ec082a090/records-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "5bfac71ba863b01d370da4cf54f622c2", "sha256": "6d060a2b44ecc198d4e86efd5dab8558a2581b4019970bd8839e1604a243f57e" }, "downloads": -1, "filename": "records-0.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5bfac71ba863b01d370da4cf54f622c2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12022, "upload_time": "2017-09-02T18:08:46", "url": "https://files.pythonhosted.org/packages/74/4d/4f16ebe391476e0212b3285454afa82f98a7c2466ecd88f90736c60e22ac/records-0.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad886233c4b364d0a887dcc701733926", "sha256": "238cba35e8efbb724493bbb195bd027d9e78db4a978597969a7af0f722ac3686" }, "downloads": -1, "filename": "records-0.5.2.tar.gz", "has_sig": false, "md5_digest": "ad886233c4b364d0a887dcc701733926", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9674, "upload_time": "2017-09-02T18:08:47", "url": "https://files.pythonhosted.org/packages/89/f8/aec41f062568eb8a027f26fe1d2aaa30441e6bbe65896f7ad70dd5cc895e/records-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "315c38d8955985fc7f6e358c2d2486ee", "sha256": "cdbacf52c61b4a3bc10fef1286a24a63ae95255a2e7b4e8ccb1e1f96737231ed" }, "downloads": -1, "filename": "records-0.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "315c38d8955985fc7f6e358c2d2486ee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10033, "upload_time": "2019-02-21T13:34:41", "url": "https://files.pythonhosted.org/packages/ef/93/2467c761ea3729713ab97842a46cc125ad09d14a0a174cb637bee4983911/records-0.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "192556aa68b1baf77596ab2d5470e94f", "sha256": "47e4874096f4a8f4b5bcad8c7c7cf512be36186e6e263ff3dfd750b05ff0d3c4" }, "downloads": -1, "filename": "records-0.5.3.tar.gz", "has_sig": false, "md5_digest": "192556aa68b1baf77596ab2d5470e94f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11837, "upload_time": "2019-02-21T13:34:43", "url": "https://files.pythonhosted.org/packages/33/13/3c497e5a70dd807495e34c24475bca7d9d934b49a59213c0c2573fe3a735/records-0.5.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "315c38d8955985fc7f6e358c2d2486ee", "sha256": "cdbacf52c61b4a3bc10fef1286a24a63ae95255a2e7b4e8ccb1e1f96737231ed" }, "downloads": -1, "filename": "records-0.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "315c38d8955985fc7f6e358c2d2486ee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10033, "upload_time": "2019-02-21T13:34:41", "url": "https://files.pythonhosted.org/packages/ef/93/2467c761ea3729713ab97842a46cc125ad09d14a0a174cb637bee4983911/records-0.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "192556aa68b1baf77596ab2d5470e94f", "sha256": "47e4874096f4a8f4b5bcad8c7c7cf512be36186e6e263ff3dfd750b05ff0d3c4" }, "downloads": -1, "filename": "records-0.5.3.tar.gz", "has_sig": false, "md5_digest": "192556aa68b1baf77596ab2d5470e94f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11837, "upload_time": "2019-02-21T13:34:43", "url": "https://files.pythonhosted.org/packages/33/13/3c497e5a70dd807495e34c24475bca7d9d934b49a59213c0c2573fe3a735/records-0.5.3.tar.gz" } ] }