Stoner


NameStoner JSON
Version 0.10.9 PyPI version JSON
download
home_pagehttp://github.com/~gb119/Stoner-PythonCode
SummaryLibrary to help write data analysis tools for experimental condensed matter physics.
upload_time2023-12-09 20:39:52
maintainer
docs_urlhttps://pythonhosted.org/Stoner/
authorGavin Burnell
requires_python>3.7
licenseGPLv3
keywords data-analysis physics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://github.com/stonerlab/Stoner-PythonCode/actions/workflows/run-tests-action.yaml/badge.svg?branch=stable
    :target: https://github.com/stonerlab/Stoner-PythonCode/actions/workflows/run-tests-action.yaml

.. image:: https://coveralls.io/repos/github/stonerlab/Stoner-PythonCode/badge.svg?branch=master
    :target: https://coveralls.io/github/stonerlab/Stoner-PythonCode?branch=master

.. image:: https://app.codacy.com/project/badge/Grade/a9069a1567114a22b25d63fd4c50b228
    :target: https://www.codacy.com/gh/stonerlab/Stoner-PythonCode/dashboard?utm_source=github.com&utm_medium=referral&utm_content=stonerlab/Stoner-PythonCode&utm_campaign=Badge_Grade

.. image:: https://badge.fury.io/py/Stoner.svg
   :target: https://badge.fury.io/py/Stoner

.. image:: https://anaconda.org/phygbu/stoner/badges/version.svg
   :target: https://anaconda.org/phygbu/stoner

.. image:: https://readthedocs.org/projects/stoner-pythoncode/badge/?version=latest
   :target: http://stoner-pythoncode.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status

.. image:: https://zenodo.org/badge/10057055.svg
   :target: https://zenodo.org/badge/latestdoi/10057055


Introduction
============


The  *Stoner* Python package is a set of utility classes for writing data analysis code. It was written within
the Condensed Matter Physics group at the University of Leeds as a shared resource for quickly writing simple
programs to do things like fitting functions to data, extract curve parameters, churn through large numbers of
small text data files and work with certain types of scientific image files.

For a general introduction, users are referred to the Users Guide, which is part of the `online documentation`_ along with the
API Reference guide. The `github repository`_ also contains some example scripts.

Getting this Code
==================

.. image:: https://i.imgur.com/h4mWwM0.png
    :target: https://www.youtube.com/watch?v=uZ_yKs11W18
    :alt: Introduction and Installation Guide to Stoner Pythin Package
    :width: 320

The *Stoner* package requires h5py>=2.7.0, lmfit>=0.9.7, matplotlib>=2.0,numpy>=1.13, Pillow>=4.0,
scikit-image>=0.13.0 & scipy>=1.0.0 and also optional depends on  filemagic, npTDMS, imreg_dft and numba, fabio, hyperspy.

Ananconda Python (and probably other scientific Python distributions) include nearly all of the dependencies, and the remaining
dependencies are collected together in the **phygbu** repositry on anaconda cloud. The easiest way to install the Stoner package is,
therefore, to install the most recent Anaconda Python distribution.

Compatibility
--------------

Versions 0.9.x (stable branch) are compatible with Python 2.7, 3.5, 3.6 and 3.7. The latest 0.9.6 version is also compatible with Python 3.8
The current stable verstion (0.10, stable branch) is compatible with Python 3.6-3.9

Conda packages are prepared for the stable branch and when the development branch enters beta testing. Pip wheels are prepared for selected stable releases only.

Installation
------------

After installing the current Anaconda version, open a terminal (Mac/Linux) or Anaconda Prompt (Windows) an do:

.. code-block:: sh

    conda install -c phygbu Stoner

If you are not using Anaconda python, then pip should also work:

.. code-block:: sh

    pip install Stoner

This will install the Stoner package and any missing dependencies into your current Python environment. Since the package is under fairly
constant updates, you might want to follow the development with git. The source code, along with example scripts
and some sample data files can be obtained from the github repository: https://github.com/stonerlab/Stoner-PythonCode

Overview
========

The main part of the **Stoner** package provides four basic top-level classes that describe:
    - an individual file of experimental data (**Stoner.Data**),
    - an individual experimental image (**Stoner.ImageFile**),
    - a list (such as a directory tree on disc) of many experimental files (**Stoner.DataFolder**)
    - a list (such as a directory tree on disc) of many image files (**Stoner.ImageFolder**).

