{ "info": { "author": "Randall Degges", "author_email": "r@rdegges.com", "bugtrack_url": null, "classifiers": [], "description": "stormpath-export\n================\n\nEasily export your Stormpath user data.\n\n\n.. image:: https://img.shields.io/pypi/v/stormpath-export.svg\n :alt: stormpath-export Release\n :target: https://pypi.python.org/pypi/stormpath-export\n\n.. image:: https://img.shields.io/pypi/dm/stormpath-export.svg\n :alt: stormpath-export Downloads\n :target: https://pypi.python.org/pypi/stormpath-export\n\n.. image:: https://api.codacy.com/project/badge/grade/d7904abc80dc40a39e8b1850f10000ea\n :alt: stormpath-export Code Quality\n :target: https://www.codacy.com/app/r/stormpath-export\n\n.. image:: https://img.shields.io/travis/stormpath/stormpath-export.svg\n :alt: stormpath-export Build\n :target: https://travis-ci.org/stormpath/stormpath-export\n\n.. image:: https://github.com/rdegges/stormpath-export/raw/master/assets/box-sketch.png\n :alt: Box Sketch\n\n\nPurpose\n-------\n\n`Stormpath`_ is one of my favorite API services. They provide a scalable,\nsimple, and secure user management API which makes building scalable systems\nsimple.\n\nWhenever I talk to people about using `Stormpath`_, the same question\ninvariably comes up: \"Is it easy to export my user data out of Stormpath? Or\nam I locked in?\"\n\nUp until now, the answer has been \"Yes! But only if you contact them about it.\"\n\nWith ``stormpath-export``, however, you can easily back up all your Stormpath\nuser data instantly!\n\n``stormpath-export`` will:\n\n- Grab all Stormpath data you've stored, and dump it to JSON files locally.\n- Dump data into a local directory structure which makes intuitive sense\n (*groups are located in the groups directory, etc.*).\n- Each object gets it's own JSON file generated. This makes it easy to look at\n the file system and extract the information you need.\n\n``stormpath-export`` makes it easy to:\n\n- Download a copy of all your user data.\n- Back up your user data (*Stormpath has their own backups of course, but you\n can never be too safe*).\n- Migrate user data out of Stormpath.\n\n\nInstallation\n------------\n\nInstalling ``stormpath-export`` is simple -- just use `pip`_!\n\nOnce you have pip installed on your computer, you can run the following to\ninstall the latest release of ``stormpath-export``:\n\n.. code-block:: console\n\n $ pip install -U stormpath-export\n\nThat's it :)\n\n\nUsage\n-----\n\nBefore you can export all your `Stormpath`_ data, you'll need to configure\n``stormpath-export`` and give it your Stormpath API credentials. To do this,\nsimply run:\n\n.. code-block:: console\n\n $ stormpath-export configure\n\nThis will prompt you for some basic information, then store your credentials\nin the local file ``~/.stormy``.\n\nNOTE: If you are using Stormpath Enterprise, please enter\n``https://enterprise.stormpath.io/v1`` when prompted for the Base URL. This\ninstructs the export tool to talk to the Stormpath Enterprise environment.\n\nNext, to initiate a backup job, you can run:\n\n.. code-block:: console\n\n $ stormpath-export\n\nThis will export all your Stormpath data, and dump it into a new directory\nnamed ``stormpath-exports``. If you'd like to specify your own backup location,\nyou can do so by adding a path -- for instance:\n\n.. code-block:: console\n\n $ stormpath-export ~/Desktop/stormpath-exports\n\nWhen exporting your data, you should see output similar to the following:\n\n.. code-block:: console\n\n === Exporting all application data...\n - Exporting application: Stormpath\n === Done!\n\n === Exporting all directory data...\n - Exporting directory: Stormpath Administrators\n - Exporting directory: testdirectory\n === Done!\n\n === Exporting all group data...\n - Exporting group: Administrators\n === Done!\n\n === Exporting all account data...\n - Exporting account: r@rdegges.com\n === Done!\n\n.. note::\n Depending on how many applications, groups, directories, organizations, and\n accounts you have, this process may take a while.\n\nOnce the process is finished, you can navigate the JSON files in the export\ndirectory, which will contain all your Stormpath data.\n\nFor full usage information, run ``stormpath-export -h``:\n\n.. code-block:: console\n\n $ stormpath-export -h\n stormpath-export\n ----------------\n\n Easily export your Stormpath (https://stormpath.com/) user data.\n\n Usage:\n stormpath-export configure\n stormpath-export [( | -l | --location )]\n stormpath-export (-h | --help)\n stormpath-export --version\n\n Options:\n -h --help Show this screen.\n --version Show version.\n\n Written by Randall Degges .\n\n\nHelp\n----\n\nNeed help? Can't figure something out? If you think you've found a bug, please\nopen an issue on the `Github issue tracker`_.\n\nOtherwise, `shoot us an email`_.\n\n\nChangelog\n---------\n\n**0.1.2**: 12-27-2016\n\n- Importing missing dependency.\n\n**0.1.1**: 10-17-2016\n\n- Supporting ``--base-url`` argument.\n- Making the tool Python 3 compatible.\n\n**0.1.0**: 03-16-2016\n\n- Supporting API key exports.\n- Supporting Organization exports.\n- Fixing documentation.\n- Updating Stormpath dependency.\n\n**0.0.9**: 06-19-2015\n\n- Fixing version information.\n\n**0.0.8**: 06-19-2015\n\n- Supporting private deployments.\n\n**0.0.7**: 06-18-2015\n\n- Supporting Account API key backups.\n\n**0.0.6**: 06-18-2015\n\n- Completely re-doing export structures -- much more sane now.\n- Adding IDs, hrefs, and all fields to all backups.\n- Still needs to support Social / ID site / Verification templates.\n\n**0.0.5**: 05-28-2015\n\n- Making the application export back up directory mappings.\n\n**0.0.4**: 05-27-2015\n\n- Backing up customData for all resource types.\n- Upgrading dependencies.\n\n**0.0.3**: 06-19-2014\n\n- Making application export include directory name for clarity.\n\n**0.0.2**: 06-08-2014\n\n- Fixing bug with groups.\n- Adding support for custom data exporting.\n- Including new Stormpath SDK.\n\n**0.0.1**: 12-14-2013\n\n- First super-beta release of the project. WOO.\n\n\n.. _Stormpath: https://stormpath.com/ \"Stormpath\"\n.. _pip: http://pip.readthedocs.org/en/stable/ \"pip\"\n.. _Github issue tracker: https://github.com/stormpath/stormpath-export/issues \"stormpath-export Issue Tracker\"\n.. _shoot us an email: mailto:support@stormpath.com \"Stormpath Support\"\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rdegges/stormpath-export", "keywords": "user authentication auth security api stormpath bcrypt utility", "license": "UNLICENSE", "maintainer": "", "maintainer_email": "", "name": "stormpath-export", "package_url": "https://pypi.org/project/stormpath-export/", "platform": "", "project_url": "https://pypi.org/project/stormpath-export/", "project_urls": { "Homepage": "https://github.com/rdegges/stormpath-export" }, "release_url": "https://pypi.org/project/stormpath-export/0.1.2/", "requires_dist": null, "requires_python": "", "summary": "Easily export your Stormpath user data.", "version": "0.1.2" }, "last_serial": 2541436, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "dcc533d577e670bc68cf7f8be216c822", "sha256": "1b2304a95164d1da494147e6118a50253c244681ab3176d40ff3eaaff29cea3a" }, "downloads": -1, "filename": "stormpath-export-0.0.1.tar.gz", "has_sig": false, "md5_digest": "dcc533d577e670bc68cf7f8be216c822", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5947, "upload_time": "2013-12-15T01:55:08", "url": "https://files.pythonhosted.org/packages/11/cf/0579391697d2cd67d309e4a1ced251f8a0e2bf5c0431e028cc71de4cc99c/stormpath-export-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "f565d8c431ece8605a7e2cfe361615af", "sha256": "6cdf1a09a36933cfe291acc0ad79f261c31ef2a13f90d3cedfd04413a43b5ddf" }, "downloads": -1, "filename": "stormpath-export-0.0.2.tar.gz", "has_sig": false, "md5_digest": "f565d8c431ece8605a7e2cfe361615af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6111, "upload_time": "2014-06-09T22:08:16", "url": "https://files.pythonhosted.org/packages/25/ba/8f18f14d99388dea7f0601e3069af644bb98a409c7db9d59a060d2316ceb/stormpath-export-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "b089b785809cb64aed6870cec86d7974", "sha256": "4d7619da86920a6d76877bb50415493d1bec07fd9be88a119cfedcf10d3de790" }, "downloads": -1, "filename": "stormpath-export-0.0.3.tar.gz", "has_sig": false, "md5_digest": "b089b785809cb64aed6870cec86d7974", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6189, "upload_time": "2014-06-19T23:34:04", "url": "https://files.pythonhosted.org/packages/77/1a/7508b2e7ffba6573251039cdc84fbcdb981dcdd2bc2e49a379cf84bba1a8/stormpath-export-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "d88b450d1e57caea8f6679d59a48cfaf", "sha256": "a651ed289c5b0ca499c4b7db01d7e326ec95cd297f89467fcb439db97d9bf388" }, "downloads": -1, "filename": "stormpath_export-0.0.4-cp27-none-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "d88b450d1e57caea8f6679d59a48cfaf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8392, "upload_time": "2015-05-27T22:11:47", "url": "https://files.pythonhosted.org/packages/56/b3/6ba7aed6363ba8144aede3c6ecfbf0a018ab9a2fc3a45039c5f8b5962793/stormpath_export-0.0.4-cp27-none-macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0c45f5c42cc0db1aebf4e46dda8ee35b", "sha256": "e97c3e5aecb129b3326506fa08406da51dab6bef8d82b82080b2c20485488f68" }, "downloads": -1, "filename": "stormpath-export-0.0.4.tar.gz", "has_sig": false, "md5_digest": "0c45f5c42cc0db1aebf4e46dda8ee35b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6524, "upload_time": "2015-05-27T22:11:44", "url": "https://files.pythonhosted.org/packages/27/74/9dc339be1bbb768c51fe5078e70dc399d78d3945d0071222364daedec60b/stormpath-export-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "a5ac9708bbadd665c2bddabb59d03f7a", "sha256": "38c3d72313a05c1658fe4944a4e5a71685e11f818226fa4b65db7f933daeaaba" }, "downloads": -1, "filename": "stormpath_export-0.0.5-cp27-none-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a5ac9708bbadd665c2bddabb59d03f7a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8521, "upload_time": "2015-05-29T00:36:14", "url": "https://files.pythonhosted.org/packages/3d/78/8fbb7bb2c3ecbdb5a70f28fa33b643eb7f891ac64400a3542f3774d9032f/stormpath_export-0.0.5-cp27-none-macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b83d15539c51d706b129ded2d9b02ba6", "sha256": "cb5b5847b7fc8c4aa7a8c31913e8d9b07a36668f3e3e29aad7003f7729d83e35" }, "downloads": -1, "filename": "stormpath-export-0.0.5.tar.gz", "has_sig": false, "md5_digest": "b83d15539c51d706b129ded2d9b02ba6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6632, "upload_time": "2015-05-29T00:36:10", "url": "https://files.pythonhosted.org/packages/b2/ea/c2e6f8f59ff6d027f9d3d8bd0cf4c3a8b4add1b4278d732c69beda827ec0/stormpath-export-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "c661448bab03b9f470988f9ac79ea324", "sha256": "21cd81bf8b41ea2172aae132a58f6c58cfbd2a4523012c7c498fd0038f4e3a88" }, "downloads": -1, "filename": "stormpath_export-0.0.6-cp27-none-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "c661448bab03b9f470988f9ac79ea324", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 9766, "upload_time": "2015-06-19T02:39:25", "url": "https://files.pythonhosted.org/packages/48/42/aa802ded33a5ca37ad05aeb50dbacf3569f266c738659f6996efe63fbd6f/stormpath_export-0.0.6-cp27-none-macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d036f19e90b6fed14d51785817c6729f", "sha256": "144c33338d131ecec1509f9f7271866adebbb6f6088cfdd2115d8ee812923e6a" }, "downloads": -1, "filename": "stormpath-export-0.0.6.tar.gz", "has_sig": false, "md5_digest": "d036f19e90b6fed14d51785817c6729f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8382, "upload_time": "2015-06-19T02:39:21", "url": "https://files.pythonhosted.org/packages/93/a7/a591167c8b480ed4bea3e3f141fd3f31a179c411fe093eb9f79e30283aaa/stormpath-export-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "fc6c3269cfc39b7db2de05503b666b3b", "sha256": "c60432678fdaab1ecf4dcf0cd2a91f708f5fab9579ffdf07105803f7c28a6d0e" }, "downloads": -1, "filename": "stormpath_export-0.0.7-cp27-none-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "fc6c3269cfc39b7db2de05503b666b3b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 9862, "upload_time": "2015-06-19T02:51:30", "url": "https://files.pythonhosted.org/packages/9c/ca/fa6e9aadfd5ce6a13b30bab41e418e6f082a853bcc36b4ba4f0fa5da3a65/stormpath_export-0.0.7-cp27-none-macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b4637c2a43746206dedb4742fa7e436d", "sha256": "a8be56019359f1a2fd37da024518ea9154f5348af20a1413de97c91ce583ef8f" }, "downloads": -1, "filename": "stormpath-export-0.0.7.tar.gz", "has_sig": false, "md5_digest": "b4637c2a43746206dedb4742fa7e436d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8477, "upload_time": "2015-06-19T02:51:26", "url": "https://files.pythonhosted.org/packages/14/b7/3983a3b8e1572ed4f48ea5eff25d0ee26d3ef210a6d92ab47ac0b4535224/stormpath-export-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "aec73bffe23b849b4f28ae946e8a5149", "sha256": "657696e50e78689badbfa32c2cc59e5b1da1d6f81fce95a70ebe37bd18986ca4" }, "downloads": -1, "filename": "stormpath_export-0.0.8-cp27-none-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "aec73bffe23b849b4f28ae946e8a5149", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10298, "upload_time": "2015-06-19T18:48:45", "url": "https://files.pythonhosted.org/packages/ef/fa/ddb8d55c9859d6d4478a6347b9864ebf78d811beca5cf790d28ba4362c02/stormpath_export-0.0.8-cp27-none-macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "76b19c9f7374c0a2f02cffd0e75b6c55", "sha256": "a47a9d5e773750d1475c64c98afcd693d96374580bac696d31cb5dc97e4014e5" }, "downloads": -1, "filename": "stormpath-export-0.0.8.tar.gz", "has_sig": false, "md5_digest": "76b19c9f7374c0a2f02cffd0e75b6c55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10063, "upload_time": "2015-06-19T18:48:41", "url": "https://files.pythonhosted.org/packages/36/10/c88a0f1bc6f52fe717adbaf17225e82d4599e921753af85c373f662959cf/stormpath-export-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "a81fa7a284aae4cfe7176e3be2f5efaf", "sha256": "44d420ad65a65d8255c7f8d92cf6a24c25247a0b4002700e78c973c93bae6108" }, "downloads": -1, "filename": "stormpath_export-0.0.9-cp27-none-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "a81fa7a284aae4cfe7176e3be2f5efaf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 10332, "upload_time": "2015-06-19T18:52:18", "url": "https://files.pythonhosted.org/packages/c4/35/0d527eb6acd34987b423b9ff82fb881b49344c4fc9b8f93651a18f5a90ff/stormpath_export-0.0.9-cp27-none-macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "345da3f7f2e6ce6c82458b39d72f138c", "sha256": "4a8d58668c93f9c844ac42c0d9dd0472eae682db2202156bb072d53c1af4f609" }, "downloads": -1, "filename": "stormpath-export-0.0.9.tar.gz", "has_sig": false, "md5_digest": "345da3f7f2e6ce6c82458b39d72f138c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10098, "upload_time": "2015-06-19T18:52:15", "url": "https://files.pythonhosted.org/packages/48/cc/27f5eabf85072aa979098e24e75d0eb3aa0738b5b6bfe074e260624eafda/stormpath-export-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "f2786f6ea223fa6a7e9cc6268cccd277", "sha256": "11b52c1e74f79931f620c62cdb40efbeb5fccf5357ae1dc3b58c084b1f089428" }, "downloads": -1, "filename": "stormpath_export-0.1.0-cp27-none-macosx_10_10_x86_64.whl", "has_sig": false, "md5_digest": "f2786f6ea223fa6a7e9cc6268cccd277", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11169, "upload_time": "2016-03-16T23:07:02", "url": "https://files.pythonhosted.org/packages/67/25/0ef9a66ac33b6586b8d5edeba8d15b46241531ffc300d715a6d1870f4a33/stormpath_export-0.1.0-cp27-none-macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1ca5d7a2f0f059c5be8e8306d6f9afd0", "sha256": "99ef33fc46db4847c00dd8f2cee002fcfc5582abe2c2fc96a29de67afba0c336" }, "downloads": -1, "filename": "stormpath-export-0.1.0.tar.gz", "has_sig": false, "md5_digest": "1ca5d7a2f0f059c5be8e8306d6f9afd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11124, "upload_time": "2016-03-16T23:07:12", "url": "https://files.pythonhosted.org/packages/90/98/b7a049553cec371aa7263d7b4d252191158e5ba694c6aa36bdb66f9160c3/stormpath-export-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "b51474f9ab968a5f7bb73e8da7bd3fdf", "sha256": "613616b3aef049803c878ad2fda373cdec13b880eb4bfe03fcce6bcfb9812f13" }, "downloads": -1, "filename": "stormpath_export-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b51474f9ab968a5f7bb73e8da7bd3fdf", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 11467, "upload_time": "2016-10-17T23:41:17", "url": "https://files.pythonhosted.org/packages/98/7e/d4975ed4086e360a08ae03ea490130a6a943082e55e91b0f5856c2d6ad73/stormpath_export-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2369d04a11779a7a0e603f901f4b15a1", "sha256": "d857e2396e5387ce331a0303355e4a48528ae258aa5cb64bbc7909b24e19b5ae" }, "downloads": -1, "filename": "stormpath-export-0.1.1.tar.gz", "has_sig": false, "md5_digest": "2369d04a11779a7a0e603f901f4b15a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9205, "upload_time": "2016-10-17T23:41:14", "url": "https://files.pythonhosted.org/packages/31/88/05626ee00f4abb69bce3f89b297f67ddf2e0fb100e3fff935703bdcc0448/stormpath-export-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "375b12dc0ac3e49cc0bbc151b423160b", "sha256": "7072a23df4b65305a43648817d2d5598425b0aa720308b07327d30930ff02c21" }, "downloads": -1, "filename": "stormpath_export-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "375b12dc0ac3e49cc0bbc151b423160b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11510, "upload_time": "2016-12-27T21:41:50", "url": "https://files.pythonhosted.org/packages/74/28/4a719235480b7f7851accdce0e59761f68e7005d3556c938d6e3bb3c2260/stormpath_export-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "89e00b5809d032ae8c46cf900ffa832a", "sha256": "903c404092f7e24af8d81aa22d8481e7a0aec0611e1e11d86f38b94ddd94497b" }, "downloads": -1, "filename": "stormpath-export-0.1.2.tar.gz", "has_sig": false, "md5_digest": "89e00b5809d032ae8c46cf900ffa832a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11524, "upload_time": "2016-12-27T21:41:48", "url": "https://files.pythonhosted.org/packages/28/25/99147252dee33dda96362b08ba5982f64666e44e3282785843472decb5fc/stormpath-export-0.1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "375b12dc0ac3e49cc0bbc151b423160b", "sha256": "7072a23df4b65305a43648817d2d5598425b0aa720308b07327d30930ff02c21" }, "downloads": -1, "filename": "stormpath_export-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "375b12dc0ac3e49cc0bbc151b423160b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11510, "upload_time": "2016-12-27T21:41:50", "url": "https://files.pythonhosted.org/packages/74/28/4a719235480b7f7851accdce0e59761f68e7005d3556c938d6e3bb3c2260/stormpath_export-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "89e00b5809d032ae8c46cf900ffa832a", "sha256": "903c404092f7e24af8d81aa22d8481e7a0aec0611e1e11d86f38b94ddd94497b" }, "downloads": -1, "filename": "stormpath-export-0.1.2.tar.gz", "has_sig": false, "md5_digest": "89e00b5809d032ae8c46cf900ffa832a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11524, "upload_time": "2016-12-27T21:41:48", "url": "https://files.pythonhosted.org/packages/28/25/99147252dee33dda96362b08ba5982f64666e44e3282785843472decb5fc/stormpath-export-0.1.2.tar.gz" } ] }