{ "info": { "author": "Gavin Burnell", "author_email": "g.burnell@leeds.ac.uk", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Physics" ], "description": ".. image:: https://travis-ci.org/stonerlab/Stoner-PythonCode.svg?branch=master\n :target: https://travis-ci.org/stonerlab/Stoner-PythonCode\n\n.. image:: https://coveralls.io/repos/github/stonerlab/Stoner-PythonCode/badge.svg?branch=master\n :target: https://coveralls.io/github/stonerlab/Stoner-PythonCode?branch=master\n\n.. image:: https://api.codacy.com/project/badge/Grade/372f2f9227134fab9c6c2f2ba83962ba\n :target: https://www.codacy.com/app/stonerlab/Stoner-PythonCode?utm_source=github.com&utm_medium=referral&utm_content=stonerlab/Stoner-PythonCode&utm_campaign=Badge_Grade\n\n.. image:: https://badge.fury.io/py/Stoner.svg\n :target: https://badge.fury.io/py/Stoner\n\n.. image:: https://readthedocs.org/projects/stoner-pythoncode/badge/?version=latest\n :target: http://stoner-pythoncode.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://zenodo.org/badge/17265/gb119/Stoner-PythonCode.svg\n :target: https://zenodo.org/badge/latestdoi/17265/gb119/Stoner-PythonCode\n\n.. image:: http://depsy.org/api/package/pypi/Stoner/badge.svg\n :target: http://depsy.org/package/python/Stoner\n\nIntroduction\n============\n\n\nThe *Stoner* Python package is a set of utility classes for writing data analysis code. It was written within\nthe Condensed Matter Physics group at the University of Leeds as a shared resource for quickly writing simple\nprograms to do things like fitting functions to data, extract curve parameters, churn through large numbers of\nsmall text data files and work with certain types of scientific image files.\n\nFor a general introduction, users are referred to the Users Guide, which is part of the `online documentation`_ along with the\nAPI Reference guide. The `github repository`_ also contains some example scripts.\n\nGetting this Code\n==================\n\n.. image:: https://i.imgur.com/h4mWwM0.png\n :target: https://www.youtube.com/watch?v=uZ_yKs11W18\n :alt: Introduction and Installation Guide to Stoner Pythin Package\n :width: 320\n\nThe *Stoner* package requires numpy >=1.8, scipy >=0.14, matplotlib >=1.5, h5py, lmfit,Pillow and has a number of optional dependencies\non blist, filemagic, npTDMS, imreg_dft and numba.\n\nAnanconda Python (and probably other scientific Python distributions) include nearly all of the dependencies, and the remaining\ndependencies are collected together in the phygbu repositry on anaconda cloud. The easiest way to install the Stoner package is,\ntherefore, to install the most recent Anaconda Python distribution (Python 3.7, 3.6, 3.5 or 2.7 should work) and then to install\nthe Stoner package via:\n\n.. code-block:: sh\n\n conda install -c phygbu Stoner\n\nIf you are not using Anaconda python, then pip should also work:\n\n.. code-block:: sh\n\n pip install Stoner\n\nThis will install the Stoner package and any missing dependencies into your current Python environment. Since the package is under fairly\nconstant updates, you might want to follow the development with git. The source code, along with example scripts\nand some sample data files can be obtained from the github repository: https://github.com/stonerlab/Stoner-PythonCode\n\nThe codebase is compatible with Python 2.7 and Python 3.5+, at present we still develop primarily in Python 3.6 and 3.7 but test with\n2.7 as well. *NB* Python 3.7 is only supported in version 0.9x onwards and is known to not work with version 0.8.x.\n\nOverview\n========\nThe main part of the **Stoner** package provides two basic top-level classes that describe an individual file of experimental data and a\nlist (such as a directory tree on disc) of many experimental files. For our research, a typical single experimental data file\nis essentially a single 2D table of floating point numbers with associated metadata, usually saved in some\nASCII text format. This seems to cover most experiments in the physical sciences, but it you need a more complex\nformat with more dimensions of data, we suggest you look elsewhere.\n\nData and Friends\n----------------\n\n**Stoner.Data** is the core class for representing individual experimental data sets.\nIt is actually composed of several mixin classes that provide different functionality, with methods\nto examine and manipulate data, manage metadata, load and save data files, plot results and carry out various analysis tasks.\nIt has a large number of sub classes - most of these are in Stoner.formats and are used to handle the loading of specific\nfile formats.\n\nDataFolder\n----------\n\n**Stoner.Folders.DataFolder** is a class for assisting with the work of processing lots of files in a common directory\nstructure. It provides methods to list. filter and group data according to filename patterns or metadata and then to execute\na function on each file or group of files. A key feature of DataFolder is its ability to work with the collated metadata from\nthe individual files that are held in the DataFolder. In combination with its ability to walk through a complete heirarchy of groups of\n**Data** objects, the handling of the common metadata provides powerful tools for quickly writing data reduction scripts.\n\nThe **Stoner.HDF5** module provides some experimental classes to manipulate *DataFile* and *DataFolder* objects within HDF5\nformat files. These are not a way to handle arbitary HDF5 files - the format is much to complex and flexible to make that\nan easy task, rather it is a way to work with large numbers of experimental sets using just a single file which may be less\nbrutal to your computer's OS than having directory trees with millions of individual files. The module also provides some classes to\nsupport loading some other HDF5 flavoured files into a **DataFile**.\n\nThe **Stoner.Zip** module provides a similar set of classes to **Stoner.HDF5** but working with the ubiquitous zip compressed file format.\n\nImage Subpackage\n----------------\n\nThe **Stoner.Image** package is a new feature of recent versions of the package and provides dedicated classes for working with image data,\nand in particular for analysing Kerr Microscope image files. It provides an **ImageFile** class that is functionally similar to **DataFile**\nexcept that the numerical data is understood to represent image data and additional methods are incorporated to facilitate processing. The **ImageFolder**\nand **ImageStack** classes provide similar functionality to **DataFolder** but with additional methods specific to handling collections of images. **ImageStack**\nuses a 3D numpy array as it's primary image store which permits faster access (at the expense of a larger memory footprint) than the lazy loading ordered\ndictionary of **ImageFolder**\n\nResources\n==========\n\nIncluded in the `github repository`_ are a (small) collection of sample scripts\nfor carrying out various operations and some sample data files for testing the loading and processing of data. There is also a\n`User_Guide`_ as part of this documentation, along with a doc(``complete API reference ``)\n\nContact and Licensing\n=====================\n\nThe lead developer for this code is `Dr Gavin Burnell`_ , but many current and former members of the CM Physics group have\ncontributed code, ideas and bug testing.\n\nThe User Guide gives the current list of other contributors to the project.\n\nThis code and the sample data are all (C) The University of Leeds 2008-2017 unless otherwise indficated in the source file.\nThe contents of this package are licensed under the terms of the GNU Public License v3\n\nRecent Changes\n==============\n\nCurrent PyPi Version\n--------------------\n\nThe current version of the package on PyPi will be the stable branch until the development branch enters beta testing, when we start\nmaking beta packages available.\n\n\nDevelopment Version\n-------------------\n\nThe current development version is hosted in the master branch of the repository and will become version 0.10. There is no definitive list of\nfeatures at this time. Better integration with pandas and xarray are under consideration as is depricating some of the less optimal parts of the api.\n\nBuild Status\n~~~~~~~~~~~~\n\nVersion 0.7 onwards are tested using the Travis-CI services with unit test coverage assessed by Coveralls.\n\nVersion 0.9 is tested with Python 2.7, 3.5, 3.6,\n\nThe development version - which will be 0.10 will be tested with Python 3.6 and Python 3.7 only until Python 3.8 becomes stable.\n\n\nCiting the Stoner Package\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\nWe maintain a digital object identifier (doi) for this package (linked to on the status bar at the top of this readme) and\nencourage any users to cite this package via that doi.\n\nStable Versions\n---------------\n\nVersion 0.9 is the current stable version. This is the last version to support Python 2 and 3<3.6. Features of this release are:\n\n * Refactoring of the package into a more granual core, plot, formats, folders packages with submodules\n * Overhaul of the documentation and user guide\n * Dropping support for the older Stoner.Image.stack.ImageStack class\n * Droppping support for matplotlib<2.0\n * Support for Python 3.7\n * Unit tests now > 80% coverage across the package.\n\nOnline documentation for all versions can be found on the ReadTheDocs pages `online documentation`_\n\nVersion 0.8 is the previous stable release. The main new features were:\n\n * Reworking of the ImageArray, ImageFile and ImageFolder with many updates and new features.\n * New mixin based ImageStack2 that can manipulate a large number of images in a 3D numpy array\n * Continued re-factoring of DataFolder using the mixin approach\n * Further increases to unit-test coverage, bug fixes and refactoring of some parts of the code.\n * _setas objects implement a more complete MutableMapping interface and also support +/- operators.\n * conda packages now being prepared as the preferred package format\n\n0.8.2 was the final release of the 0.8.0 branch\n\nThe old stable version is 0.7.2. Features of 0.7.2 include\n\n * Replace older AnalyseFile and PlotFile with mixin based versions AnalysisMixin and PlotMixin\n * Addition of Stoner.Image package to handle image analysis\n * Refactor DataFolder to use Mixin classes\n * DataFolder now defaults to using Stoner.Core.Data\n * DataFolder has an options to skip iterating over empty Data files\n * Further improvements to Stoner.Core.DataFile.setas handline.\n\nNo further relases will be made to 0.7.x.\n\n0.6, 0.7 should work on Python 2.7 and 3.5\n0.8 is also tested on Python 3.6\n\n.. _online documentation: http://stoner-pythoncode.readthedocs.io/en/latest/\n.. _github repository: http://www.github.com/stonerlab/Stoner-PythonCode/\n.. _Dr Gavin Burnell: http://www.stoner.leeds.ac.uk/people/gb\n.. _User_Guide: http://stoner-pythoncode.readthedocs.io/en/latest/UserGuide/ugindex.html\n\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/Stoner/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/~gb119/Stoner-PythonCode", "keywords": "Data-Analysis Physics", "license": "GPLv3", "maintainer": "", "maintainer_email": "", "name": "Stoner", "package_url": "https://pypi.org/project/Stoner/", "platform": "", "project_url": "https://pypi.org/project/Stoner/", "project_urls": { "Homepage": "http://github.com/~gb119/Stoner-PythonCode" }, "release_url": "https://pypi.org/project/Stoner/0.9.0/", "requires_dist": [ "cycler (>=0.10.0)", "filemagic (>=1.6)", "h5py (>=2.7.0)", "llvmlite (>=0.18.0)", "lmfit (>=0.9.7)", "matplotlib (>=2.0)", "npTDMS (>=0.11)", "numba (>=0.33.0)", "numexpr (>=2.6)", "numpy (>=1.13)", "Pillow (>=4.0)", "scikit-image (>=0.13.0)", "scipy (>=1.0.0)", "seaborn (>=0.7)", "tabulate (>=0.8)", "imreg-dft (>=2.0)", "multiprocess (>=0.70)", "dill (>=0.2.8)", "tabulate (>=0.7.5) ; extra == 'prettyprint'", "nptdms ; extra == 'tdms'", "cv2 ; extra == 'cv2'", "imreg-dft ; extra == 'image_alignment'", "image-registration ; extra == 'image_alignment'", "magic ; extra == 'mimetype_detection'", "numba ; extra == 'numba'" ], "requires_python": "", "summary": "Library to help write data analysis tools for experimental condensed matter physics.", "version": "0.9.0" }, "last_serial": 5935695, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "2aad85e5ba31552aeca5bcaa7c1ebe51", "sha256": "b635a1909990387a1206c8bc054f83a6261d61efb5252a6cadc5b94bafab58af" }, "downloads": -1, "filename": "Stoner-0.1.0-py2.7.egg", "has_sig": false, "md5_digest": "2aad85e5ba31552aeca5bcaa7c1ebe51", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 202652, "upload_time": "2013-12-20T22:23:17", "url": "https://files.pythonhosted.org/packages/67/0e/f67dae204323e1f2730c8b95c9e07da32e3d4d62568d8ebf50a5e7b4966f/Stoner-0.1.0-py2.7.egg" } ], "0.1.14-20140926": [ { "comment_text": "", "digests": { "md5": "3a4878d867abc2d68d02cd12847fcc5f", "sha256": "4bb25d462bfdf86de1e7e55fbd8aecceecd217235a5711fa33113ddada81027f" }, "downloads": -1, "filename": "Stoner-0.1.14_20140926-py2.7.egg", "has_sig": false, "md5_digest": "3a4878d867abc2d68d02cd12847fcc5f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 269995, "upload_time": "2014-09-26T09:57:23", "url": "https://files.pythonhosted.org/packages/c3/83/3a10e743d3909bbf0cd87cfde262d4042af20178d9cca46cf8784098b5da/Stoner-0.1.14_20140926-py2.7.egg" } ], "0.1.8-20140206": [ { "comment_text": "", "digests": { "md5": "5a012024e89226a7983935933a0d8039", "sha256": "defd9b27e9ded958cebca5205d5715ec28e64033b564a204308e4f594477740f" }, "downloads": -1, "filename": "Stoner-0.1.8_20140206-py2.7.egg", "has_sig": false, "md5_digest": "5a012024e89226a7983935933a0d8039", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 214532, "upload_time": "2014-02-06T11:15:15", "url": "https://files.pythonhosted.org/packages/f7/9c/2fba7051e7fadd9c5627140fd94824193a00bddde4b0c957c2a2b026c2af/Stoner-0.1.8_20140206-py2.7.egg" } ], "0.2.6-20141223": [ { "comment_text": "", "digests": { "md5": "d9eaf3134ccc1bc305c603ef754e542c", "sha256": "e8368de615c6028e5a542d6c00f38ffdd6d023b72064dafbf03a2d88fe32aab7" }, "downloads": -1, "filename": "Stoner-0.2.6_20141223-py2.7.egg", "has_sig": false, "md5_digest": "d9eaf3134ccc1bc305c603ef754e542c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 290884, "upload_time": "2014-12-23T16:16:08", "url": "https://files.pythonhosted.org/packages/7c/64/d68dd6f652b0f198bd9d47b0b01f48f404a02bd219caca47faf99ec0894e/Stoner-0.2.6_20141223-py2.7.egg" } ], "0.3.0-20150303": [ { "comment_text": "", "digests": { "md5": "7446dffb4a631d20e8bff6dec435b9b7", "sha256": "8c1793f417f079d2309e2376589adac0f28b3f5651dcb488ce8609e800678adb" }, "downloads": -1, "filename": "Stoner-0.3.0_20150303-py2.7.egg", "has_sig": false, "md5_digest": "7446dffb4a631d20e8bff6dec435b9b7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 297793, "upload_time": "2015-03-03T16:28:13", "url": "https://files.pythonhosted.org/packages/c8/8a/6216bb902a4621633c4da73714579209e7bb83e52d6f0b26c818cc2bc8f5/Stoner-0.3.0_20150303-py2.7.egg" } ], "0.4.4.post20150407": [ { "comment_text": "", "digests": { "md5": "23eec5e1a9163b2f06eaf103a87e26d4", "sha256": "853371878ffc7442d9d819f8e37e5cbf39bcc977678328d401e353f9de8bfbc2" }, "downloads": -1, "filename": "Stoner-0.4.4.post20150407-py2.7.egg", "has_sig": false, "md5_digest": "23eec5e1a9163b2f06eaf103a87e26d4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 325624, "upload_time": "2015-04-07T20:46:03", "url": "https://files.pythonhosted.org/packages/82/78/bb553145afc9de999749cc4e1e175a91ddfcdde2d9572643620f7b4933b0/Stoner-0.4.4.post20150407-py2.7.egg" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "576f903559233a02da77ddf2fa2a7c73", "sha256": "a739f741f7896b861659f864b740fa6a6ae533063cdedd342c172b6132600490" }, "downloads": -1, "filename": "Stoner-0.5.0-py2.7.egg", "has_sig": false, "md5_digest": "576f903559233a02da77ddf2fa2a7c73", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 346670, "upload_time": "2015-07-07T11:51:30", "url": "https://files.pythonhosted.org/packages/22/9e/4451f64188e2701390f95a4ed6d0928ab9ba29ce9445b14dcd4f6a87b2c4/Stoner-0.5.0-py2.7.egg" } ], "0.5.0rc4": [ { "comment_text": "", "digests": { "md5": "79fb13ab3bfa335b516f2ff7f30dc79f", "sha256": "6f960e0bb7d859b6c380134ef56c2c42fcefd9ee70913fc33e4bd0b076cdac89" }, "downloads": -1, "filename": "Stoner-0.5.0rc4-py2.7.egg", "has_sig": false, "md5_digest": "79fb13ab3bfa335b516f2ff7f30dc79f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 344448, "upload_time": "2015-06-24T20:30:29", "url": "https://files.pythonhosted.org/packages/f0/a5/08ea505f3ed2deafad1badce9e7f6f1b3fe3759b7a6f911ae655f678d48a/Stoner-0.5.0rc4-py2.7.egg" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "0f5d2bfe319e87f93482c141a25bf299", "sha256": "7ec73227723223d2c2415483d54a92d154d8743c631f794879ef4cf1eb8f082e" }, "downloads": -1, "filename": "Stoner-0.5.1-py2.7.egg", "has_sig": false, "md5_digest": "0f5d2bfe319e87f93482c141a25bf299", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 287505, "upload_time": "2015-11-11T00:29:44", "url": "https://files.pythonhosted.org/packages/04/95/7495377451cd663f6217c6afaf5e5ec1c6599d7463b496b805f1b5fd8189/Stoner-0.5.1-py2.7.egg" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "42a5733b8d77df306bd3bc24527b525f", "sha256": "38195e4ddda4e96f6a8a3db5cab422f383ea2080ffc89ceca62f513f2e6b050b" }, "downloads": -1, "filename": "Stoner-0.6.0-py2.7.egg", "has_sig": false, "md5_digest": "42a5733b8d77df306bd3bc24527b525f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 383496, "upload_time": "2016-06-06T09:30:42", "url": "https://files.pythonhosted.org/packages/ba/1b/62708c7671f0654f89309ae58f02f64ffdae87abcd4f85f3a5a79cbf6180/Stoner-0.6.0-py2.7.egg" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "bb2ac522b681968e622289947b80f7f9", "sha256": "e244de80451ee4c348dcb6fa2682742ed918e40b69f5efd97c334bd7825baa2b" }, "downloads": -1, "filename": "Stoner-0.6.1-py2.7.egg", "has_sig": false, "md5_digest": "bb2ac522b681968e622289947b80f7f9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 383628, "upload_time": "2016-07-18T15:47:14", "url": "https://files.pythonhosted.org/packages/6a/38/d828bc1598f04155cbe0e83a306e45e6dcbf585ae01b5ad8f363015b41f9/Stoner-0.6.1-py2.7.egg" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "0bb9ca42f17e877ee941bcd41df43b3f", "sha256": "ea5b3df010838026fc451209eefa59e04a1f76ec4f1af6fb88c31a9b5ed5d66e" }, "downloads": -1, "filename": "Stoner-0.6.2-py2.7.egg", "has_sig": false, "md5_digest": "0bb9ca42f17e877ee941bcd41df43b3f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 324510, "upload_time": "2016-08-02T19:36:17", "url": "https://files.pythonhosted.org/packages/ce/39/ea694f6e36ff4787ce18dde9608442f08178cff9a9750734e96a9703110d/Stoner-0.6.2-py2.7.egg" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "5330e7c30d574c00fdfc989be20cbf62", "sha256": "46d1b448983a3b387e4ae1a13486e10b5b8a92cbe693fda6a1fc6dfdc82fc02f" }, "downloads": -1, "filename": "Stoner-0.6.4-py2.7.egg", "has_sig": false, "md5_digest": "5330e7c30d574c00fdfc989be20cbf62", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 324443, "upload_time": "2016-10-17T22:09:18", "url": "https://files.pythonhosted.org/packages/b0/2d/19d55e3f919f9661ed75f5983fd7be0cdfb6470ae77393f39a60b0d029c9/Stoner-0.6.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "67438484f3779c063750a82677c87306", "sha256": "d83a4c33f435de60d99c26e17cf6af758c1aa32ca70a93f0d7b8eedb19368216" }, "downloads": -1, "filename": "Stoner-0.6.4-py3.5.egg", "has_sig": false, "md5_digest": "67438484f3779c063750a82677c87306", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 328150, "upload_time": "2016-10-17T22:08:48", "url": "https://files.pythonhosted.org/packages/91/e8/7c4c267df014d9f534e92a85ec3d2aeee687a3c1edaba1891ea42f32d4a6/Stoner-0.6.4-py3.5.egg" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "aeaf450ab3cadd1d2356dff42455fa17", "sha256": "53f1127b9825e20e372dfabe88182da969d7276d9536ee25c6a8a3b40acd8cf0" }, "downloads": -1, "filename": "Stoner-0.6.5-py2.7.egg", "has_sig": false, "md5_digest": "aeaf450ab3cadd1d2356dff42455fa17", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 385599, "upload_time": "2016-10-26T16:29:58", "url": "https://files.pythonhosted.org/packages/c8/0e/3b25c3e4aa2735e4cf522ddb0cd1b2e8ec2d355ae85abc57b310b17a45fd/Stoner-0.6.5-py2.7.egg" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "753543b6746468af54824931261651ee", "sha256": "bdb59de00cea2e6dc1f8d00f2f3e3232f4f0dcfc64cd7a5aceaa9a6bc0e25dcc" }, "downloads": -1, "filename": "Stoner-0.6.6-py2.7.egg", "has_sig": false, "md5_digest": "753543b6746468af54824931261651ee", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 326270, "upload_time": "2016-11-24T20:35:19", "url": "https://files.pythonhosted.org/packages/b8/52/f8242ec98af85d8835f0ac8dd0005a2194449b1cbbcbb058948e7bd58528/Stoner-0.6.6-py2.7.egg" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "f3cecc78ec492bc7baf9dd953c641cdb", "sha256": "3a72e13284c3aa1d368c667a1aa338f5cc9bf93822d08e073c8fdc503fce296e" }, "downloads": -1, "filename": "Stoner-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3cecc78ec492bc7baf9dd953c641cdb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 214623, "upload_time": "2017-05-15T19:28:23", "url": "https://files.pythonhosted.org/packages/16/e5/e1db771d911230fb882dde043538499b08dafa9347e2b4183683b49b9a1a/Stoner-0.7.0-py2.py3-none-any.whl" } ], "0.7.0rc1": [ { "comment_text": "", "digests": { "md5": "a8baf23f4d6b91b6406a797a4218d717", "sha256": "3092feb83148bcd3c528649193335c7ba2f894e6f8f69690e3843290c0410f44" }, "downloads": -1, "filename": "Stoner-0.7.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a8baf23f4d6b91b6406a797a4218d717", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 208724, "upload_time": "2017-04-22T20:00:03", "url": "https://files.pythonhosted.org/packages/ae/c9/fa9ed337a5d95222b5c5ba7e4a2193117a3f348e5b89b7013c831e6e3e1d/Stoner-0.7.0rc1-py2.py3-none-any.whl" } ], "0.7.0rc2": [ { "comment_text": "", "digests": { "md5": "ad0540aff0a25affee32efbb86e3df29", "sha256": "6f66113601958d79d5848e54ac265fb77a037249bf659697de26670427336ea0" }, "downloads": -1, "filename": "Stoner-0.7.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ad0540aff0a25affee32efbb86e3df29", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 211959, "upload_time": "2017-04-29T22:03:33", "url": "https://files.pythonhosted.org/packages/62/a2/ae8783883313e9b044968c03f94f9737c8a38d0e505d117a35d068587f87/Stoner-0.7.0rc2-py2.py3-none-any.whl" } ], "0.7.0rc3": [ { "comment_text": "", "digests": { "md5": "192fc6687c6ed438027a57d926ed1881", "sha256": "ea94b96a7e877700e87ab285569f65e0e8f3c7c3dc17864777b80030ac6be32d" }, "downloads": -1, "filename": "Stoner-0.7.0rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "192fc6687c6ed438027a57d926ed1881", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 215360, "upload_time": "2017-05-15T08:45:01", "url": "https://files.pythonhosted.org/packages/3a/b0/487c0d5227585db77129670a9d69c7063a129276964c8c69572ca3f1509e/Stoner-0.7.0rc3-py2.py3-none-any.whl" } ], "0.7.0rc4": [ { "comment_text": "", "digests": { "md5": "cf728b33c45cebd52afd16e247826c25", "sha256": "3e90ef9a09adcec21c13d9959ef5b34fd1453f3a5003f843531ec9595b267838" }, "downloads": -1, "filename": "Stoner-0.7.0rc4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cf728b33c45cebd52afd16e247826c25", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 214408, "upload_time": "2017-05-15T18:47:35", "url": "https://files.pythonhosted.org/packages/f0/a7/a06e9892d3e438699c09accc4e97b744746326062fa4a72e9f7dfa8e0871/Stoner-0.7.0rc4-py2.py3-none-any.whl" } ], "0.7.0rc5": [ { "comment_text": "", "digests": { "md5": "c8875d57ae6c02aa8d9269d1e60baa95", "sha256": "ab247fc8369ced5034d5ee13b331a0431f30955f07ade6feef81168b86c346e8" }, "downloads": -1, "filename": "Stoner-0.7.0rc5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c8875d57ae6c02aa8d9269d1e60baa95", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 214678, "upload_time": "2017-05-15T19:05:48", "url": "https://files.pythonhosted.org/packages/e3/89/d8a11ec2978c88f6d6a43f1095de14bcd3730a05282847ed552aeb4f0bcc/Stoner-0.7.0rc5-py2.py3-none-any.whl" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "c5783da0cd7f76595cbbb3e9fc406dc1", "sha256": "a5b898dc8e6dddbabe109e87eb6b6533313eddea7c5b2b5e3cb45b180d5a84fc" }, "downloads": -1, "filename": "Stoner-0.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c5783da0cd7f76595cbbb3e9fc406dc1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 215822, "upload_time": "2017-06-20T13:08:41", "url": "https://files.pythonhosted.org/packages/22/c2/a778bb6866c41c9b2269fb8439816820cc4f07abf7037073fd3a9629c434/Stoner-0.7.1-py2.py3-none-any.whl" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "a8c0ce538a50c296306e83ec87ae12df", "sha256": "0a7aa34f70098c8f31006aea404b66c561cf02aff8798104b20f10a6e7827a2f" }, "downloads": -1, "filename": "Stoner-0.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a8c0ce538a50c296306e83ec87ae12df", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 215193, "upload_time": "2017-11-28T20:09:15", "url": "https://files.pythonhosted.org/packages/d6/7d/d0ccae222427589d80d3c65950227dd9f4ecefe99b8864d60ba696488219/Stoner-0.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4eb16a6bd499b959745a3a18130f7bbe", "sha256": "772b9944df0086225dbb911b29741ba8a0a47952abed4a985e793b4ba4aee103" }, "downloads": -1, "filename": "Stoner-0.7.2.tar.gz", "has_sig": false, "md5_digest": "4eb16a6bd499b959745a3a18130f7bbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 193131, "upload_time": "2018-01-30T22:45:51", "url": "https://files.pythonhosted.org/packages/24/4d/ca0723490ef21890f990378641a6b3d5721ad9f4d05bf063e4af687b227e/Stoner-0.7.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "56999e6461e789a24658ed9b377ef1c9", "sha256": "8482404dd330b13cd57b48afe06fa578e7b35aac16027563c3253bfb1327879d" }, "downloads": -1, "filename": "Stoner-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "56999e6461e789a24658ed9b377ef1c9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 255980, "upload_time": "2018-06-21T18:41:06", "url": "https://files.pythonhosted.org/packages/3f/12/d81cb29f5365f21bef07e2065ed0b3e4428a470b054762a3333d1889d73c/Stoner-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "72fba9efb1838df51c140c24126d60fd", "sha256": "a59f063f3fe9d15a3fad623dafe1a1b178b7912ea8f153aa05329545a38bcd2f" }, "downloads": -1, "filename": "Stoner-0.8.0.tar.gz", "has_sig": false, "md5_digest": "72fba9efb1838df51c140c24126d60fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 237850, "upload_time": "2018-06-21T18:41:08", "url": "https://files.pythonhosted.org/packages/84/27/1fdadb0e1cf7c999c5f4f9e8ce29010d43cc4b02c9b48a22f60f420430a5/Stoner-0.8.0.tar.gz" } ], "0.8.0rc1": [ { "comment_text": "", "digests": { "md5": "077e88a01f0589aebf8a94f057d3525b", "sha256": "468f0d979193bc90c580b5bb028a4aa6a45e95bdbfa60551e298a5c61e660ec8" }, "downloads": -1, "filename": "Stoner-0.8.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "077e88a01f0589aebf8a94f057d3525b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 256553, "upload_time": "2018-04-18T19:52:38", "url": "https://files.pythonhosted.org/packages/5a/ba/e6b5521da77a0e0c3e34028f61c07e645b1af57917ea222bd5fadffbf155/Stoner-0.8.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "679268a4451edf9b00cd408f2188ad82", "sha256": "075e64408fa5322fd2f6fbac2995a49c8328278eb40e02743cf6ca57a702ed28" }, "downloads": -1, "filename": "Stoner-0.8.0rc1.tar.gz", "has_sig": false, "md5_digest": "679268a4451edf9b00cd408f2188ad82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 232711, "upload_time": "2018-04-18T19:52:40", "url": "https://files.pythonhosted.org/packages/e0/7d/e6e2741f7b487b7fadc2ebfc8ed1aea1d1a3011afabe55a0772359f6d3ea/Stoner-0.8.0rc1.tar.gz" } ], "0.8.0rc7": [ { "comment_text": "", "digests": { "md5": "b2784ca8fe75d291785e81b601621f87", "sha256": "1a8396a048d4e07e3b0612edbf0c862db64b770542136c9f5fcbbcf99cefa9ce" }, "downloads": -1, "filename": "Stoner-0.8.0rc7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2784ca8fe75d291785e81b601621f87", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 253371, "upload_time": "2018-06-06T22:36:53", "url": "https://files.pythonhosted.org/packages/b7/03/3ab913ebe18c9468bd8635144252e09e56011271230e901c05462760ab57/Stoner-0.8.0rc7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bf5aec8f7e702eb77189f249114aaa8e", "sha256": "ec4829f8628ee3f5c8a3ecac9ebe9ae8c9ca753c1095325bc0033026ab380d7c" }, "downloads": -1, "filename": "Stoner-0.8.0rc7.tar.gz", "has_sig": false, "md5_digest": "bf5aec8f7e702eb77189f249114aaa8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 235174, "upload_time": "2018-06-06T22:36:55", "url": "https://files.pythonhosted.org/packages/77/07/1afb8763d3185da91351a59fe0e2d813774cb95b2d38f4637b8d263988df/Stoner-0.8.0rc7.tar.gz" } ], "0.8.0rc8": [ { "comment_text": "", "digests": { "md5": "feabf72f0deb68faa4247b3077999af6", "sha256": "ace2206b7335b0ae88e42bad8dfb96e3ce70f1859294d0fd35dff571c111dc3a" }, "downloads": -1, "filename": "Stoner-0.8.0rc8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "feabf72f0deb68faa4247b3077999af6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 254352, "upload_time": "2018-06-10T18:49:54", "url": "https://files.pythonhosted.org/packages/f4/1d/d35c217d362c0b44f225bbd45ab4ed8739a6d1fa0b15cbbc15072b66b7fe/Stoner-0.8.0rc8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4850f38e4af80cd05a1946029939b87", "sha256": "352f00878195bf8d9b74db67f05801f7b8e2b991e46468eddd5ec1ab91227708" }, "downloads": -1, "filename": "Stoner-0.8.0rc8.tar.gz", "has_sig": false, "md5_digest": "d4850f38e4af80cd05a1946029939b87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 236144, "upload_time": "2018-06-10T18:49:56", "url": "https://files.pythonhosted.org/packages/08/d4/db23b2b25dbfbd13b74adbd7a07ca3eb54f1fb13d4534a531cebc6e72ad8/Stoner-0.8.0rc8.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "950b75605b4ce0b69a8815deb04d012f", "sha256": "2a21f5237368da0d7babfc5f84153daef6f8b7dfd017b6506096b4da1113c2ad" }, "downloads": -1, "filename": "Stoner-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "950b75605b4ce0b69a8815deb04d012f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 256977, "upload_time": "2018-07-03T21:04:27", "url": "https://files.pythonhosted.org/packages/66/e2/1687e3c20dd7bc6339cb8fefd3e29e88d6159729c1b9d4f6f5fd193e08c1/Stoner-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fb260093da892975f0c57da32dc8c295", "sha256": "add81af9c8ba0164a83aa05a8693aa088632e2f4d96db219bd31bbca3edc5080" }, "downloads": -1, "filename": "Stoner-0.8.1.tar.gz", "has_sig": false, "md5_digest": "fb260093da892975f0c57da32dc8c295", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 242915, "upload_time": "2018-07-03T21:04:30", "url": "https://files.pythonhosted.org/packages/ec/f8/635b16c3f5c07c9f765012be6721dca96709c1bf50f13b470630c1b6e1e4/Stoner-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "031e054c3e677f8203b99e5939b01b91", "sha256": "c64becde8cd7a6cdd17bf1f9ee484a1b1123667a1cb8a1f73d3db5cdb480bea2" }, "downloads": -1, "filename": "Stoner-0.8.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "031e054c3e677f8203b99e5939b01b91", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 257842, "upload_time": "2018-07-31T19:12:11", "url": "https://files.pythonhosted.org/packages/d1/98/cf5cee0b5dbde573ab6dde71069ee7f9e3a03c994d6b40c4a75c7e5766d4/Stoner-0.8.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9d405d403df94a5fa665c9abc7f6fd8f", "sha256": "cdfb9e16c84176287a14c58c37b9632008c2d371071c036bf488c4a2dbf79087" }, "downloads": -1, "filename": "Stoner-0.8.2.tar.gz", "has_sig": false, "md5_digest": "9d405d403df94a5fa665c9abc7f6fd8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 243791, "upload_time": "2018-07-31T19:12:13", "url": "https://files.pythonhosted.org/packages/43/43/b5c065d441ba5ac6f7d444e3b1f36dbc8e81afafd228004c15cda5be53e7/Stoner-0.8.2.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "c1aba42d4e4e20b5961a9ed3125b0434", "sha256": "a1d8f8ad2e24b4edd5675a602fe28a2609edaf9c0738354a34d18a4fe3ec08e7" }, "downloads": -1, "filename": "Stoner-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c1aba42d4e4e20b5961a9ed3125b0434", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 322066, "upload_time": "2019-10-06T19:08:43", "url": "https://files.pythonhosted.org/packages/3b/47/e810d395bb27142c333ffa01e1f63c5b90c588bc9fca3008860b1f7d151d/Stoner-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0cd342fadad19785d48223458db1809c", "sha256": "f7beed293cda82035bf9b67a6bfce4deed7e2bfc3a71e3963522619488d05829" }, "downloads": -1, "filename": "Stoner-0.9.0.tar.gz", "has_sig": false, "md5_digest": "0cd342fadad19785d48223458db1809c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 289810, "upload_time": "2019-10-06T19:08:46", "url": "https://files.pythonhosted.org/packages/2c/aa/bdd7727395b5afc7c6317c55d327c2bbb63d41f9b084dd2ce6bd0a85bc81/Stoner-0.9.0.tar.gz" } ], "0.9.0b2": [ { "comment_text": "", "digests": { "md5": "4ff4b06d8b17bc3cc977a8b736c475d9", "sha256": "fbf306f57faee69dfd8556ffab149bc4e52e5e25eb4841ac0108a543d5d8370f" }, "downloads": -1, "filename": "Stoner-0.9.0b2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4ff4b06d8b17bc3cc977a8b736c475d9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 294796, "upload_time": "2019-04-23T16:29:42", "url": "https://files.pythonhosted.org/packages/ce/3e/71ac88c426e1c56a4dc1e1055e11da48f10c5c89d156fa0a37995a1c0820/Stoner-0.9.0b2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "95a73868ba29576dd75a09a28c22331c", "sha256": "9defba8064195d6a7a137b5fd248b374cacdc80f658ebeaf7a32fbda3b2b4dff" }, "downloads": -1, "filename": "Stoner-0.9.0b2.tar.gz", "has_sig": false, "md5_digest": "95a73868ba29576dd75a09a28c22331c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 264083, "upload_time": "2019-04-23T16:29:44", "url": "https://files.pythonhosted.org/packages/63/5b/26a3bb88a97d00a70e8bb724eed694f526c3983b93561ef7b7b4a8622b02/Stoner-0.9.0b2.tar.gz" } ], "0.9.0b3": [ { "comment_text": "", "digests": { "md5": "17b08ece1ec63a9bc28ab38110a8b75b", "sha256": "1eeb2041928ca581818e4fe3baf3876e233f14ec775a038a1dd4a289e3b681bb" }, "downloads": -1, "filename": "Stoner-0.9.0b3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "17b08ece1ec63a9bc28ab38110a8b75b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 300742, "upload_time": "2019-05-29T19:47:33", "url": "https://files.pythonhosted.org/packages/a0/f4/791166497c0f6b7006ed40a9bfe66c680580ac0f1402b8652400deece1e4/Stoner-0.9.0b3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ffd0e8ee66c7263a5712f6f0a2f4107", "sha256": "76f6428ace6fb57e45c0da6d49ff27da06fdff6710e686bcb8bddee29f95578b" }, "downloads": -1, "filename": "Stoner-0.9.0b3.tar.gz", "has_sig": false, "md5_digest": "2ffd0e8ee66c7263a5712f6f0a2f4107", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 266034, "upload_time": "2019-05-29T19:47:36", "url": "https://files.pythonhosted.org/packages/68/a4/e4bdd7ecd7be186a6436f1b11bcb2871aca0267f1cf460aa48e6a18033bd/Stoner-0.9.0b3.tar.gz" } ], "0.9.0b5": [ { "comment_text": "", "digests": { "md5": "12fb4de6fae66e66e81008aaeb28ee9a", "sha256": "eccf948efa12db41ffaa032031c6fca5ef48a9c49a9766f3f990b6e25e69efac" }, "downloads": -1, "filename": "Stoner-0.9.0b5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "12fb4de6fae66e66e81008aaeb28ee9a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 302334, "upload_time": "2019-06-09T14:49:35", "url": "https://files.pythonhosted.org/packages/0f/6f/7e382017a0fb5467fdc9d6692077e3304572882d73306f2d3b35a067e5f3/Stoner-0.9.0b5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "13fc0ffc82bd5f13e6769913f61506a5", "sha256": "f8f19071462f638d1bff2e7034f0688fbf21fb62218520ae1a69e07e025b425d" }, "downloads": -1, "filename": "Stoner-0.9.0b5.tar.gz", "has_sig": false, "md5_digest": "13fc0ffc82bd5f13e6769913f61506a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 267664, "upload_time": "2019-06-09T14:49:38", "url": "https://files.pythonhosted.org/packages/18/d1/4994e7c0f8eccb11a645321405c1e0007c0e56cb9d9cc8af29a7a72009aa/Stoner-0.9.0b5.tar.gz" } ], "0.9.0rc2": [ { "comment_text": "", "digests": { "md5": "c52c5275541eff11a9181696b6d033c4", "sha256": "c96affc9ed6a91ee8b14173d1b133bb810268403f09f3c358fcb987e04e04cd7" }, "downloads": -1, "filename": "Stoner-0.9.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c52c5275541eff11a9181696b6d033c4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 307487, "upload_time": "2019-08-12T10:12:36", "url": "https://files.pythonhosted.org/packages/2a/56/f882596b92b0187d4847330ae9f4f8dfec4645617b5b231f433fc0f42897/Stoner-0.9.0rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d38e67ed7c1999e041dd105600c6202d", "sha256": "49050a04f4dcd0c79db8d7d529be725c939fe41e7bc1cd5db1762e13630bccb3" }, "downloads": -1, "filename": "Stoner-0.9.0rc2.tar.gz", "has_sig": false, "md5_digest": "d38e67ed7c1999e041dd105600c6202d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 277114, "upload_time": "2019-08-12T10:12:38", "url": "https://files.pythonhosted.org/packages/6e/35/654f3210810cf4268a36b4b5be4a1fd99ef3733f0a224a6dca766ba27077/Stoner-0.9.0rc2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c1aba42d4e4e20b5961a9ed3125b0434", "sha256": "a1d8f8ad2e24b4edd5675a602fe28a2609edaf9c0738354a34d18a4fe3ec08e7" }, "downloads": -1, "filename": "Stoner-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c1aba42d4e4e20b5961a9ed3125b0434", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 322066, "upload_time": "2019-10-06T19:08:43", "url": "https://files.pythonhosted.org/packages/3b/47/e810d395bb27142c333ffa01e1f63c5b90c588bc9fca3008860b1f7d151d/Stoner-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0cd342fadad19785d48223458db1809c", "sha256": "f7beed293cda82035bf9b67a6bfce4deed7e2bfc3a71e3963522619488d05829" }, "downloads": -1, "filename": "Stoner-0.9.0.tar.gz", "has_sig": false, "md5_digest": "0cd342fadad19785d48223458db1809c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 289810, "upload_time": "2019-10-06T19:08:46", "url": "https://files.pythonhosted.org/packages/2c/aa/bdd7727395b5afc7c6317c55d327c2bbb63d41f9b084dd2ce6bd0a85bc81/Stoner-0.9.0.tar.gz" } ] }