For our research, a typical single experimental data file is essentially a single 2D table of floating point
numbers with associated metadata, usually saved in some ASCII text format. This seems to cover most experiments
in the physical sciences, but it you need a more complex format with more dimensions of data, we suggest
you look elsewhere.

Increasingly we seem also to need process image files and so partnering the experimental measurement file classes,
we have a parallel set of classes for interacting with image data.

The general philosophy used in the package is to work with data by using methods that transform the data in place.
Additionally, many of the analysis methods pass a copy of the data as their return value, allowing a sequence of
operations to be chained together in one line.

This is a *data-centric* approach - we have some data and we do various operations on it to get to our result. In
contrasr, traditional functional programming thinks in terms of various functions into which you pass data.


Data and Friends
----------------

**Stoner.Data** is the core class for representing individual experimental data sets.
It is actually composed of several mixin classes that provide different functionality, with methods
to examine and manipulate data, manage metadata, load and save data files, plot results and carry out various analysis tasks.
It has a large number of sub classes - most of these are in Stoner.formats and are used to handle the loading of specific
file formats.

ImageFile
---------

**Stoner.ImageFile** is the top-level class for managing image data. It is the equivalent of **Stoner.Data** and maintains
metadta and comes with a number of methods to manipulate image data. The image data is stored internally as a masked numpy
array and where possible the masking is taken into account when carrying out image analysis tasks. Through some abuse of
the Python class system, functions in the scpy.ndimage and scikit-image modules are mapped into methods of the ImageFile
class allowing a very rich set of operations on the data sets. The default IO methods handle tiff and png images and can
store the metadata of the ImageFile within those file formats.

DataFolder
----------

**Stoner.DataFolder** is a class for assisting with the work of processing lots of files in a common directory
structure. It provides methods to list. filter and group data according to filename patterns or metadata and then to execute
a function on each file or group of files and then collect metadata from each file in turn. A key feature of DataFolder is
its ability to work with the collated metadata from the individual files that are held in the DataFolder.
In combination with its ability to walk through a complete heirarchy of groups of
**Data** objects, the handling of the common metadata provides powerful tools for quickly writing data reduction scripts.

ImageFolder
-----------

**Stoner.ImageFolder** is the equivalent of DataFolder but for images (although technically a DataFolder can contain ImageFile
objects, the ImageFolder class offers additional Image specific functionality). There is a subclass of ImageFolder,
**Stoner.Image.ImageStack** that uses 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 dictionary of **ImageFolder**

Other Modules and Classes
-------------------------

The **Stoner.HDF5** module provides some additional classes to manipulate *Data* and *DataFolder* objects within HDF5
format files. HDF5 is a common chouse for storing data from large scale facilties, although providing a way to handle
arbitary HDF5 files is beyond the scope of this package at this time - the format is much too complex and flexible to make that
an easy task. Rather it provides a way to work with large numbers of experimental sets using just a single file which may be less
brutal to your computer's OS than having directory trees with millions of individual files.

The module also provides some classes to support loading some particular HDF5 flavoured files into **Data** and **ImageFile**
objects.

The **Stoner.Zip** module provides a similar set of classes to **Stoner.HDF5** but working with the ubiquitous zip compressed file format.

Resources
==========

Included in the `github repository`_  are a (small) collection of sample scripts
for carrying out various operations and some sample data files for testing the loading and processing of data. There is also a
`User_Guide`_ as part of this documentation, along with a doc(``complete API reference <Stoner>``)

Contact and Licensing
=====================

The lead developer for this code is `Dr Gavin Burnell`_ <g.burnell@leeds.ac.uk>, but many current and former members of
the CM Physics group have contributed code, ideas and bug testing.

The User Guide gives the current list of other contributors to the project.

This code and the sample data are all (C) The University of Leeds 2008-2021 unless otherwise indficated in the source
file. The contents of this package are licensed under the terms of the GNU Public License v3

Recent Changes
==============

Current PyPi Version
--------------------

The current version of the package on PyPi will be the stable branch until the development branch enters beta testing, when we start
making beta packages available.

Development Version
-------------------

The current development version is hosted in the master branch of the repository and will become version 0.11.

At the moment the development version is maily broen....

Build Status
~~~~~~~~~~~~

