{ "info": { "author": "M-A. Delsuc", "author_email": "madelsuc@unistra.fr", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Science/Research", "License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Scientific/Engineering :: Chemistry" ], "description": "# What is SPIKE ? #\n\n**SPIKE** a collaborative development for a FT-spectroscopy processing program.\n\n*This is the version 0.99.12 - September 2019*\n\n**SPIKE** is a program that allows the processing, the display and the analysis of data-sets obtained from various Fourier-Transform spectroscopies. The name stands for **S**pectrometry **P**rocessing **I**nnovative **KE**rnel.\n\nIt allows the processing of **1D** and **2D** FT spectroscopies, implementing Real, Complex and HyperComplex n-dimensionnal Fourier Transform, as well as many other functionalities.\n\nIt is written in python (tested in python 2.7 and 3.6) and can be used as a set of tools, using for instance `jupyter notebook` as an interactive front-end.\n\nTo our knowledge, it is the first program freely available allowing the processing, display and analysis of 2D-FT-ICR (Fourier Transform Ion Cyclotron Resonance), as well as **Orbitrap** time domain data. processing.\n\nIt is still in very active development.\nMany features are missing, and many other while present, are not fully fixed.\nHowever, considering the amount of efforts already present in this code, we decided to make it available.\nWe believe that even in this partial development stage, this program might prove useful for certain usages.\n\n\n## Citing SPIKE ##\nIf you happen to use SPIKE successfully please cite it, and refer to this site, as well as the following possible references :\n\n- first publication of the program itself - *rejected from Anal. Chem. Reviewer 1 said \"too much NMR\", Reviewer 2 said \"too much MS\", !!*\n 1. Chiron L., Coutouly M-A., Starck J-P., Rolando C., Delsuc M-A. SPIKE a Processing Software dedicated to Fourier Spectroscopies https://arxiv.org/abs/1608.06777 (2016)\n- first version of the python set-up on which the current SPIKE is partially based\n 2. Tramesel, D., Catherinot, V. & Delsuc, M.-A. Modeling of NMR processing, toward efficient unattended processing of NMR experiments. _J Magn Reson_ **188**, 56-67 (2007).\n- first version of the 2D FT-ICR-MS processing\n 3. van Agthoven, M. A., Chiron, L., Coutouly, M.-A., Delsuc, M.-A. & Rolando, C. Two-Dimensional ECD FT-ICR Mass Spectrometry of Peptides and Glycopeptides. _Anal Chem_ **84**, 5589-95 (2012).\n- presentation of the automation possibilities in NMR\n 4. Margueritte, L., Markov, P., Chiron, L., Starck, J.-P., Vonthron Sénécheau, C., Bourjot, M., & Delsuc, M.-A. (2018). Automatic differential analysis of NMR experiments in complex samples. Magn. Reson. Chem., 80(5), 1387. http://doi.org/10.1002/mrc.4683\n\nref 1) is a general purpose reference, the other ones are more specific.\n\n## SPIKE features\n- FT analysis of 1D data-sets\n - apodisation, phasing, modulus, ...\n- Analysis of 2D data-sets\n - phase or amplitude modulation\n - complex or hyper-complex algebra\n- Robust processing\n - no limit in data-set size\n - parallel processing of the heaviest processing\n - on multi-core desktop using standard python ressources\n - on large clusters, using **MPI** library\n- High-Level features\n - noise reduction (filtering, Linear-Prediction, Cadzow, urQRd, sane, ...)\n - automatic or manual baseline correction\n - NUS data processing\n - 1D and 2D Peak-Picker\n- Plugin architecture\n - allow easy extension of the core program\n - reduces cross dependences\n- Complete spectral display using matplotlib or bokeh transparently\n - zoom, available in several units (depending on the spectroscopy : seconds, Hz, ppm, m/z, etc...)\n - store to png or pdf\n- interaction with the Jupyter Notebook environment\n\n## Handles the following Spectroscopies\n- **NMR** \n - 1D and 2D are fully supported\n - no nD yet\n- **FT-ICR** \n - 1D and 2D are fully supported\n- **Orbitrap** \n - 1D only (!)\n- _other spectroscopies are being considered_\n\n## Files can be imported from\n* NMR:\n * Bruker Topspin\n * NMRNoteBook\n * NPK - *Gifa*\n * SpinIt\n* FT-ICR:\n * Bruker Apex \n * Bruker Solarix\n* Orbitrap:\n * Thermofisher raw data\n* Other\n * csv and txt files\n * any data in memory in a `Numpy` buffer.\n\n# Usage\n\n## As a processing library\nSPIKE is primary meant for being used as a library, code can as simple as :\n\n```python\nfrom spike.File import Solarix \n\ndd = Solarix.Import_1D('FTICR-Files/ESI_pos_Ubiquitin_000006.d') # Import create a basic SPIKE object\n\ndd.hamming().zf(2).rfft().modulus() # we have a simple piped processing scheme\n # here doing apodisation - zerofilling (doubling the size) - FT and modulus.\n # calibration is imported from Bruker - advanced calibration is available\n\ndd.unit = \"m/z\"\ndd.display(zoom=(500,2000)) # display the spectrum for m/z ranging from 500 to 2000\n\ndd.pp(threshold=1E7) # peak-pick the spectrum in this range\ndd.centroid() # compute centroids\n\ndd.display(zoom=(856.5, 858.5)) # and zoom on the isotopic peak\ndd.display_peaks(zoom=(856.5, 858.5), peak_label=True)\n```\n\n## interactive mode\nSPIKE allows to process datasets interactively from an jupyter (IPython) prompt, and is perfectly working in `jupyter notebook` or even `jupyter lab`\n\n* Look at the examples files ( `eg_*.py` and `*.ipynb` ) for examples and some documentation.\n ( * not fully up to data * )\n* display is performed using the `Matplotlib` library.\n* large 2D-FT-ICR are handled in batch using the `processing.py` batch program, controlled by parameter file called `*.mscf`\n* The batch mode supports multiprocessing, both with MPI and natively on multi-core machines (still in-progress)\n* large 2D-FT-ICR are stored in a hierarchical format, easyly displayed with an interactive program.\n* data-sets are handled in the HDF5 standard file-format, which allows virtually unlimited file size ( _tested up to 500 Gb_ ).\n\n## running stand-alone programs\n\nprocessing.py and visu2D.py are two stand alone programs, written on the top of SPIKE.\n - processing.py allowing the efficient processing\n of FT-ICR 2D datasets, with no limit on the size of the final file\n Produces multi-resolution files\n \nsyntax :\n```\npython -m spike.processing param_file.mscf\n```\n\n\n# How do I get SPIKE ? ##\nSPIKE is written in pure Python, and relies on several external libraries.\nIt is compatible and fully tested with both python 2.7 and python 3.6\n\nHowever it relies on mathematical libraries which should be installed independently.\n\n- matplotlib\n- numpy\n- scipy\n- tables\n- pandas\n\nsome plugins or extension require additional libraries ( `MPI`, `bokeh`, `mayavi`, ...)\n\nTo get it, you can simply \n- rely on a scientific distribution such as Anaconda or Enthough\n- install the above python distributions yourself (tricky)\n\nThen you can install it using pip:\n```bash\npip install spike-py\n```\n\nOr, if you want to play with the code, \n\n- download the latest stable version here : https://bitbucket.org/delsuc/spike/downloads\n- *or* `hg clone` the devel branch and keep it up-to-date\n\n\n```bash\npython setup.py install\n```\nor, if you do not want to instal it permanently\n```bash\npython setup.py develop\n```\nusing pip\n```bash\npip install spike_py\n```\n\n## dependencies\nIt requires the following non-standard Python libraries :\n\n* [Numpy](http://docs.scipy.org/doc/numpy/reference/)\n* [Scipy](http://docs.scipy.org/doc/scipy/reference/)\n* [Matplotlib](http://Matplotlib.org/contents.html)\n* HDF5 / [Pytables](http://www.pytables.org/moin)\n\nOptionnaly\n\n* MPI / [mpi4py](http://www.mpi4py.scipy.org/) used for parallel processing of large FTICR 2D files\n* [cupy](https://github.com/cupy/cupy) for computating in the GPU using Cuda, which allows to speed up considerably certain processing steps.\n\nIt has been successfully tested in the [**Enthought**](https://enthought.com/) and [**Anaconda**](http://continuum.io/) distributions.\n\n\n\n## History ##\n\n**SPIKE** is originated from the _Gifa_ program, developed by M-A Delsuc and others in `FORTRAN 77` since the late eighties.\n_Gifa_ has known several mutations, and finally ended as a partial rewrite called **NPK**.\nThe [NPK](http://abcis.cbs.cnrs.fr/NPK/) program is based on some of the original `FORTRAN` code, wrapped in Java and Python, which allows to control all the program possibilities from the Python level.\nNPK is purely a computing kernel, with no graphical possibilities, and has been used as a kernel embedded in the commercial program NMRNoteBook, commercialized by NMRTEC.\n\nHowever, NPK was showing many weaknesses, mostly due to the 32bits organization, and a poor file format. So, when a strong scientific environment became available in Python, a rewrite in pure Python was undertaken. To this initial project, called NPK-V2, many new functionalities were added, and mostly the capability to work in other spectroscopies than NMR.\n\nAt some point in 2014, we chose to fork NPK-V2 to SPIKE, and make it public.\n\n# Developing for SPIKE\n**SPIKE** is an open-source program, this means that external contributions are welcomed.\nIf you believe your improvement is useful for other people, please submit a `pull request`.\n**Note** that pull request should be associated to the `devel` branch.\nThis branch is devoted to new features not fully tested yet and still susceptible of changes,\nwhile the `default` branch is meant for stable code.\n\n## plugins\nIf you consider adding some new feature, it is probably a good idea to implement it as a plugin.\nThe code contains already quite a few plugins, some are quite sophisticated - see `Peaks.py` for instance which implements a 1D and 2D peak picker, as well as a centroid evaluation and a full listing capability.\n\nYou can check also `fastclean.py` for a very simple plugin, or `wavelet.py` for a plugin relying on an external library which has to be installed.\n\n## Some Good Practice\n\n- Spike contains many tools, most of the basic function for data interaction are found in the `NPKData.py` master file; utilities are also scattered in the `util` module.\nUse then, life will be easier for the users.\n- Please write tests, even for the plugins ! We use standard python `unittest`, so nothing fancy. All the tests are run automatically every night (code is `Tests.py`), so it will detect rapidly all potential problem.\n- push your pull requests to the `devel` branch - `default` is for the stable releases.\n\n## Organisation of the Code ##\n\nThe main program is `NPKData.py`, which defines NPKData object on which everything is built.\n\nSpectroscopies are defined in the `FTICR.py` and `Orbitrap.py` code, which sub class NPKData.\nIt is prototyped as an NMR data-set. This set-up is temporary.\n\nMany programs contain routines tests (in an object unittest) that also serve as an example of use.\nThe code goes through extensive tests daily, using the `unittest` Python library. However, many tests rely on a set of tests data-sets which is more than 1Go large, and not distributed here.\n\n\n### Main programs :\na small description of the files:\n\n- NPKData.py\n the main library, allows all processing for NMR experiments (1D, 2D and 3D)\n to be used as a library, in a stand-alone program or in IPython interactive session\n- FTICR.py\n an extension of NPKData for processing FT-ICR datasets (1D and 2D)\n- Orbitrap.py\n an extension of NPKData for processing Orbitrap datasets (1D)\n\n- processing.py\n a stand alone program, written on the top of FTICR.py, allowing the efficient processing\n of FT-ICR 2D datasets, with no limit on the size of the final file\n Produces multi-resolution files\n syntax : \n \n ```\n python -m spike.processing param_file.mscf\n ```\n \n- visu2D.py\n an interactive tool for visualizing 2D FT-ICR multi-resolution files \n \n ```\n python -m spike.visu2D param_file.mscf\n ```\n\n### Directories\n- *Algo* \n contains algorithms to process data-sets\n (MaxEnt, Laplace, etc...) not everything active !\n- *Display* \n a small utility to choose either for regular Matplotlib display of fake no-effect display (for tests)\n- *File* \n Importers for various file format for spectrometry, as well as the HDF5 SPIKE native format.\n- *plugins* \n Tools automatically plugged in NPK kernel : display utilities, urQRd algorithm and various other tools. \n- *Miscellaneous* \n \"en vrac\"\n- *util* \n set of low-level tools used all over in the code\n- *v1* \n a library implementing a partial compatibility with the NPKV_V1 program\n- *SPIKE_usage_eg* \n example of Python programs using the various libraries available\n- *example of configuration files* \n - process_eg.mscf\n - test.mscf\n\n- and *various utilities*\n\n - NPKConfigParser.py \n \treads .mscf files\n - NPKError.py \n \tgenerates error msg\n - QC.py \n \tQuality Check\n - Tests.py \n \truns all tests\n - dev_setup.py \n \t\trolls a new version\n - version.py \n \tdefines version number\n - \\__init\\__.py \n \tdefines library\n - rcpylint\t\t\t\t\n - To_Do_list.txt \n - QC.txt \n - Release.txt \n\n### Authors and Licence ###\nCurrent Active authors for SPIKE are:\n\n- Marc-André Delsuc `madelsuc -at- unistra.fr`\n- Laura Duciel `laura.duciel -at- casc4de.eu`\n\nPrevious authors:\n\n- Christian Rolando `christian.rolando -at- univ-lille1.fr`\n- Lionel Chiron `Lionel.Chiron -at- casc4de.eu`\n- Petar Markov `petar.markov -at- igbmc.fr`\n- Marie-Aude Coutouly . `Marie-Aude.COUTOULY - at- datastorm.fr`\n\nCovered code is provided under this license on an \"as is\" basis, without warranty of any kind, either expressed or implied, including, without limitation, warranties that the covered code is free of defects. The entire risk as to the quality and performance of the covered code is with you. Should any covered code prove defective in any respect, you (not the initial developer or any other contributor) assume the cost of any necessary servicing, repair or correction.\n\nDownloading code and datasets from this page signifies acceptance of the hereunder License Agreement. The code distributed here is covered under the CeCILL license : http://www.cecill.info/index.en.html", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://bitbucket.org/delsuc/spike", "keywords": "", "license": "CeCILL-2.1", "maintainer": "", "maintainer_email": "", "name": "spike-py", "package_url": "https://pypi.org/project/spike-py/", "platform": "", "project_url": "https://pypi.org/project/spike-py/", "project_urls": { "Homepage": "https://bitbucket.org/delsuc/spike" }, "release_url": "https://pypi.org/project/spike-py/0.99.12/", "requires_dist": null, "requires_python": "", "summary": "The SPIKE program. A collaborative development for a FT-spectroscopy processing program", "version": "0.99.12" }, "last_serial": 5813042, "releases": { "0.6.0": [ { "comment_text": "", "digests": { "md5": "3720409e52e60c6e5a199a72572657b7", "sha256": "0183ecc5cb8c8f87427179c8f0d86020a16723331785b2ba6e3ddd18e071f4af" }, "downloads": -1, "filename": "spike_py-0.6.0.tar.gz", "has_sig": false, "md5_digest": "3720409e52e60c6e5a199a72572657b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 300175, "upload_time": "2015-03-02T18:51:25", "url": "https://files.pythonhosted.org/packages/81/b7/e45f2c6095f81e5f566d92ab2c0a7c4d02b7ca721252c716746ee175ff5f/spike_py-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "6a41e990ae37a70dbcb588f2d919cb88", "sha256": "b6921d48676301dd2770e5ee40ff6ff21fde9ee4d0768c464265a5e0fbbfe151" }, "downloads": -1, "filename": "spike_py-0.6.1.tar.gz", "has_sig": false, "md5_digest": "6a41e990ae37a70dbcb588f2d919cb88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 320783, "upload_time": "2015-03-03T09:10:00", "url": "https://files.pythonhosted.org/packages/ba/8e/1732f02cc2b7b159f0cb5b5b4733fef2274cf5ee4c8bb5d28acb1f87cc15/spike_py-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "01c456113c8a02bbd5e974ac2fd1e2aa", "sha256": "f235b7673f2e8f805cf219d5dd9476eefb4d443ce6df5d053a0ddeb8358d9141" }, "downloads": -1, "filename": "spike_py-0.6.2.tar.gz", "has_sig": false, "md5_digest": "01c456113c8a02bbd5e974ac2fd1e2aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 321885, "upload_time": "2015-03-03T10:09:39", "url": "https://files.pythonhosted.org/packages/e0/e2/2248d7cff13ab343802a4886eb4b3ecda588a69d9be3c8ae956b5bf50295/spike_py-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "2412213c38313cdeef4bacfaffb930ef", "sha256": "e962bd6049eea6ed45eab7cfd2c84c6fc1e63fe456f2d2eb7254ceb1f997a871" }, "downloads": -1, "filename": "spike_py-0.6.3.tar.gz", "has_sig": false, "md5_digest": "2412213c38313cdeef4bacfaffb930ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 303806, "upload_time": "2015-03-03T11:06:36", "url": "https://files.pythonhosted.org/packages/f7/43/225dbc094b2e3942370377ed249cfe594e0ae2349cdf5abfc841e43262c9/spike_py-0.6.3.tar.gz" } ], "0.99.10": [ { "comment_text": "", "digests": { "md5": "5a405aefe277d45de4284c0366a06e7f", "sha256": "197a96844422d2eb12f5d161c20bc6f8b7269e81fed34160fe17d97b8f64a801" }, "downloads": -1, "filename": "spike_py-0.99.10.tar.gz", "has_sig": false, "md5_digest": "5a405aefe277d45de4284c0366a06e7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13179823, "upload_time": "2019-07-30T15:53:32", "url": "https://files.pythonhosted.org/packages/a8/54/d0e103f4f13ad9d3ba2ad6f67c45bb95f44b46995f39bfe8a2313aa9dbda/spike_py-0.99.10.tar.gz" } ], "0.99.11": [ { "comment_text": "", "digests": { "md5": "c1ef08c4cf5678d85da230d104e6bae6", "sha256": "645d4818149a638f0f6165281efeeca3590aa467fa482c461f418828919dbbfc" }, "downloads": -1, "filename": "spike_py-0.99.11.tar.gz", "has_sig": false, "md5_digest": "c1ef08c4cf5678d85da230d104e6bae6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15839682, "upload_time": "2019-09-10T08:20:31", "url": "https://files.pythonhosted.org/packages/70/c4/4b9d4f1f8d84592d14e1494e554bd637c87f3f8e6eb3b2275a4babbb6992/spike_py-0.99.11.tar.gz" } ], "0.99.12": [ { "comment_text": "", "digests": { "md5": "be2815b7185be8542aaa3471a82e9957", "sha256": "41d77ff8cf859f7465bffa96c9b724742b7ef6e7eb22f231f17e05c6c0e2b42f" }, "downloads": -1, "filename": "spike_py-0.99.12.tar.gz", "has_sig": false, "md5_digest": "be2815b7185be8542aaa3471a82e9957", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15824784, "upload_time": "2019-09-11T06:00:09", "url": "https://files.pythonhosted.org/packages/21/31/957f0a29e601133581f3df4258d4995c42462f18c03c209dac18ad3598dd/spike_py-0.99.12.tar.gz" } ], "0.99.4": [ { "comment_text": "", "digests": { "md5": "d32cfcd55f79470c84e1b6ca16e150ee", "sha256": "7501bd52393df1a3666edc6697c738c63ee4e836aa8c4f2daac21a4d0aa68fb7" }, "downloads": -1, "filename": "spike_py-0.99.4.macosx-10.7-x86_64.tar.gz", "has_sig": false, "md5_digest": "d32cfcd55f79470c84e1b6ca16e150ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 784280, "upload_time": "2019-04-09T13:55:48", "url": "https://files.pythonhosted.org/packages/ef/66/3209233ab7c82f14396c23cc8b00c08d5cbed0b2b84509ca34b186fc322b/spike_py-0.99.4.macosx-10.7-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "91d0747d56610ffa65574dd42256931b", "sha256": "6f6dac620a547f182eb7b088ad2a61ddeea897427682eaf14ac2f3a878a07343" }, "downloads": -1, "filename": "spike_py-0.99.4-py3-none-any.whl", "has_sig": false, "md5_digest": "91d0747d56610ffa65574dd42256931b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 459242, "upload_time": "2019-04-09T13:55:46", "url": "https://files.pythonhosted.org/packages/39/5c/76ae6bbdbc4b0ca437ceb7430d0edd6961a2fa557290afc78f03705b1b09/spike_py-0.99.4-py3-none-any.whl" } ], "0.99.5": [ { "comment_text": "", "digests": { "md5": "c66c9cc1bed1bbce8ba7074b8a1ec0b5", "sha256": "2c192b96085b70cc80d649d171020cc62fd3f5ce9afd3fec37a9f40922d07440" }, "downloads": -1, "filename": "spike_py-0.99.5.tar.gz", "has_sig": false, "md5_digest": "c66c9cc1bed1bbce8ba7074b8a1ec0b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1225124, "upload_time": "2019-04-10T13:58:20", "url": "https://files.pythonhosted.org/packages/96/01/59d5c731c6d48568b749a9716edd667e842cfc19c26a387f84b6277f8649/spike_py-0.99.5.tar.gz" } ], "0.99.6": [ { "comment_text": "", "digests": { "md5": "1af93ba5db621439ff3ad579dbd8c89e", "sha256": "160f9085ad85cb7242b2e5dd1d13bfdcf440ed73659efaed0c9785738150e5a5" }, "downloads": -1, "filename": "spike_py-0.99.6-py3-none-any.whl", "has_sig": false, "md5_digest": "1af93ba5db621439ff3ad579dbd8c89e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 444703, "upload_time": "2019-04-12T13:36:03", "url": "https://files.pythonhosted.org/packages/48/b7/f757b04a0d42d3719e6ceff082beb6028e076f493c35dd16657e95288806/spike_py-0.99.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "77df62a4932bc1e86ca0ba403d2833d0", "sha256": "ac481f6cd661beba24592e6b05c291ac1122e4c9895e596d7145d08820de2aac" }, "downloads": -1, "filename": "spike_py-0.99.6.tar.gz", "has_sig": false, "md5_digest": "77df62a4932bc1e86ca0ba403d2833d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1224613, "upload_time": "2019-04-12T13:36:19", "url": "https://files.pythonhosted.org/packages/20/76/c5827d729b0421eec51071427bd54bab50c46888523b7a5a0afa8c7a8df3/spike_py-0.99.6.tar.gz" } ], "0.99.7": [ { "comment_text": "", "digests": { "md5": "0842ecf74c1ba053ede6c885bc43d1b5", "sha256": "f47aba9452f91d70a4acf35678d1e600bd37b380162e219c92a27a4dc30e0323" }, "downloads": -1, "filename": "spike_py-0.99.7-py3-none-any.whl", "has_sig": false, "md5_digest": "0842ecf74c1ba053ede6c885bc43d1b5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 452137, "upload_time": "2019-04-25T08:36:00", "url": "https://files.pythonhosted.org/packages/7e/8b/e9e3ad2d3663d5e9daf93cab74b2677e32f041087b4990cfdaf36a413872/spike_py-0.99.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9cc391462e0c67cc758a3b4119c12aa8", "sha256": "4597919ecfa9d06f8818fa9bc38a1f3c3422e63adc4948217e96f13e5d81f59a" }, "downloads": -1, "filename": "spike_py-0.99.7.tar.gz", "has_sig": false, "md5_digest": "9cc391462e0c67cc758a3b4119c12aa8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2829105, "upload_time": "2019-04-25T08:36:02", "url": "https://files.pythonhosted.org/packages/68/a6/b8172b5f7fc828d1eede32fe15b28581e96c5823ba4fc073dac9e9f75192/spike_py-0.99.7.tar.gz" } ], "0.99.8": [ { "comment_text": "", "digests": { "md5": "e9b06f0580bacaa6cfe3d7085d315c27", "sha256": "fe06bef2348cd04668c1f67f34e5d934939492917e639cdb58ead9c2b2c6416b" }, "downloads": -1, "filename": "spike_py-0.99.8.tar.gz", "has_sig": false, "md5_digest": "e9b06f0580bacaa6cfe3d7085d315c27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2827530, "upload_time": "2019-04-25T11:04:25", "url": "https://files.pythonhosted.org/packages/8f/a6/a3ad6969b8cc426433b7d8ac1a7bb0fcea35b6017469b8057be4515ffd8c/spike_py-0.99.8.tar.gz" } ], "0.99.9": [ { "comment_text": "", "digests": { "md5": "03118494027a9711886de29cbdf3febd", "sha256": "5369fb8dbe953eb2a912040bafdab17d9db5829fe429260aa37723474af0e2c9" }, "downloads": -1, "filename": "spike_py-0.99.9.tar.gz", "has_sig": false, "md5_digest": "03118494027a9711886de29cbdf3febd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4339201, "upload_time": "2019-06-27T14:29:47", "url": "https://files.pythonhosted.org/packages/47/28/6a6ad438c134fb70733a7a3752007b239c86083bddc06d548e24b83fd169/spike_py-0.99.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "be2815b7185be8542aaa3471a82e9957", "sha256": "41d77ff8cf859f7465bffa96c9b724742b7ef6e7eb22f231f17e05c6c0e2b42f" }, "downloads": -1, "filename": "spike_py-0.99.12.tar.gz", "has_sig": false, "md5_digest": "be2815b7185be8542aaa3471a82e9957", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15824784, "upload_time": "2019-09-11T06:00:09", "url": "https://files.pythonhosted.org/packages/21/31/957f0a29e601133581f3df4258d4995c42462f18c03c209dac18ad3598dd/spike_py-0.99.12.tar.gz" } ] }