{ "info": { "author": "Jared Hobbs", "author_email": "jared@pyhacker.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Topic :: Text Processing", "Topic :: Utilities" ], "description": "sas7bdat.py\n===========\n\nThis module will read sas7bdat files using pure Python (2.6+, 3+). No SAS software\nrequired! The module started out as a port of the R script of the same name\nfound here: but has since been\ncompletely rewritten.\n\nAlso included with this library is a simple command line script,\n`sas7bdat_to_csv`, which converts sas7bdat files to csv files. It will also\nprint out header information and meta data using the `--header` option and it\nwill batch convert files as well. Use the `--help` option for more information.\n\nAs is, I've successfully tested the script almost three hundred sample files I\nfound on the internet. For the most part, it works well. We can now read\ncompressed files!\n\nI'm sure there are more issues that I haven't come across yet. Please let me\nknow if you come across a data file that isn't supported and I'll see if I can\nadd support for the file.\n\nUsage\n=====\n\nTo install, run:\n\n```\npip install sas7bdat\n```\n\nTo create a sas7bdat object, simply pass the constructor a file path. The\nobject is iterable so you can read the contents like this:\n\n```\n#!python\nfrom sas7bdat import SAS7BDAT\nwith SAS7BDAT('foo.sas7bdat', skip_header=True) as reader:\n for row in reader:\n print row\n```\n\nEach row will be a list of values of type `string`, `float`, `datetime.date`,\n`datetime.datetime`, or `datetime.time`. Without `skip_header`, the first row\nreturned will be the SAS variable names.\n\nIf you'd like to get a pandas DataFrame, use the `to_data_frame` method:\n\n```\n#!python\ndf = reader.to_data_frame()\n```\n\n[Variable\nattributes](https://support.sas.com/documentation/cdl/en/lrcon/65287/HTML/default/viewer.htm#n08fs0rt7fikeln1uh0t8v5pt25d.htm)\nare available from `reader.columns`. The order of these columns will be the same\nas the corresponding values in each `row`. Each `Column` has the following\nattributes:\n\n* `col_id` (`int`) - the column number\n* `name` (`bytes`)\n* `label` (`bytes`)\n* `format` (`str`)\n* `type` (`str`)\n* `length` (`int`)", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://bitbucket.org/jaredhobbs/sas7bdat", "keywords": "sas,sas7bdat,csv,converter", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "sas7bdat", "package_url": "https://pypi.org/project/sas7bdat/", "platform": "", "project_url": "https://pypi.org/project/sas7bdat/", "project_urls": { "Homepage": "https://bitbucket.org/jaredhobbs/sas7bdat" }, "release_url": "https://pypi.org/project/sas7bdat/2.2.3/", "requires_dist": null, "requires_python": "", "summary": "A sas7bdat file reader for Python", "version": "2.2.3" }, "last_serial": 5535546, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "ab1f792024283abb59e125e192651ed6", "sha256": "fdf2556fa78ddaffb2195ee86c088dfdfd8f4d97c0a3fc96242b60dd9b9971be" }, "downloads": -1, "filename": "sas7bdat-0.1.0.tar.gz", "has_sig": false, "md5_digest": "ab1f792024283abb59e125e192651ed6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7182, "upload_time": "2013-02-16T07:26:53", "url": "https://files.pythonhosted.org/packages/d8/44/fe8164e56bacb6d8f696f956b1605a4ffe0d412967aba27e0621f01ebf07/sas7bdat-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "0b0c24e8ec2ad5e244c98eb139db408e", "sha256": "76b952df197d3f20ecd433c6c84dd0849cc48204309ee8f2bc596017a03af926" }, "downloads": -1, "filename": "sas7bdat-0.1.1.tar.gz", "has_sig": false, "md5_digest": "0b0c24e8ec2ad5e244c98eb139db408e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7289, "upload_time": "2013-03-02T19:35:46", "url": "https://files.pythonhosted.org/packages/8c/80/97507fc58135d513d56a7377e84693fa12df7f0901598adff123918f814b/sas7bdat-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "46826e5bd10357dabc5dfb8407081f30", "sha256": "dfebbe8317663d004076f156a155114fed4d399420ff4443ac5d82ceb2c49ad9" }, "downloads": -1, "filename": "sas7bdat-0.1.2.tar.gz", "has_sig": false, "md5_digest": "46826e5bd10357dabc5dfb8407081f30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7264, "upload_time": "2013-03-22T16:49:11", "url": "https://files.pythonhosted.org/packages/8c/b8/4e30aa10d9532919f088066ad248441e9836880b503b0b8858b7704f4e17/sas7bdat-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "ce57a92bff4d288e3e509ea16a50034b", "sha256": "121c6f8c72c0221aa1310c0d827a3d74d3b9130e6351201283da3f810efaf002" }, "downloads": -1, "filename": "sas7bdat-0.2.0.tar.gz", "has_sig": false, "md5_digest": "ce57a92bff4d288e3e509ea16a50034b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8134, "upload_time": "2013-06-14T18:42:34", "url": "https://files.pythonhosted.org/packages/48/15/0392d435335a995b27de63412c29e4053d85ba566c05b246b306a33f5e89/sas7bdat-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "5c9e678fc9d426d7e494701ec261e4e3", "sha256": "fee7bb690d094c292f5963701b9fbc1fd742689183c4ab9e09c7b9a39f0b2a0e" }, "downloads": -1, "filename": "sas7bdat-0.2.1.tar.gz", "has_sig": false, "md5_digest": "5c9e678fc9d426d7e494701ec261e4e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8702, "upload_time": "2013-06-15T04:21:01", "url": "https://files.pythonhosted.org/packages/f0/80/33c81650fe8a8853ce0631dcd2fbf15c813bda45dfac5cc0aabcc34aa7c3/sas7bdat-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "090a75443964a2b11832d96aa7397059", "sha256": "b55ae23db56e2c9a1c8657b03e0c3dbddfdb77f740ed036334b98b45df9f1510" }, "downloads": -1, "filename": "sas7bdat-0.2.2.tar.gz", "has_sig": false, "md5_digest": "090a75443964a2b11832d96aa7397059", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8741, "upload_time": "2013-06-21T05:23:40", "url": "https://files.pythonhosted.org/packages/c4/f4/71631615a2ba9e7016bf6d85421b3c36328bc6b294c5897271280c73e4f9/sas7bdat-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "93b14e51ca4cd646e9718969f85d15c0", "sha256": "844ecca90c1d95f2c66641094fa85122d46c0b2c01a2f413ef083ba88d630252" }, "downloads": -1, "filename": "sas7bdat-0.2.3.tar.gz", "has_sig": false, "md5_digest": "93b14e51ca4cd646e9718969f85d15c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9063, "upload_time": "2014-09-29T23:41:08", "url": "https://files.pythonhosted.org/packages/c6/4f/16b0311015670c3508ed2594c3d2915770f91667c0eac459387be3bc2ec0/sas7bdat-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "ec16c2cf0b26d8605724ec6f49dec01c", "sha256": "d54feb5b3aba5c958a7c9d9548c30875e3829710f70450a0662ab2fc80e7dbc0" }, "downloads": -1, "filename": "sas7bdat-0.2.4.tar.gz", "has_sig": false, "md5_digest": "ec16c2cf0b26d8605724ec6f49dec01c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9238, "upload_time": "2014-09-30T18:13:31", "url": "https://files.pythonhosted.org/packages/ff/41/dadf0628235d4ab0649b2d717c8c11f2790f4e7fb5892fd1a8623ce31e98/sas7bdat-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "072a5b9dffbbb74bb299308cdc7951bf", "sha256": "f634c1a1433bbc3829fda4f734bda6b0a292645935a6462a9b9e7f60b7ab9820" }, "downloads": -1, "filename": "sas7bdat-0.2.5.tar.gz", "has_sig": false, "md5_digest": "072a5b9dffbbb74bb299308cdc7951bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9297, "upload_time": "2014-10-13T01:18:08", "url": "https://files.pythonhosted.org/packages/33/87/4819945b138d2b71b0e0a60642b168968dc70ab811a17affdc36d1a64e39/sas7bdat-0.2.5.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "f253e1ee6b592847249ab1d496b51cdb", "sha256": "0b3e585d809ed4995c21cdb6bd70546869221384665811af2d68f360bc1719ea" }, "downloads": -1, "filename": "sas7bdat-1.0.0.tar.gz", "has_sig": false, "md5_digest": "f253e1ee6b592847249ab1d496b51cdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11405, "upload_time": "2014-11-17T20:11:13", "url": "https://files.pythonhosted.org/packages/99/8c/3f914847ac6e37f67ca23f2485c0b20fe8ed451159bd57bf05f2239edf32/sas7bdat-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "d56cacb957b1f42c36e6d1ede57b9e8a", "sha256": "52a5601b27074a74a3e983813f28823ceb605e6594b9730d4d5103d86ae6a0da" }, "downloads": -1, "filename": "sas7bdat-1.0.1.tar.gz", "has_sig": false, "md5_digest": "d56cacb957b1f42c36e6d1ede57b9e8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12468, "upload_time": "2014-11-19T21:56:12", "url": "https://files.pythonhosted.org/packages/81/6b/7687dc80b39d1eed7a0b4a9f2b6837454f6f028e82dc2706e0d7208599ba/sas7bdat-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "e170dc1671b469d4c351dcf6fa700483", "sha256": "1a1f660044d67a9d9bd76668dfebadfe7dd6c9a555268001f1768fdf57e98abe" }, "downloads": -1, "filename": "sas7bdat-1.0.2.tar.gz", "has_sig": false, "md5_digest": "e170dc1671b469d4c351dcf6fa700483", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12480, "upload_time": "2014-11-22T09:00:57", "url": "https://files.pythonhosted.org/packages/f7/99/0a8cce7b0281b86e28a627a550e4f0629b98b8d9afaeadc7115943e1b78c/sas7bdat-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "7f835c37e15a9d422dc55ec3c85ccdc1", "sha256": "8c7917121f9d76a5684123d03d47d6ca8353eb3988b5e384f2641081e870b155" }, "downloads": -1, "filename": "sas7bdat-1.0.3.tar.gz", "has_sig": false, "md5_digest": "7f835c37e15a9d422dc55ec3c85ccdc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12531, "upload_time": "2014-12-05T15:18:54", "url": "https://files.pythonhosted.org/packages/5c/da/8bf62b3eda4bb60d72e7e05958211907e6eb0105a74aee2b542b2ee938f9/sas7bdat-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "4c27cbed94fb2c5690dcd522f0626c8b", "sha256": "13016dcdbb68e7976f5a79538b2844aa01e08953088f47dde7870c0362d1071e" }, "downloads": -1, "filename": "sas7bdat-1.0.4.tar.gz", "has_sig": false, "md5_digest": "4c27cbed94fb2c5690dcd522f0626c8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12744, "upload_time": "2014-12-11T21:02:47", "url": "https://files.pythonhosted.org/packages/07/51/7be699298b27bf1e17747f078e5e84479cdfcecc9ce42b9a8b9c4110d87a/sas7bdat-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "e64a58eb7635429b39ce4573ef10f9dd", "sha256": "bdb23a92faba21f6ec183cffc81fcb6e9eb0a7d03294b930fa05952e805450eb" }, "downloads": -1, "filename": "sas7bdat-1.0.5.tar.gz", "has_sig": false, "md5_digest": "e64a58eb7635429b39ce4573ef10f9dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12756, "upload_time": "2014-12-28T22:35:19", "url": "https://files.pythonhosted.org/packages/ba/4d/3b08aa86dcdf836aa380119ad950eb6463e54f7aa7fe6ba1c5dea40d8e2f/sas7bdat-1.0.5.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "94783054cacef28392ad0bed897d3bc6", "sha256": "3709bbe3b156ab2b9f466aba78d4b23a953214869b64669a3c7531b968f30609" }, "downloads": -1, "filename": "sas7bdat-2.0.0.tar.gz", "has_sig": false, "md5_digest": "94783054cacef28392ad0bed897d3bc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14501, "upload_time": "2015-01-04T09:01:34", "url": "https://files.pythonhosted.org/packages/8f/02/6270b6441640f69c09c36304522fd4d8b8aa996b1ebbf8314ae45e1f2ebd/sas7bdat-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "044009ea06d1353e06f653404eb62401", "sha256": "c4315e9fbb333ddcdb0c83acd408f5c5a56c6402e8fe67ee37c0b63a8204ed1b" }, "downloads": -1, "filename": "sas7bdat-2.0.1.tar.gz", "has_sig": false, "md5_digest": "044009ea06d1353e06f653404eb62401", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14487, "upload_time": "2015-01-04T09:08:29", "url": "https://files.pythonhosted.org/packages/8f/68/5256910691c5afe3a84a90f912a7f4a6731aeb38152031f415f91f14502c/sas7bdat-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "1e246ede4477054827e04f2b07ce4d8d", "sha256": "d11a68d4d5b242d5acc51ff1bbd51b5c00141e972df4fa2fff7c9f459df0e62a" }, "downloads": -1, "filename": "sas7bdat-2.0.2.tar.gz", "has_sig": false, "md5_digest": "1e246ede4477054827e04f2b07ce4d8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14506, "upload_time": "2015-01-08T17:59:00", "url": "https://files.pythonhosted.org/packages/0a/61/7c287d3c136758ab8336b46da40cd7f844888f93616a047189ef9f460520/sas7bdat-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "849ee5c2d5c9a4965b89887bffbf15a1", "sha256": "f620282f954d1179520b95fc1f984e6cb9dff5a7fd327ada462ccbcc12d8ae74" }, "downloads": -1, "filename": "sas7bdat-2.0.3.tar.gz", "has_sig": false, "md5_digest": "849ee5c2d5c9a4965b89887bffbf15a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14523, "upload_time": "2015-01-21T19:09:25", "url": "https://files.pythonhosted.org/packages/a2/06/868eeb9781eff2485eb7f90556fe6b7670fdf37a52b4dae951ac622d44b8/sas7bdat-2.0.3.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "1eb133fb4225b4d545684139911390c6", "sha256": "15810552c2157c36e78ce67ac9d6060eaed58084a2b4b089c15286fcc1ad4394" }, "downloads": -1, "filename": "sas7bdat-2.0.4.tar.gz", "has_sig": false, "md5_digest": "1eb133fb4225b4d545684139911390c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14509, "upload_time": "2015-01-27T18:12:40", "url": "https://files.pythonhosted.org/packages/9a/8b/e03d0be24d608f22e16c10fee6e354f8e2bc14f0af4e37a0bf9313ca7132/sas7bdat-2.0.4.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "0b42039b775dae4fccff65bf2c4e27bb", "sha256": "5c1dc804a7b6faf17b64efcd724d3cca1878e43b76566c93f48a9aafc7e2aa92" }, "downloads": -1, "filename": "sas7bdat-2.0.5.tar.gz", "has_sig": false, "md5_digest": "0b42039b775dae4fccff65bf2c4e27bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14589, "upload_time": "2015-08-07T16:15:33", "url": "https://files.pythonhosted.org/packages/a3/54/cc87b2d005c112872b5b357b534dcc11fe721f71855ef118320b6ce887f4/sas7bdat-2.0.5.tar.gz" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "e37e8cd0f64b7575ac172c9dd919987f", "sha256": "dc6212162d18bb414aa781bfd0ad21b908b274728ee07998eb36fd9938ee1a96" }, "downloads": -1, "filename": "sas7bdat-2.0.6.tar.gz", "has_sig": false, "md5_digest": "e37e8cd0f64b7575ac172c9dd919987f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14615, "upload_time": "2015-09-07T23:18:13", "url": "https://files.pythonhosted.org/packages/11/27/57dc93ca1eecea5b10cfe52bbf857900bb6c9f13a61d7897f60b1b319490/sas7bdat-2.0.6.tar.gz" } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "514f15969a7b5e3485344eb2ef5fc13b", "sha256": "f1f0a95183c5a8cf8e4d378b1ed5778853a08e9f5eab42381a410368801a94c2" }, "downloads": -1, "filename": "sas7bdat-2.0.7.tar.gz", "has_sig": false, "md5_digest": "514f15969a7b5e3485344eb2ef5fc13b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14667, "upload_time": "2016-01-07T01:29:52", "url": "https://files.pythonhosted.org/packages/e9/7b/9155933263085d2d32feea36d9ed53d527df4a416a4e25d6af8630a218a6/sas7bdat-2.0.7.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "2413d592b6a6b6375659d20084ade852", "sha256": "2cf6ecd40bdde1e4e9cc71813489b523b0d2e27a2c282396120a58314b4e3fae" }, "downloads": -1, "filename": "sas7bdat-2.1.1.tar.gz", "has_sig": false, "md5_digest": "2413d592b6a6b6375659d20084ade852", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15553, "upload_time": "2018-05-25T15:46:07", "url": "https://files.pythonhosted.org/packages/18/65/bd270e2c602665662534148f9e5aa4843e5396f3ebe54debbcb1580b5032/sas7bdat-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "4d48668cfdd9239087db4e188d92eb80", "sha256": "6f11f8a812f860d27efa418a9b981d2f825466b973f750a15cc3ada57c0c46c6" }, "downloads": -1, "filename": "sas7bdat-2.1.2.tar.gz", "has_sig": false, "md5_digest": "4d48668cfdd9239087db4e188d92eb80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15729, "upload_time": "2018-10-20T17:26:42", "url": "https://files.pythonhosted.org/packages/e3/70/d1094303eb45b0087d74e8107a26bd280a2e3adb04cd15cf7a6f76cb4ca7/sas7bdat-2.1.2.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "e7fa95a9ef94e768d8866d825dcc6ec2", "sha256": "f927bed44abf5d2930ab0ed7b43f0b4af53151cb820ee39f1e58219e9ebadec1" }, "downloads": -1, "filename": "sas7bdat-2.2.0.tar.gz", "has_sig": false, "md5_digest": "e7fa95a9ef94e768d8866d825dcc6ec2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14993, "upload_time": "2018-11-05T05:18:34", "url": "https://files.pythonhosted.org/packages/aa/88/212ff6a876ac20f00d4390dbc706f7a323f96b5898a898600b74189cd763/sas7bdat-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "183e4f2d1f82d0910ab8aba64bb822c7", "sha256": "9bca352b07a61686eb2b4d636560b5a7ffc1e2004d5e7275968b2fc277615679" }, "downloads": -1, "filename": "sas7bdat-2.2.1.tar.gz", "has_sig": false, "md5_digest": "183e4f2d1f82d0910ab8aba64bb822c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15189, "upload_time": "2018-11-05T05:24:50", "url": "https://files.pythonhosted.org/packages/18/30/32c8285114e6bd442c47e862dd5a30d052ab4f65514a09bfcfcdea10c7d6/sas7bdat-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "5532f63fa0b9b893452f32d295fda9c0", "sha256": "fea44a95e0db614088493de28b94afe8471b9e1fd4d6d5cabc56c83664793855" }, "downloads": -1, "filename": "sas7bdat-2.2.2.tar.gz", "has_sig": false, "md5_digest": "5532f63fa0b9b893452f32d295fda9c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15588, "upload_time": "2018-12-27T17:32:13", "url": "https://files.pythonhosted.org/packages/c7/7d/f6187c1233e05f340985cccd3541bc3a96d800f8d1e20d3ff36c1661e385/sas7bdat-2.2.2.tar.gz" } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "0f0a6f124ce25ba1e035c083ee7e5aee", "sha256": "484c609d962442203c15bc719a638de992a23cd13bc1971a5af6dfb0daf9f797" }, "downloads": -1, "filename": "sas7bdat-2.2.3.tar.gz", "has_sig": false, "md5_digest": "0f0a6f124ce25ba1e035c083ee7e5aee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16053, "upload_time": "2019-07-15T15:29:53", "url": "https://files.pythonhosted.org/packages/4d/7b/d41d280b12c776e67c840bace0e5f02acda6adb13cd1fbb04293ece0bc3c/sas7bdat-2.2.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0f0a6f124ce25ba1e035c083ee7e5aee", "sha256": "484c609d962442203c15bc719a638de992a23cd13bc1971a5af6dfb0daf9f797" }, "downloads": -1, "filename": "sas7bdat-2.2.3.tar.gz", "has_sig": false, "md5_digest": "0f0a6f124ce25ba1e035c083ee7e5aee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16053, "upload_time": "2019-07-15T15:29:53", "url": "https://files.pythonhosted.org/packages/4d/7b/d41d280b12c776e67c840bace0e5f02acda6adb13cd1fbb04293ece0bc3c/sas7bdat-2.2.3.tar.gz" } ] }