Version 0.7 onwards are tested using the Travis-CI services with unit test coverage assessed by Coveralls.

Version 0.9 is tested with Python 2.7, 3.5, 3.6 using the standard unittest module.

Version 0.10 is tested using **pytest** with Python 3.6-3.9 using a github action.


Citing the Stoner Package
~~~~~~~~~~~~~~~~~~~~~~~~~

We maintain a digital object identifier (doi) for this package (linked to on the status bar at the top of this readme) and
encourage any users to cite this package via that doi.

Stable Versions
---------------


New Features in 0.10 include:

    *   Refactor Stoner.Core.DataFile to move functionality to mixin classes
    *   Start implementing PEP484 Type hinting
    *   Support pathlib for paths
    *   Switch from Tk based dialogs to Qt5 ones
    *   Refactoring the **baseFolder** class so that sub-groups are stored in an attribute that is an instance of a custom
        dictionary with methods to prune and filter in the virtual tree of sub-folders.
    *   Refactoring of the **ImageArray** and **ImageFile** so that binding of external functions as methods is done at
        class definition time rather than at runtime with overly complex __getattr__ methods. The longer term goal is to
        depricate the use of ImageArray in favour of just using ImageFile.
    *   Introduce interactive selection of boxes, lines and mask regions for interactive Matplotlib backends.
    *   Fix some long standing bugs which could lead to shared metadata dictionaries and race conditions

Online documentation for all versions can be found on the ReadTheDocs pages `online documentation`_

Version 0.9 is the old stable version. This is the last version to support Python 2 and 3<3.6. Features of this release are:

    *   Refactoring of the package into a more granual core, plot, formats, folders packages with submodules
    *   Overhaul of the documentation and user guide
    *   Dropping support for the older Stoner.Image.stack.ImageStack class
    *   Droppping support for matplotlib<2.0
    *   Support for Python 3.7 (and 3.8 from 0.9.6)
    *   Unit tests now > 80% coverage across the package.

Version 0.9.8 was the final version of the 0.9 branch

Version 0.8 is the very old stable release. The main new features were:

    *   Reworking of the ImageArray, ImageFile and ImageFolder with many updates and new features.
    *   New mixin based ImageStack2 that can manipulate a large number of images in a 3D numpy array
    *   Continued re-factoring of DataFolder using the mixin approach
    *   Further increases to unit-test coverage, bug fixes and refactoring of some parts of the code.
    *   _setas objects implement a more complete MutableMapping interface and also support +/- operators.
    *   conda packages now being prepared as the preferred package format

0.8.2 was the final release of the 0.8.0 branch

The ancient stable version is 0.7.2. Features of 0.7.2 include

    *   Replace older AnalyseFile and PlotFile with mixin based versions AnalysisMixin and PlotMixin
    *   Addition of Stoner.Image package to handle image analysis
    *   Refactor DataFolder to use Mixin classes
    *   DataFolder now defaults to using Stoner.Core.Data
    *   DataFolder has an options to skip iterating over empty Data files
    *   Further improvements to Stoner.Core.DataFile.setas handline.

No further relases will be made to 0.7.x.

0.6, 0.7 should work on Python 2.7 and 3.5
0.8 is also tested on Python 3.6

