{ "info": { "author": "Jeremie DECOCK and Tino Michael", "author_email": "jd.jdhp@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. image:: https://travis-ci.org/jeremiedecock/pywi-cta.svg?branch=master\n :target: https://travis-ci.org/jeremiedecock/pywi-cta\n\n=================================\nPyWI CTA - A CTA wrapper for PyWI\n=================================\n\nCopyright (c) 2016-2018 Jeremie DECOCK (www.jdhp.org)\n\n* Web site: http://cta.pywi.org/\n* Online documentation: http://cta.pywi.org/docs/\n* Source code: https://github.com/jeremiedecock/pywi-cta\n* Issue tracker: https://github.com/jeremiedecock/pywi-cta/issues\n* PyWI-CTA on PyPI: https://pypi.org/project/pywicta/\n* PyWI-CTA on Anaconda Cloud: https://anaconda.org/jdhp/pywicta\n\n.. Former documentation: http://sap-cta-data-pipeline.readthedocs.io/en/latest/\n\n.. Former documentation: https://jeremiedecock.github.io/pywi-cta/\n\nDescription\n===========\n\nPyWI-CTA is a ctapipe_ wrapper for PyWI_.\n\n.. warning::\n\n This project is in beta stage.\n\nFeatures\n========\n\nThe PyWI and PyWI-CTA libraries contain:\n\n* wavelet transform and wavelet filtering functions for image multiresolution\n analysis and filtering;\n* additional filter to remove some image components (non-significant pixels\n clusters);\n* a set of generic filtering performance estimators (MSE, angular precision,\n energy loss, contamination rate, ...), some relying on the scikit-image\n Python library (supplementary estimators can be easily added to meet\n particular needs);\n* a graphical user interface to visualize the filtering process in the wavelet\n transformed space;\n* an Evolution Strategies (ES) algorithm known in the mathematical optimization\n community for its good convergence rate on generic derivative-free continuous\n global optimization problems (Beyer, H. G. (2013) \"The theory of evolution\n strategies\", Springer Science & Business Media);\n* additional tools to manage and monitor the parameter optimization.\n\nDependencies\n============\n\n.. Highly inspired by http://docs.astropy.org/en/stable/_sources/install.rst.txt\n\nPyWI-CTA has the following strict requirements:\n\n* `Python `_ 3.5 or 3.6\n* `Numpy `_\n* ctapipe_ 0.6.1\n* pyhessio 2.0.1\n\nPyWI-CTA also depends on other packages for optional features:\n\n* `Scipy `_\n* `Scikit-image `_\n* `Pillow (a.k.a. PIL) `_ to read and write many image formats (PNG, JPEG, TIFF, ...)\n* `Astropy `_ to provide Fits file format\n* `Pandas `_\n* `Matplotlib `_ 1.5 or later to provide plotting functionality\n* PyWI_\n* `Cosmostat iSAP Sparce2D `_\n\nHowever, note that these only need to be installed if those particular features\nare needed. `pywicta` will import even if these dependencies are not installed.\n\n.. _install:\n\nInstallation\n============\n\nPyWI-CTA and its dependencies may be installed using the *Anaconda* or\n*Miniconda* package system. We recommend creating a conda virtual environment\nfirst, to isolate the installed version and dependencies from your master\nenvironment (this is optional).\n\nThe following command will set up a conda virtual environment, add the\nnecessary package channels, and download PyWI-CTA and its dependencies. The\nfile *environment.yml* can be found in this repository. \nNote this is *beta* stage software and is not yet stable enough for end-users\n(expect large API changes until the first stable 1.0 release).\n\n::\n\n conda env create -n pywi-cta -f environment.yml\n source activate pywi-cta\n pip install pywicta --no-deps\n\nIf you have already installed *ctapipe* following the\n`official installation procedure `_,\nyou can add PyWI-CTA to the *cta* virtual environment like this::\n\n source activate cta\n pip install pywicta --no-deps\n\nDevelopers should follow the development install instructions found in the\n`documentation `_.\n\n.. note::\n\n As *ctapipe* is not tested to work on Microsoft Windows systems, PyWI-CTA\n does not officially support these systems neither.\n\n.. note::\n\n The ``--no-deps`` flag is optional, but highly recommended otherwise pip\n will sometimes try to \"help\" you by upgrading PyWI-CTA dependencies like\n Numpy, which may not always be desired.\n\nCosmostat iSAP Sparce2D installation (optional)\n===============================================\n\n1. Download http://www.cosmostat.org/wp-content/uploads/2014/12/ISAP_V3.1.tgz (see http://www.cosmostat.org/software/isap/)\n2. Unzip this archive, go to the \"sparse2d\" directory and compile the sparse2d\n library. It should generate two executables named ``mr_transform`` and ``mr_filter``::\n\n tar -xzvf ISAP_V3.1.tgz\n cd ISAP_V3.1/cxx\n tar -xzvf sparse2d_V1.1.tgz\n cd sparse2d\n compile the content of this directory\n\nAn automated compilation and installation script for Linux is available\n`here `_\n(author: `Tino Michael `_).\n\n.. Also available in `utils/compile_isap_sparce2d.sh`\n\nGetting started: tutorial Notebooks\n===================================\n\nPyWI-CTA provides some Jupyter notebooks that can be used as examples or tutorials: https://github.com/jeremiedecock/pywi-cta-notebooks.\nNew users should check them in the following order:\n\n* Tutorial #0: `Check PyWI-CTA install `_\n* Tutorial #1a: `Load and plot a FITS image using PyWI-CTA `_\n* Tutorial #1b: `Load and plot a Simtel event using PyHESSIO `_\n* Tutorial #1c: `Load and plot a Simtel image using PyWI-CTA `_\n* Tutorial #1d: `Plot Hillas parameters using PyWI-CTA `_\n* Tutorial #2a: `Tailcut cleaning with PyWI-CTA `_\n* Tutorial #2b: `Plot Starlet planes with PyWI-CTA `_\n* Tutorial #2c: `Starlet cleaning with PyWI-CTA `_\n* Tutorial #3a: `Tailcut interactive notebook `_\n* Tutorial #3b: `Starlet cleaning interactive notebook `_\n* Tutorial #3c: `Wavelet Sparce2D MrTransform interactive notebook `_\n* Tutoriel #4a: `Optimize Tailcut thresholds with exhaustive search `_\n* Tutoriel #4b: `Optimize Starlet thresholds with exhaustive search `_\n* Tutoriel #4c: `Optimize Tailcut thresholds with Differential Evolution `_\n* Tutoriel #4d: `Optimize Starlet thresholds with Differential Evolution `_\n\nRecommended JupyterLab extensions for these tutorials (type the following commands in a terminal within the right conda environment)::\n\n jupyter labextension install @jupyter-widgets/jupyterlab-manager\n jupyter labextension install @jupyterlab/toc\n jupyter labextension install @ijmbarr/jupyterlab_spellchecker\n\n.. PyWI Notebooks on Anaconda Cloud: https://anaconda.org/jdhp/notebooks\n\nConsole usage example\n=====================\n\nPyWI-CTA can also be used through console commands. The following is an usage example:\n\n1. Get a simtel file (e.g. from `there `_)\n2. In your system terminal, from the directory that contains the sample image,\n type the following commands (where `SIMTEL_FILE` is the path to your simtel\n file)::\n \n pywicta-starlet -f common_hard_filtering -t 13.,1.5 -L mask --camid LSTCam --max-images 1 --plot SIMTEL_FILE\n pywicta-mrtransform -f common_hard_filtering -t 13.,1.5 -L mask --camid LSTCam --max-images 1 --plot SIMTEL_FILE\n pywicta-mrfilter -K -k -C1 -m3 -n4 -s2,4.5,3.5,3 --kill-isolated-pixels --camid LSTCam --max-images 1 --plot SIMTEL_FILE\n\n3. Type ``pywicta-starlet -h``, ``pywicta-mrtransform -h`` or ``pywicta-mrfilter -h`` to display the list of\n available options and their documentation.\n\n.. A \"benchmark mode\" can also be used to clean images and assess cleaning\n.. algorithms (it's still a bit experimental): use the additional option ``-b all``\n.. in each command (and put several fits files in input e.g. ``\\*.fits``)\n\nAnalysis results\n================\n\nNotebooks containing the analysis results can be found there: https://gitlab.com/jdhp/pywi-cta-analysis\n\n* `LST analysis (essential plots) `_\n* `LST analysis (very detailed) `_\n\nBug reports\n===========\n\nTo search for bugs or report them, please use the PyWI Bug Tracker at:\n\n https://github.com/jeremiedecock/pywi-cta/issues\n\n\n.. _PyWI: http://www.pywi.org/\n.. _ctapipe: https://github.com/cta-observatory/ctapipe\n.. _command prompt: https://en.wikipedia.org/wiki/Cmd.exe\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/jeremiedecock/pywi-cta", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/jeremiedecock/pywi-cta", "keywords": "wavelet imaging cherenkov telescope array", "license": "", "maintainer": "", "maintainer_email": "", "name": "pywicta", "package_url": "https://pypi.org/project/pywicta/", "platform": "", "project_url": "https://pypi.org/project/pywicta/", "project_urls": { "Download": "https://github.com/jeremiedecock/pywi-cta", "Homepage": "https://github.com/jeremiedecock/pywi-cta" }, "release_url": "https://pypi.org/project/pywicta/0.4.dev3/", "requires_dist": null, "requires_python": "", "summary": "PyWI CTA wrapper - a signal processing library for Imaging Atmospheric Cherenkov Telescopes", "version": "0.4.dev3" }, "last_serial": 4966328, "releases": { "0.1.dev16": [ { "comment_text": "", "digests": { "md5": "9a8384db02814e1c46ba84738c6f3553", "sha256": "7acd86d4ecbd42212e9a66e2eeaa88cc3b02276a0ca3ef42a1de054503e347e1" }, "downloads": -1, "filename": "pywicta-0.1.dev16.tar.gz", "has_sig": false, "md5_digest": "9a8384db02814e1c46ba84738c6f3553", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124335, "upload_time": "2018-03-23T12:25:49", "url": "https://files.pythonhosted.org/packages/23/23/00ab90165bc0f30d54d25b5189d6d0b70cdb4de92405c680d3bbcdea9204/pywicta-0.1.dev16.tar.gz" } ], "0.1.dev17": [ { "comment_text": "", "digests": { "md5": "36dce54ef6500cc73e9597aca1c8da0d", "sha256": "37a272c00b93b340d3d375a59c0279024c6db42f53a7ca3b8379f40ddb0c7516" }, "downloads": -1, "filename": "pywicta-0.1.dev17.tar.gz", "has_sig": false, "md5_digest": "36dce54ef6500cc73e9597aca1c8da0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124527, "upload_time": "2018-03-23T12:47:25", "url": "https://files.pythonhosted.org/packages/36/d8/c73ee99a4357c860945d426a9388362042a4ade4398eed0ba810a4f0513f/pywicta-0.1.dev17.tar.gz" } ], "0.1.dev18": [ { "comment_text": "", "digests": { "md5": "5180a29931ef040740357ce8f2d47ae0", "sha256": "6cf03b67a3ab4ffb6a5c0e504e38309cb1f2d311517bb82f8b60e8146f680f2e" }, "downloads": -1, "filename": "pywicta-0.1.dev18.tar.gz", "has_sig": false, "md5_digest": "5180a29931ef040740357ce8f2d47ae0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124458, "upload_time": "2018-03-23T12:58:58", "url": "https://files.pythonhosted.org/packages/dd/69/dd1fe2b45b1336f19c01b6b8f36d3ea7013618d2c244f62743bd4c27c1f9/pywicta-0.1.dev18.tar.gz" } ], "0.1.dev19": [ { "comment_text": "", "digests": { "md5": "154db243ada0202177c4bc407f97affd", "sha256": "8222b29b0149f070693e0eff7f6e4697d46a893caf0beb61e598e4c19c74269f" }, "downloads": -1, "filename": "pywicta-0.1.dev19.tar.gz", "has_sig": false, "md5_digest": "154db243ada0202177c4bc407f97affd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124448, "upload_time": "2018-03-23T13:08:04", "url": "https://files.pythonhosted.org/packages/29/de/1ada95bc86bcd673a51da57bfb17756ba36f4d50bbf7771ef6bdfa5c241f/pywicta-0.1.dev19.tar.gz" } ], "0.1.dev20": [ { "comment_text": "", "digests": { "md5": "568537b681e9957f0a5e3459f3347592", "sha256": "a93c01b3b424b76854f6829017cbe0c59c2ad3b025dd3664f8aaaea5af19a108" }, "downloads": -1, "filename": "pywicta-0.1.dev20.tar.gz", "has_sig": false, "md5_digest": "568537b681e9957f0a5e3459f3347592", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186913, "upload_time": "2018-03-23T13:32:31", "url": "https://files.pythonhosted.org/packages/f9/e2/455ef17e6998c78058fa2a17d9f42e09c6b950d9f3099c6e7b5d7b892857/pywicta-0.1.dev20.tar.gz" } ], "0.1.dev21": [ { "comment_text": "", "digests": { "md5": "156954d928aa1ce57860cfa4800cb94f", "sha256": "0b2351d5649d4b0070073a05683ebc2269167eba2f563f38c81feed427bd8c8c" }, "downloads": -1, "filename": "pywicta-0.1.dev21.tar.gz", "has_sig": false, "md5_digest": "156954d928aa1ce57860cfa4800cb94f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188566, "upload_time": "2018-03-23T16:22:40", "url": "https://files.pythonhosted.org/packages/d5/e2/bac10b78e2449fbd931882b0d613c14e78a740103d66a6483b2fde1caf29/pywicta-0.1.dev21.tar.gz" } ], "0.1.dev22": [ { "comment_text": "", "digests": { "md5": "14f0564f38a1424832dd292e1435d1dc", "sha256": "f033f54ea050ec29f0b84590bd287f7377863d38bb885a77d2203143131616ff" }, "downloads": -1, "filename": "pywicta-0.1.dev22.tar.gz", "has_sig": false, "md5_digest": "14f0564f38a1424832dd292e1435d1dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189338, "upload_time": "2018-03-26T22:02:32", "url": "https://files.pythonhosted.org/packages/e9/80/33340ffa6d82b25be048533a76d59ac22d43bde5ef43000230d494d35718/pywicta-0.1.dev22.tar.gz" } ], "0.1.dev23": [ { "comment_text": "", "digests": { "md5": "f46d1cde7d4e4087df8d3875e23bf896", "sha256": "1d70ed3d8b1b3c2be8380cac75cec59e624386859bae569a1baecdaaa71ece1d" }, "downloads": -1, "filename": "pywicta-0.1.dev23.tar.gz", "has_sig": false, "md5_digest": "f46d1cde7d4e4087df8d3875e23bf896", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189374, "upload_time": "2018-03-26T22:13:28", "url": "https://files.pythonhosted.org/packages/26/f3/ec1559c085c94aad3dbe1b3e166a418db95d76a7cbfd4de9f539b878be4a/pywicta-0.1.dev23.tar.gz" } ], "0.1.dev24": [ { "comment_text": "", "digests": { "md5": "a64db9bfebab3bc5d64f7462beb46367", "sha256": "500be29214f876841b3f4738e2d640dd79a35681f4e648cd7414b001a40ccdf5" }, "downloads": -1, "filename": "pywicta-0.1.dev24.tar.gz", "has_sig": false, "md5_digest": "a64db9bfebab3bc5d64f7462beb46367", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189394, "upload_time": "2018-03-26T22:18:02", "url": "https://files.pythonhosted.org/packages/90/3f/9fb1c4aed700c6611e2d969f6d98ccd82c876e8f153433da4f840f4029fb/pywicta-0.1.dev24.tar.gz" } ], "0.1.dev25": [ { "comment_text": "", "digests": { "md5": "6cac743f6447a5c900fce10bdb43e0ae", "sha256": "d58cbc5d5882747f16951020aa4ecb8a2620ce89625973aaa21df8ca65998f05" }, "downloads": -1, "filename": "pywicta-0.1.dev25.tar.gz", "has_sig": false, "md5_digest": "6cac743f6447a5c900fce10bdb43e0ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187466, "upload_time": "2018-03-29T09:53:04", "url": "https://files.pythonhosted.org/packages/fd/b3/ad6cbca1aeaf8af2ac3af38de7e46fa8aae2cf3190bc2a800da40e3589cc/pywicta-0.1.dev25.tar.gz" } ], "0.1.dev26": [ { "comment_text": "", "digests": { "md5": "4300400d3a9e10dc13b48307810e31b3", "sha256": "29f21ad3797f78ec1ae89dcbfbfaacfaf3bb3eb7fd91091bb026732aab5b61e5" }, "downloads": -1, "filename": "pywicta-0.1.dev26.tar.gz", "has_sig": false, "md5_digest": "4300400d3a9e10dc13b48307810e31b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188754, "upload_time": "2018-04-05T15:23:58", "url": "https://files.pythonhosted.org/packages/6f/48/525a1a100bad7e066568d61c8bfca8ae9a625e99cacde34b0183c877b651/pywicta-0.1.dev26.tar.gz" } ], "0.1.dev27": [ { "comment_text": "", "digests": { "md5": "781d921d1389de0f09242944d5a717b4", "sha256": "9fa81ff539a27bcfcbcd0f2c1231e6014a1615cc5b789e4743e1029112b43b8a" }, "downloads": -1, "filename": "pywicta-0.1.dev27.tar.gz", "has_sig": false, "md5_digest": "781d921d1389de0f09242944d5a717b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188789, "upload_time": "2018-04-05T15:31:36", "url": "https://files.pythonhosted.org/packages/94/62/d13f67f529adf6961f51736bc3374122a8ebde26954c56b4444c6c8bf5d7/pywicta-0.1.dev27.tar.gz" } ], "0.1.dev28": [ { "comment_text": "", "digests": { "md5": "4ef3817702d6a3426348c2525d9f1c4c", "sha256": "6f55a41a72a9ad33f127edf4d5b43c4c7702ac4375328b8966cc23ccabdadfcd" }, "downloads": -1, "filename": "pywicta-0.1.dev28.tar.gz", "has_sig": false, "md5_digest": "4ef3817702d6a3426348c2525d9f1c4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189168, "upload_time": "2018-04-06T16:30:40", "url": "https://files.pythonhosted.org/packages/56/29/2951b52659e1732566df442f22895cbeeacbf07a6ddf2f8f487d08e34522/pywicta-0.1.dev28.tar.gz" } ], "0.1.dev29": [ { "comment_text": "", "digests": { "md5": "6ca7b66dc735fb8ed96c1dfdff679c53", "sha256": "ef35eb75a4521fe92e65d251a6dd4f81f71fc21fae11d2d57afdfa339e29082a" }, "downloads": -1, "filename": "pywicta-0.1.dev29.tar.gz", "has_sig": false, "md5_digest": "6ca7b66dc735fb8ed96c1dfdff679c53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197874, "upload_time": "2018-05-05T10:18:13", "url": "https://files.pythonhosted.org/packages/75/de/2246ba83a35f1556a994b9bdcbfabb364155c42668d7b2f8422bd0ad2f37/pywicta-0.1.dev29.tar.gz" } ], "0.1.dev30": [ { "comment_text": "", "digests": { "md5": "5e52005391e282168bef680205573d9c", "sha256": "ed38c4bd3e21796e9ffbe57d954eadf636faa88dd9757a015cefb977c59c16b4" }, "downloads": -1, "filename": "pywicta-0.1.dev30.tar.gz", "has_sig": false, "md5_digest": "5e52005391e282168bef680205573d9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189416, "upload_time": "2018-05-07T13:04:44", "url": "https://files.pythonhosted.org/packages/05/e4/0d423b53b6e9d89f8aa300738de08f2d9b50e7c3a3ab46643ed10ea6155b/pywicta-0.1.dev30.tar.gz" } ], "0.1.dev31": [ { "comment_text": "", "digests": { "md5": "615f62acc88e696d4da1efe2a50ac9ac", "sha256": "2ee30074c679f00fa5c990768170967251ce531a6b63facc1d8c222d3dadc88d" }, "downloads": -1, "filename": "pywicta-0.1.dev31.tar.gz", "has_sig": false, "md5_digest": "615f62acc88e696d4da1efe2a50ac9ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189489, "upload_time": "2018-05-09T18:14:10", "url": "https://files.pythonhosted.org/packages/eb/04/18afcaf023a1a7ec1a2cc49e01ac4d5e2c39637761a314de3fd4ff258e9a/pywicta-0.1.dev31.tar.gz" } ], "0.1.dev32": [ { "comment_text": "", "digests": { "md5": "aeaa11b9f11e2d4aec7a7ad95f94fea4", "sha256": "e7645fe8d2ffd3a899f2aa6834c0bd0d7dc31e2e50150cda8017ca1b6572e02b" }, "downloads": -1, "filename": "pywicta-0.1.dev32.tar.gz", "has_sig": false, "md5_digest": "aeaa11b9f11e2d4aec7a7ad95f94fea4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1794731, "upload_time": "2018-05-10T21:12:22", "url": "https://files.pythonhosted.org/packages/1a/31/ed85195e43befca7388536f48aa3d78b98a6eb9c03884fe8e725de4d5e52/pywicta-0.1.dev32.tar.gz" } ], "0.1.dev33": [ { "comment_text": "", "digests": { "md5": "df847c8c3687c05c2a20c2120374eb39", "sha256": "c02c02a447f934cada03c628801a5a2966198eb73b8ba1b7634c9914a71d5cc4" }, "downloads": -1, "filename": "pywicta-0.1.dev33.tar.gz", "has_sig": false, "md5_digest": "df847c8c3687c05c2a20c2120374eb39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1797523, "upload_time": "2018-06-11T13:55:43", "url": "https://files.pythonhosted.org/packages/27/03/f6573a422d916156454529f344a122d3db9af76df1cd8e669815ed7a9472/pywicta-0.1.dev33.tar.gz" } ], "0.1.dev6": [ { "comment_text": "", "digests": { "md5": "277fd67071ef41aec29252fdd8046faf", "sha256": "0480a9beda6b7a5b89691e344c4cdc03cdbaa2a8f387f54c79f4da9e74fad677" }, "downloads": -1, "filename": "pywicta-0.1.dev6.tar.gz", "has_sig": false, "md5_digest": "277fd67071ef41aec29252fdd8046faf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120860, "upload_time": "2018-03-22T21:47:29", "url": "https://files.pythonhosted.org/packages/bc/dc/f19a5393d5e6ac8d5500cd503a6d24f434d9d11c6b3fc2b3371fe0477ba4/pywicta-0.1.dev6.tar.gz" } ], "0.1.dev7": [ { "comment_text": "", "digests": { "md5": "960c6930bd2089b95fc6da9bd659f236", "sha256": "f69dde34f9d3f81ee7d91cd254ae7b1255e26cbe47943a37b02e9cdb2122a1cb" }, "downloads": -1, "filename": "pywicta-0.1.dev7.tar.gz", "has_sig": false, "md5_digest": "960c6930bd2089b95fc6da9bd659f236", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127050, "upload_time": "2018-03-23T10:41:24", "url": "https://files.pythonhosted.org/packages/82/d1/16ffce96a019247b5f9e1bc5866ac5439855b9a528984e66dce41a03bc7b/pywicta-0.1.dev7.tar.gz" } ], "0.1.dev8": [ { "comment_text": "", "digests": { "md5": "4777b927692dea16ff18d61aa1ccd501", "sha256": "d7b1673aff50cdc2718d20bea2533000d7043c10a9fb4e4ab1f5bb105eaf0cf1" }, "downloads": -1, "filename": "pywicta-0.1.dev8.tar.gz", "has_sig": false, "md5_digest": "4777b927692dea16ff18d61aa1ccd501", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127225, "upload_time": "2018-03-23T11:01:56", "url": "https://files.pythonhosted.org/packages/d6/3d/172c66693dbb035b27da7cc9254e325b1b404a661c84aca6710e7a4c56ee/pywicta-0.1.dev8.tar.gz" } ], "0.1.dev9": [ { "comment_text": "", "digests": { "md5": "fa2d5204ca17823903e6b6118f38c146", "sha256": "ab60612eaeeba1cbc14e9dcea7169e2954de0e36b168e4afa71b745e6c7ae89a" }, "downloads": -1, "filename": "pywicta-0.1.dev9.tar.gz", "has_sig": false, "md5_digest": "fa2d5204ca17823903e6b6118f38c146", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124449, "upload_time": "2018-03-23T11:15:32", "url": "https://files.pythonhosted.org/packages/ec/c4/dd1269a704e340595d30a9b0134d8501dde44da141721e74f69a9d5100e7/pywicta-0.1.dev9.tar.gz" } ], "0.2.dev1": [ { "comment_text": "", "digests": { "md5": "8d3a7d524871261793bf170715cd454c", "sha256": "d5fbf8db203c0c6c1179de7e630b6f79183cca3677f82eadf431e43b7d08fa0e" }, "downloads": -1, "filename": "pywicta-0.2.dev1.tar.gz", "has_sig": false, "md5_digest": "8d3a7d524871261793bf170715cd454c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 304825, "upload_time": "2018-11-21T18:32:41", "url": "https://files.pythonhosted.org/packages/db/14/89de0e4f3139fa0bb68f3f7400c8d4430b617996774df8a2e8a53318fbc5/pywicta-0.2.dev1.tar.gz" } ], "0.3.dev1": [ { "comment_text": "", "digests": { "md5": "dbdab0ada09142e5fc2550157dd6d3ea", "sha256": "082dcc3cadc4be5fd950c2e9df85b40ff49ad5204c7e9add9828aac738da075f" }, "downloads": -1, "filename": "pywicta-0.3.dev1.tar.gz", "has_sig": false, "md5_digest": "dbdab0ada09142e5fc2550157dd6d3ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305651, "upload_time": "2018-12-05T00:26:10", "url": "https://files.pythonhosted.org/packages/38/27/6027acbb282119bdeb65a3d98e278f3efdfddf568ddaf8b1ae8b964ff7e9/pywicta-0.3.dev1.tar.gz" } ], "0.3.dev2": [ { "comment_text": "", "digests": { "md5": "c1dfd42601e614917c32815f322e454e", "sha256": "d900e16e85172efdfd89e4d48e6dc4e98cd0234422c954fc4a634fe086130305" }, "downloads": -1, "filename": "pywicta-0.3.dev2.tar.gz", "has_sig": false, "md5_digest": "c1dfd42601e614917c32815f322e454e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 369644, "upload_time": "2018-12-05T01:04:35", "url": "https://files.pythonhosted.org/packages/1b/e2/f77c7ba28b9867903a2f40aa383caa7105b926867cfe9e8b3aacf8cdd4e4/pywicta-0.3.dev2.tar.gz" } ], "0.3.dev3": [ { "comment_text": "", "digests": { "md5": "cf1ce8a19139f76df9a2e7264e09c917", "sha256": "77448cd5eb4d7a01cd297d4dc92f016c0268ba399b8e464de1ee912f4b7e31fe" }, "downloads": -1, "filename": "pywicta-0.3.dev3.tar.gz", "has_sig": false, "md5_digest": "cf1ce8a19139f76df9a2e7264e09c917", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 370574, "upload_time": "2018-12-05T22:33:06", "url": "https://files.pythonhosted.org/packages/a5/b9/954ea34fbebb01c3d8f58b73325f47ac3b6b3f9cdeafe83ffe20fac0f728/pywicta-0.3.dev3.tar.gz" } ], "0.4.dev1": [ { "comment_text": "", "digests": { "md5": "9388b45e326eb5550fe3c72c6d171f14", "sha256": "c7f0b2c766d2528d6f247b8923658a5610d55542e2371585dedaf141b416749a" }, "downloads": -1, "filename": "pywicta-0.4.dev1.tar.gz", "has_sig": false, "md5_digest": "9388b45e326eb5550fe3c72c6d171f14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 368022, "upload_time": "2018-12-06T10:35:47", "url": "https://files.pythonhosted.org/packages/b1/33/7828bcb2f57b0e82da86abe990d87bcc762d7d7f83cc1d3f403e0673dd59/pywicta-0.4.dev1.tar.gz" } ], "0.4.dev2": [ { "comment_text": "", "digests": { "md5": "6b1e35c7ce0098bed4697faf6071d734", "sha256": "1de513f808592014c439fa4566bbb7cb5f28a047b92817258e17a40936bee322" }, "downloads": -1, "filename": "pywicta-0.4.dev2.tar.gz", "has_sig": false, "md5_digest": "6b1e35c7ce0098bed4697faf6071d734", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1929187, "upload_time": "2019-03-21T02:15:27", "url": "https://files.pythonhosted.org/packages/50/5a/38a0e6bc56d75d7f6b002b3167472fa872a05604a1554699a83775c66332/pywicta-0.4.dev2.tar.gz" } ], "0.4.dev3": [ { "comment_text": "", "digests": { "md5": "39e047f1f39ad926a25b598073e1b9ac", "sha256": "5f022dea3eec7f39c0bc254e7a46daf553f18c44d584f20f73bb1915db0908d5" }, "downloads": -1, "filename": "pywicta-0.4.dev3.tar.gz", "has_sig": false, "md5_digest": "39e047f1f39ad926a25b598073e1b9ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1926855, "upload_time": "2019-03-21T02:33:48", "url": "https://files.pythonhosted.org/packages/0f/2a/711d80f539fa08197f7ce6e18a55757e3d9c22c9a943ec5843cf1159ffb4/pywicta-0.4.dev3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "39e047f1f39ad926a25b598073e1b9ac", "sha256": "5f022dea3eec7f39c0bc254e7a46daf553f18c44d584f20f73bb1915db0908d5" }, "downloads": -1, "filename": "pywicta-0.4.dev3.tar.gz", "has_sig": false, "md5_digest": "39e047f1f39ad926a25b598073e1b9ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1926855, "upload_time": "2019-03-21T02:33:48", "url": "https://files.pythonhosted.org/packages/0f/2a/711d80f539fa08197f7ce6e18a55757e3d9c22c9a943ec5843cf1159ffb4/pywicta-0.4.dev3.tar.gz" } ] }