{ "info": { "author": "Kendrick Shaw, Jeffrey Gill", "author_email": "kms15@case.edu, jeffrey.p.gill@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering :: Bio-Informatics" ], "description": "axographio\n==========\n\n.. image:: https://img.shields.io/pypi/v/axographio.svg\n :target: PyPI_\n :alt: PyPI project\n\n.. image:: https://img.shields.io/badge/github-source_code-blue.svg\n :target: GitHub_\n :alt: GitHub source code\n\n.. image:: https://img.shields.io/badge/binder-launch_demo-e66581.svg\n :target: Binder_\n :alt: Launch a demo in Binder\n\n**axographio** is a Python package that makes it easy to read and write binary\ndata files in the AxoGraph file format.\n\nAxoGraph_ is a commercial software package for data acquisition and analysis\nthat is widely used in electrophysiological research. Although it can read and\nwrite files in text format, its binary format is much smaller and faster to load\nand save; thus many users preferentially use this format. The company\ndistributes the details of the file format along with sample C++ code for\nreading and writing to these files using third-party software, such as this\nPython package.\n\nPython_ is a powerful and easy to use general purpose programming language.\nThere are many useful Python libraries available for scientific data analysis\nand data visualization such as SciPy, Matplotlib, and Mayavi.\n\nThis package provides a simple interface for loading AxoGraph data files into\na Python program or interactive session. If you want to analyze data you\nrecorded in AxoGraph using Python-based tools, this package provides the glue\ncode you'll need. You can also write data to the AxoGraph binary format so that\nit can be viewed and analyzed within AxoGraph.\n\n.. _PyPI: https://pypi.org/project/axographio/\n.. _GitHub: https://github.com/CWRUChielLab/axographio\n.. _Binder: https://mybinder.org/v2/gh/CWRUChielLab/axographio/master?filepath=examples%2Fbasic-demo.ipynb\n.. _AxoGraph: https://axograph.com\n.. _Python: https://python.org\n\nGetting axographio\n------------------\n\n**axographio** is compatible with both Python 2 and Python 3.\n\nThe easiest way to get **axographio** is to install the latest stable version\nusing ``pip``, but you can alternatively build it from the source code.\n\nInstalling the latest stable version\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nRequirements for installing and running **axographio**:\n\n* The NumPy package (``pip install numpy``)\n\nThe **axographio** package contains C++ code that must be compiled. PyPI_ stores\npre-compiled copies of the package for common platforms (e.g., Python 3 on\n64-bit Windows), and these can be installed using ``pip``.\n\nTo install the latest stable version, try the following::\n\n pip install axographio\n\nIf a pre-compiled package is available for your platform on PyPI_, ``pip``\nshould quickly download and install it. If not, ``pip`` will automatically\nattempt to build the package from source code. Building the package has\nadditional requirements. If ``pip`` fails during building, keep reading.\n\nBuilding from source code\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf you need to build the package because a pre-compiled version is not already\navailable for your platform on PyPI_, or if you just want to try building from\nthe source code, you will need to meet additional requirements.\n\nRequirements for building **axographio** from source code:\n\n* The NumPy package (``pip install numpy``)\n* The Cython package, version 0.19 or later (``pip install cython>=0.19``)\n* A C++ compiler (e.g., Visual C++ Build Tools from Microsoft on Windows\n systems, or Xcode on Mac systems)\n\nIf ``pip`` failed while trying to build from source code, make sure you meet\nthese requirements and try again.\n\nIf you would like to build and install using the latest development source code\nfrom GitHub_, try the following::\n\n pip install git+https://github.com/CWRUChielLab/axographio\n\nThis command requires ``git``. If you don't have ``git``, you can instead\nmanually download the source from GitHub_ and install from your local\ndirectory::\n\n pip install C:\\wherever-you-put-the-source-code\n\nUsage\n-----\n\nTry out the Binder_ demo for an interactive Python session that requires no\ninstallation or fuss. You can start hacking *right now!*\n\nLoading a data file is as easy as calling ``read``:\n\n>>> import axographio\n>>>\n>>> f = axographio.read('AxoGraph X File.axgx')\n\nAt this point the variable ``f`` will contain a ``file_contents`` object with\nthe column names and data from the file. For example, you could now plot the\nfirst two columns using Matplotlib:\n\n>>> import matplotlib.pyplot as plt\n>>>\n>>> plt.plot(f.data[0], f.data[1])\n>>> plt.xlabel(f.names[0])\n>>> plt.ylabel(f.names[1])\n>>> plt.show() # may be optional depending on your OS\n\nOf course, you probably have grander plans than just plotting the data. The\ncolumn data supports the standard sequence interfaces (i.e., indexing,\niteration, etc.) and can be converted to a NumPy or SciPy array using the\n``asarray`` functions in these packages, e.g.:\n\n>>> import numpy as np\n>>>\n>>> times = np.asarray(f.data[0])\n\nWriting files is also relatively easy. You simply create a new\n``file_contents`` object (or use one you loaded earlier), and then call\n``write``. For example, the following code creates a file in the current\ndirectory called 'my60Hz.axgx' with two channels with 60 Hz sine waves:\n\n>>> import axographio\n>>> import numpy as np\n>>>\n>>> times = np.arange(0, 10, 0.0001)\n>>> column1 = np.sin(2*np.pi * 60 * times)\n>>> column2 = np.cos(2*np.pi * 60 * times)\n>>> f = axographio.file_contents(\n... ['time (s)', 'my recording (V)', 'your recording (V)'],\n... [times, column1, column2])\n>>> f.write('my60Hz.axgx') # created in the current directory\n\nQuestions and Support\n---------------------\n\nPlease post any questions, problems, comments, or suggestions in the `GitHub\nissue tracker `_.\n\nChanges\n-------\n\n0.3.1\n~~~~~\n\n* Modify NumPy's global print settings only when running tests\n\n0.3.0\n~~~~~\n\n* Package test suite can be run using ``axographio.tests.run()``\n* Package version can be accessed using ``axographio.__version__``\n* Added example Jupyter notebook to source repository (not included with\n installation)\n* Updated installation instructions\n* Improved documentation\n* Reorganized source code file structure\n* Fixed doctests for NumPy < 1.14\n\n0.2.0\n~~~~~\n\n* Added compatibility with Python 3\n\n0.1.1\n~~~~~\n\n* Fixed a rounding error that could create one extra data point in the time\n column\n\n0.1.0\n~~~~~\n\n* First release\n\nAcknowledgments\n---------------\n\nThis initial version of this project was written in the\nChiel Laboratory at Case Western Reserve University, with support from NIH\ngrant NS047073, an Ohio Innovation Incentive Award Fellowship, and the\nCase Western Reserve MSTP (NIH T32 GM007250). This project builds on a\nnumber of other open source projects, including Python, C++ AxoGraph file\ninput/output code from AxoGraph Scientific (placed in the public domain; a\nmodified version is included with the project source code), Cython, and many\nothers. Thanks also to Dr. Hillel Chiel for providing testing and helpful\nsuggestions.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/CWRUChielLab/axographio", "keywords": "physiology,electrophysiology,axograph", "license": "BSD License", "maintainer": "Jeffrey Gill", "maintainer_email": "jeffrey.p.gill@gmail.com", "name": "axographio", "package_url": "https://pypi.org/project/axographio/", "platform": "", "project_url": "https://pypi.org/project/axographio/", "project_urls": { "Homepage": "https://github.com/CWRUChielLab/axographio" }, "release_url": "https://pypi.org/project/axographio/0.3.1/", "requires_dist": [ "numpy" ], "requires_python": "", "summary": "A Python package for reading and writing AxoGraph data files", "version": "0.3.1" }, "last_serial": 5108482, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "69c12f6504bc40f48c28f5d979ce7069", "sha256": "24312be3fd030143e317cbaa1fe52d160f5037da160dc56aa2d25ebbd7320810" }, "downloads": -1, "filename": "axographio-0.1.0-py2.6-linux-x86_64.egg", "has_sig": false, "md5_digest": "69c12f6504bc40f48c28f5d979ce7069", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 132637, "upload_time": "2009-07-20T20:13:57", "url": "https://files.pythonhosted.org/packages/b6/d2/4748dd6b6a07cf2b3c121fd291ea14e69737875248c4c85f632d8b917acd/axographio-0.1.0-py2.6-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "a8774509c56a8fa7297444a835fc0fc8", "sha256": "d9814d2e2237ab6cb9118e30271e8c7f638ab24e88be5c03fcc2fcfad8c3497c" }, "downloads": -1, "filename": "axographio-0.1.0-py2.6-macosx-10.3-fat.egg", "has_sig": false, "md5_digest": "a8774509c56a8fa7297444a835fc0fc8", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 112210, "upload_time": "2009-07-20T20:02:07", "url": "https://files.pythonhosted.org/packages/f0/d4/7f9e337bdcbc565257e599f6a412809364bb5aeafe605c795dce92e679b8/axographio-0.1.0-py2.6-macosx-10.3-fat.egg" }, { "comment_text": "", "digests": { "md5": "f64074197cd6c945a6063bc79656cd98", "sha256": "7340a44363822e66b554717e40159fd9dbe172e50de434111968f42988d76ce4" }, "downloads": -1, "filename": "axographio-0.1.0.tar.gz", "has_sig": false, "md5_digest": "f64074197cd6c945a6063bc79656cd98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77118, "upload_time": "2009-07-20T20:02:07", "url": "https://files.pythonhosted.org/packages/28/16/773999722b4a25721f195869d82e10df93eb3b357893208cff073541cfe9/axographio-0.1.0.tar.gz" } ], "0.1.1b1": [ { "comment_text": "", "digests": { "md5": "4c2ce32f1c0fd33dfe00cbaab5ec362a", "sha256": "614904bdd0ef5e455b7357ebd6754c5348f74b0ff8fdc887b15b7947f51dd61e" }, "downloads": -1, "filename": "axographio-0.1.1b1-py2.6-linux-x86_64.egg", "has_sig": false, "md5_digest": "4c2ce32f1c0fd33dfe00cbaab5ec362a", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 132936, "upload_time": "2009-07-22T01:36:05", "url": "https://files.pythonhosted.org/packages/64/30/a85008e08749e2ed1f61c83d43b86ef8c27cab7bfdcfdc28ad9fd5b2d6fb/axographio-0.1.1b1-py2.6-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "368663f2d455a55cbc669a14a5c25218", "sha256": "92aa1c305b5599005932a9edb7336665bfe9ac4d8e968b069cd6566387fd581d" }, "downloads": -1, "filename": "axographio-0.1.1b1-py2.6-macosx-10.3-fat.egg", "has_sig": false, "md5_digest": "368663f2d455a55cbc669a14a5c25218", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 112791, "upload_time": "2009-07-21T23:48:18", "url": "https://files.pythonhosted.org/packages/e5/d0/5f01da1ddbd78d1b1bd5ec5ede75a2487e51a86e7033981b6ceccf04d343/axographio-0.1.1b1-py2.6-macosx-10.3-fat.egg" }, { "comment_text": "", "digests": { "md5": "f0b0e594d1361cde96a5801850c564c0", "sha256": "e6bae98d3c19b246df1a96f539099039812fc54c4439dd21083ce18808e4a3ad" }, "downloads": -1, "filename": "axographio-0.1.1b1.tar.gz", "has_sig": false, "md5_digest": "f0b0e594d1361cde96a5801850c564c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77672, "upload_time": "2009-07-21T23:48:17", "url": "https://files.pythonhosted.org/packages/b0/4e/9947d087b130e44ece6f83d4cce5c1320e0ee4f2384b29c0a2f152b10538/axographio-0.1.1b1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "98f0122455c49e5b15bb5874a8d464e9", "sha256": "d8253d46e672630fedcf7cdcc979359c0aa77d1d4cb26086a1b4c271ac65d952" }, "downloads": -1, "filename": "axographio-0.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "98f0122455c49e5b15bb5874a8d464e9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 63459, "upload_time": "2018-06-13T14:49:36", "url": "https://files.pythonhosted.org/packages/6c/c0/61911290916284342fa279bc7941df01eaad4b0635ad54e2b2eddf382500/axographio-0.2.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7fd847f5da8f27fd547a02c4f1c38b28", "sha256": "1e92eb4bbdaac8970a3f6529dd088fe2c4e08176ad5af2ce1be69433a9f53f95" }, "downloads": -1, "filename": "axographio-0.2.0.tar.gz", "has_sig": false, "md5_digest": "7fd847f5da8f27fd547a02c4f1c38b28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78485, "upload_time": "2018-06-13T14:49:38", "url": "https://files.pythonhosted.org/packages/62/b9/a94fa963ac886d44ad57c7244b1028869d7ebff4682aba63383457044dd5/axographio-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "d6f1424c6eb1cb9c3e4ee9965ac6e37c", "sha256": "92627e507b79c539b6d6ef7d6bfb913b3a7d97aa1c771280d939989a89de6cb4" }, "downloads": -1, "filename": "axographio-0.3.0-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "d6f1424c6eb1cb9c3e4ee9965ac6e37c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 128154, "upload_time": "2018-07-01T02:24:13", "url": "https://files.pythonhosted.org/packages/83/76/97eac519630e8fec9a05593262e3b8fa419fc98fe8649d35d15f9d5cea45/axographio-0.3.0-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7c1f9f64c22b55360da073c3b1048bfe", "sha256": "263f3e10819ecd78daae5071c2c93ad566a404e42bbf5bbb815fd01d080a7699" }, "downloads": -1, "filename": "axographio-0.3.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "7c1f9f64c22b55360da073c3b1048bfe", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 98447, "upload_time": "2018-07-01T00:51:18", "url": "https://files.pythonhosted.org/packages/ed/51/5004cb7d36e9b20bce05d90d4913067651e158eb21814dbec2cc3d14208a/axographio-0.3.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9125719d948759aeb72dfdf426d9d844", "sha256": "07b45c83dbdf7b44ef2e0d3b90e7f3e4f8afcb47b05d704c1b589850ae45a985" }, "downloads": -1, "filename": "axographio-0.3.0-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "9125719d948759aeb72dfdf426d9d844", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 126577, "upload_time": "2018-07-01T01:56:36", "url": "https://files.pythonhosted.org/packages/d8/b1/739ecc739c3a7d7527f89dfc33373cae0561f5b5721b6384b574ec0df714/axographio-0.3.0-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "df36f3b20ccb661f52843dbd16ed262e", "sha256": "fe8e3d6aac5b65c141c5abc9bbb307ff92655ad204089fde2450830f2fa61ea6" }, "downloads": -1, "filename": "axographio-0.3.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "df36f3b20ccb661f52843dbd16ed262e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 95708, "upload_time": "2018-07-01T00:49:04", "url": "https://files.pythonhosted.org/packages/44/74/efe6245372013ea29ecb2a78fd0f0da58a626feb7a3b39c9ca099373d8f7/axographio-0.3.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "87adf2e021132d3e5d7875e9b49ce9cb", "sha256": "67646abc65e3a00fc667fe4f2b2de8444b8972f67755fb3740bd576a4096214a" }, "downloads": -1, "filename": "axographio-0.3.0.tar.gz", "has_sig": false, "md5_digest": "87adf2e021132d3e5d7875e9b49ce9cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59163, "upload_time": "2018-07-01T00:49:06", "url": "https://files.pythonhosted.org/packages/c9/36/92cd0042b6eb3361e7b952b5fcd57a868d8ad64bde4dddb1bd1a64f78ae7/axographio-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "5c688d7f574bb6407ef3f69825212ca1", "sha256": "ff6c9632652958a36f452574eee5878b13f35425d62734ce0f8ea3d70f36387c" }, "downloads": -1, "filename": "axographio-0.3.1-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "5c688d7f574bb6407ef3f69825212ca1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 128188, "upload_time": "2018-08-15T22:13:40", "url": "https://files.pythonhosted.org/packages/5e/d9/5611b00021d7b4e05912a9f8ee9063629ef82a98c5f8bf2507e05405bfe6/axographio-0.3.1-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2fd7e934f9904aeb13826126b7e47bb7", "sha256": "581e33a32d942c24ab572f52d6c7f7efc7f9161025411f17c8e30ac0e3286f4d" }, "downloads": -1, "filename": "axographio-0.3.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "2fd7e934f9904aeb13826126b7e47bb7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 98478, "upload_time": "2018-08-15T21:43:00", "url": "https://files.pythonhosted.org/packages/3f/02/088f3486dc1be06ad48f627104bc352a26a77830925dbad7a014f8a007ff/axographio-0.3.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2ae8bc2fe1a41d56500230b34541ba36", "sha256": "fff6de7048e01e77a3691f80b56fe92e6095d5449572645447fb7326a5d04981" }, "downloads": -1, "filename": "axographio-0.3.1-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "2ae8bc2fe1a41d56500230b34541ba36", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 126611, "upload_time": "2018-08-15T22:05:41", "url": "https://files.pythonhosted.org/packages/cd/66/2b63388d3587b51c4e9c9a917f489d720b9539a697dd412714d117cc6c6c/axographio-0.3.1-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "866408c67ef9156c3b635675413f52f7", "sha256": "f4440f0f447204c397809aba6dd7b4351ad8d2ad1e1a077de5f2e2926e577e1e" }, "downloads": -1, "filename": "axographio-0.3.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "866408c67ef9156c3b635675413f52f7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 95739, "upload_time": "2018-08-15T21:41:18", "url": "https://files.pythonhosted.org/packages/4f/5d/67bc180f44dbecaa75297e4afc9be15650d306f9da21f43d5b02cc3faf24/axographio-0.3.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "05aba32ab9bbb31a5f3ffcfa6d8a2a22", "sha256": "24abc27b444fc21915dd933d1a893850e690dd559b1d968dcbbdc03574fa5f1a" }, "downloads": -1, "filename": "axographio-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "05aba32ab9bbb31a5f3ffcfa6d8a2a22", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 116630, "upload_time": "2019-04-06T22:36:14", "url": "https://files.pythonhosted.org/packages/e4/07/9fedf01d5197ab2d41726bc735de7b3452f3e38fa35827245cf29221796d/axographio-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ace93c3f563df34b9b0fcc7b655aa026", "sha256": "fd962e986dc8b9bd99840270631ad174ff63e06de633b8a0585998cf3719613c" }, "downloads": -1, "filename": "axographio-0.3.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ace93c3f563df34b9b0fcc7b655aa026", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 99189, "upload_time": "2019-03-24T04:48:15", "url": "https://files.pythonhosted.org/packages/dd/a5/bc6b8979fef57cc2278b0a46f013e800ecd50de47b097075ac4e9c9b8076/axographio-0.3.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f62ed4dacb775d4355fc27d7635dbac6", "sha256": "5f951688009c9b2ed6024cc010f7efb5f42f1e87102f45b8af712a6080625f14" }, "downloads": -1, "filename": "axographio-0.3.1.tar.gz", "has_sig": false, "md5_digest": "f62ed4dacb775d4355fc27d7635dbac6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59211, "upload_time": "2018-08-15T21:41:20", "url": "https://files.pythonhosted.org/packages/84/bb/2b40ca8f4a5fb43db372d7643656c5964535578e85731e9c69b83af609f3/axographio-0.3.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5c688d7f574bb6407ef3f69825212ca1", "sha256": "ff6c9632652958a36f452574eee5878b13f35425d62734ce0f8ea3d70f36387c" }, "downloads": -1, "filename": "axographio-0.3.1-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "5c688d7f574bb6407ef3f69825212ca1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 128188, "upload_time": "2018-08-15T22:13:40", "url": "https://files.pythonhosted.org/packages/5e/d9/5611b00021d7b4e05912a9f8ee9063629ef82a98c5f8bf2507e05405bfe6/axographio-0.3.1-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2fd7e934f9904aeb13826126b7e47bb7", "sha256": "581e33a32d942c24ab572f52d6c7f7efc7f9161025411f17c8e30ac0e3286f4d" }, "downloads": -1, "filename": "axographio-0.3.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "2fd7e934f9904aeb13826126b7e47bb7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 98478, "upload_time": "2018-08-15T21:43:00", "url": "https://files.pythonhosted.org/packages/3f/02/088f3486dc1be06ad48f627104bc352a26a77830925dbad7a014f8a007ff/axographio-0.3.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2ae8bc2fe1a41d56500230b34541ba36", "sha256": "fff6de7048e01e77a3691f80b56fe92e6095d5449572645447fb7326a5d04981" }, "downloads": -1, "filename": "axographio-0.3.1-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "2ae8bc2fe1a41d56500230b34541ba36", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 126611, "upload_time": "2018-08-15T22:05:41", "url": "https://files.pythonhosted.org/packages/cd/66/2b63388d3587b51c4e9c9a917f489d720b9539a697dd412714d117cc6c6c/axographio-0.3.1-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "866408c67ef9156c3b635675413f52f7", "sha256": "f4440f0f447204c397809aba6dd7b4351ad8d2ad1e1a077de5f2e2926e577e1e" }, "downloads": -1, "filename": "axographio-0.3.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "866408c67ef9156c3b635675413f52f7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 95739, "upload_time": "2018-08-15T21:41:18", "url": "https://files.pythonhosted.org/packages/4f/5d/67bc180f44dbecaa75297e4afc9be15650d306f9da21f43d5b02cc3faf24/axographio-0.3.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "05aba32ab9bbb31a5f3ffcfa6d8a2a22", "sha256": "24abc27b444fc21915dd933d1a893850e690dd559b1d968dcbbdc03574fa5f1a" }, "downloads": -1, "filename": "axographio-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "05aba32ab9bbb31a5f3ffcfa6d8a2a22", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 116630, "upload_time": "2019-04-06T22:36:14", "url": "https://files.pythonhosted.org/packages/e4/07/9fedf01d5197ab2d41726bc735de7b3452f3e38fa35827245cf29221796d/axographio-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ace93c3f563df34b9b0fcc7b655aa026", "sha256": "fd962e986dc8b9bd99840270631ad174ff63e06de633b8a0585998cf3719613c" }, "downloads": -1, "filename": "axographio-0.3.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ace93c3f563df34b9b0fcc7b655aa026", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 99189, "upload_time": "2019-03-24T04:48:15", "url": "https://files.pythonhosted.org/packages/dd/a5/bc6b8979fef57cc2278b0a46f013e800ecd50de47b097075ac4e9c9b8076/axographio-0.3.1-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f62ed4dacb775d4355fc27d7635dbac6", "sha256": "5f951688009c9b2ed6024cc010f7efb5f42f1e87102f45b8af712a6080625f14" }, "downloads": -1, "filename": "axographio-0.3.1.tar.gz", "has_sig": false, "md5_digest": "f62ed4dacb775d4355fc27d7635dbac6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59211, "upload_time": "2018-08-15T21:41:20", "url": "https://files.pythonhosted.org/packages/84/bb/2b40ca8f4a5fb43db372d7643656c5964535578e85731e9c69b83af609f3/axographio-0.3.1.tar.gz" } ] }