.. _online documentation: http://stoner-pythoncode.readthedocs.io/en/latest/
.. _github repository: http://www.github.com/stonerlab/Stoner-PythonCode/
.. _Dr Gavin Burnell: http://www.stoner.leeds.ac.uk/people/gb
.. _User_Guide: http://stoner-pythoncode.readthedocs.io/en/latest/UserGuide/ugindex.html



            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/~gb119/Stoner-PythonCode",
    "name": "Stoner",
    "maintainer": "",
    "docs_url": "https://pythonhosted.org/Stoner/",
    "requires_python": ">3.7",
    "maintainer_email": "",
    "keywords": "Data-Analysis Physics",
    "author": "Gavin Burnell",
    "author_email": "g.burnell@leeds.ac.uk",
    "download_url": "https://files.pythonhosted.org/packages/78/88/7c4b2ddfaa3668946849cad5eaca005ba35d26554c328f1ece6fc16cddc7/Stoner-0.10.9.tar.gz",
    "platform": null,
    "description": ".. image:: https://github.com/stonerlab/Stoner-PythonCode/actions/workflows/run-tests-action.yaml/badge.svg?branch=stable\n    :target: https://github.com/stonerlab/Stoner-PythonCode/actions/workflows/run-tests-action.yaml\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://app.codacy.com/project/badge/Grade/a9069a1567114a22b25d63fd4c50b228\n    :target: https://www.codacy.com/gh/stonerlab/Stoner-PythonCode/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=stonerlab/Stoner-PythonCode&amp;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://anaconda.org/phygbu/stoner/badges/version.svg\n   :target: https://anaconda.org/phygbu/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/10057055.svg\n   :target: https://zenodo.org/badge/latestdoi/10057055\n\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 h5py>=2.7.0, lmfit>=0.9.7, matplotlib>=2.0,numpy>=1.13, Pillow>=4.0,\nscikit-image>=0.13.0 & scipy>=1.0.0 and also optional depends on  filemagic, npTDMS, imreg_dft and numba, fabio, hyperspy.\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.\n\nCompatibility\n--------------\n\nVersions 0.9.x (stable branch) are compatible with Python 2.7, 3.5, 3.6 and 3.7. The latest 0.9.6 version is also compatible with Python 3.8\nThe current stable verstion (0.10, stable branch) is compatible with Python 3.6-3.9\n\nConda packages are prepared for the stable branch and when the development branch enters beta testing. Pip wheels are prepared for selected stable releases only.\n\nInstallation\n------------\n\nAfter installing the current Anaconda version, open a terminal (Mac/Linux) or Anaconda Prompt (Windows) an do:\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\nOverview\n========\n\nThe main part of the **Stoner** package provides four basic top-level classes that describe:\n    - an individual file of experimental data (**Stoner.Data**),\n    - an individual experimental image (**Stoner.ImageFile**),\n    - a list (such as a directory tree on disc) of many experimental files (**Stoner.DataFolder**)\n    - a list (such as a directory tree on disc) of many image files (**Stoner.ImageFolder**).\n\nFor our research, a typical single experimental data file is essentially a single 2D table of floating point\nnumbers with associated metadata, usually saved in some ASCII text format. This seems to cover most experiments\nin the physical sciences, but it you need a more complex format with more dimensions of data, we suggest\nyou look elsewhere.\n\nIncreasingly we seem also to need process image files and so partnering the experimental measurement file classes,\nwe have a parallel set of classes for interacting with image data.\n\nThe general philosophy used in the package is to work with data by using methods that transform the data in place.\nAdditionally, many of the analysis methods pass a copy of the data as their return value, allowing a sequence of\noperations to be chained together in one line.\n\nThis is a *data-centric* approach - we have some data and we do various operations on it to get to our result. In\ncontrasr, traditional functional programming thinks in terms of various functions into which you pass data.\n\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\nImageFile\n---------\n\n**Stoner.ImageFile** is the top-level class for managing image data. It is the equivalent of **Stoner.Data** and maintains\nmetadta and comes with a number of methods to manipulate image data. The image data is stored internally as a masked numpy\narray and where possible the masking is taken into account when carrying out image analysis tasks. Through some abuse of\nthe Python class system, functions in the scpy.ndimage and scikit-image modules are mapped into methods of the ImageFile\nclass allowing a very rich set of operations on the data sets. The default IO methods handle tiff and png images and can\nstore the metadata of the ImageFile within those file formats.\n\nDataFolder\n----------\n\n**Stoner.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 and then collect metadata from each file in turn. A key feature of DataFolder is\nits ability to work with the collated metadata from the individual files that are held in the DataFolder.\nIn 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\nImageFolder\n-----------\n\n**Stoner.ImageFolder** is the equivalent of DataFolder but for images (although technically a DataFolder can contain ImageFile\nobjects, the ImageFolder class offers additional Image specific functionality). There is a subclass of ImageFolder,\n**Stoner.Image.ImageStack** that uses a 3D numpy array as it's primary image store which permits faster access\n(at the expense of a larger memory footprint) than the lazy loading ordered dictionary of **ImageFolder**\n\nOther Modules and Classes\n-------------------------\n\nThe **Stoner.HDF5** module provides some additional classes to manipulate *Data* and *DataFolder* objects within HDF5\nformat files. HDF5 is a common chouse for storing data from large scale facilties, although providing a way to handle\narbitary HDF5 files is beyond the scope of this package at this time - the format is much too complex and flexible to make that\nan easy task. Rather it provides 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.\n\nThe module also provides some classes to support loading some particular HDF5 flavoured files into **Data** and **ImageFile**\nobjects.\n\nThe **Stoner.Zip** module provides a similar set of classes to **Stoner.HDF5** but working with the ubiquitous zip compressed file format.\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 <Stoner>``)\n\nContact and Licensing\n=====================\n\nThe lead developer for this code is `Dr Gavin Burnell`_ <g.burnell@leeds.ac.uk>, but many current and former members of\nthe CM Physics group have contributed 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-2021 unless otherwise indficated in the source\nfile. The 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\nDevelopment Version\n-------------------\n\nThe current development version is hosted in the master branch of the repository and will become version 0.11.\n\nAt the moment the development version is maily broen....\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 using the standard unittest module.\n\nVersion 0.10 is tested using **pytest** with Python 3.6-3.9 using a github action.\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\n\nNew Features in 0.10 include:\n\n    *   Refactor Stoner.Core.DataFile to move functionality to mixin classes\n    *   Start implementing PEP484 Type hinting\n    *   Support pathlib for paths\n    *   Switch from Tk based dialogs to Qt5 ones\n    *   Refactoring the **baseFolder** class so that sub-groups are stored in an attribute that is an instance of a custom\n        dictionary with methods to prune and filter in the virtual tree of sub-folders.\n    *   Refactoring of the **ImageArray** and **ImageFile** so that binding of external functions as methods is done at\n        class definition time rather than at runtime with overly complex __getattr__ methods. The longer term goal is to\n        depricate the use of ImageArray in favour of just using ImageFile.\n    *   Introduce interactive selection of boxes, lines and mask regions for interactive Matplotlib backends.\n    *   Fix some long standing bugs which could lead to shared metadata dictionaries and race conditions\n\nOnline documentation for all versions can be found on the ReadTheDocs pages `online documentation`_\n\nVersion 0.9 is the old 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 (and 3.8 from 0.9.6)\n    *   Unit tests now > 80% coverage across the package.\n\nVersion 0.9.8 was the final version of the 0.9 branch\n\nVersion 0.8 is the very old 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 ancient 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\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "Library to help write data analysis tools for experimental condensed matter physics.",
    "version": "0.10.9",
    "project_urls": {
        "Homepage": "http://github.com/~gb119/Stoner-PythonCode"
    },
    "split_keywords": [
        "data-analysis",
        "physics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "517e75e8427bcabf4fc20a19ce6c2fd890b67ba8888f1a50d932c9da81e92ccb",
                "md5": "a6b0ed33051ada6c31c39ab20d298d6b",
                "sha256": "725ad1cfaa1edcea01885d077fa2b53713e49917913295cc97274ed42927ce75"
            },
            "downloads": -1,
            "filename": "Stoner-0.10.9-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a6b0ed33051ada6c31c39ab20d298d6b",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">3.7",
            "size": 414167,
            "upload_time": "2023-12-09T20:39:49",
            "upload_time_iso_8601": "2023-12-09T20:39:49.668168Z",
            "url": "https://files.pythonhosted.org/packages/51/7e/75e8427bcabf4fc20a19ce6c2fd890b67ba8888f1a50d932c9da81e92ccb/Stoner-0.10.9-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78887c4b2ddfaa3668946849cad5eaca005ba35d26554c328f1ece6fc16cddc7",
                "md5": "9b22831fb2de9cad010bbd7fb2c2d9ce",
                "sha256": "90c3382804dc0d4e3d130d2a9fa9a5568a35aab34b5435daf3fb8e03e0c5f31c"
            },
            "downloads": -1,
            "filename": "Stoner-0.10.9.tar.gz",
            "has_sig": false,
            "md5_digest": "9b22831fb2de9cad010bbd7fb2c2d9ce",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">3.7",
            "size": 41365226,
            "upload_time": "2023-12-09T20:39:52",
            "upload_time_iso_8601": "2023-12-09T20:39:52.615614Z",
            "url": "https://files.pythonhosted.org/packages/78/88/7c4b2ddfaa3668946849cad5eaca005ba35d26554c328f1ece6fc16cddc7/Stoner-0.10.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-09 20:39:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "~gb119",
    "github_project": "Stoner-PythonCode",
    "github_not_found": true,
    "lcname": "stoner"
}
        
Elapsed time: 0.15840s