{ "info": { "author": "Random User", "author_email": "rndusr@posteo.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: Unix", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "stig\n====\n\n` `__ |image0| |image1| |image2|\n|image3|\n\n|image4|\n\nstig is a TUI (text user interface) and CLI (command line interface)\nclient for the `BitTorrent client\nTransmission `__.\n\nstig being in alpha status does **not** mean you should expect bugs.\nIt's supposed to indicate that behaviour may change with a new release\nsince I'm still experimenting with what works best. If you know how to\nmake stig more flexible, convenient, intuitive or just *better*, feel\nfree to open an issue.\n\nFeatures\n--------\n\n- **Filters** are used to list/start/stop/remove/etc torrents matching\n any combination of criteria\n- **Tabs** with list of torrents/peers/files, documentation, etc\n- **Commands** or **sub-commands** (think git) do everything, and they\n can be invoked\n\n - through single- or multi-key (think emacs) **keybindings**,\n - by entering them in a **command prompt** (think vi),\n - by providing them as **CLI arguments** in your interactive shell\n or in **scripts**,\n - or by listing them in an **rc file**.\n\n- **Color themes** support 16 and 256 colors\n- **Complete built-in documentation** with ``help`` command or\n ``--help`` argument\n- Full **API abstraction layer** makes it possible to add support for\n other BitTorrent clients with RPC interfaces (contributors are\n welcome)\n\nExamples\n--------\n\nAdd two torrents, one by file and one by hash, and exit\n\n.. code:: bash\n\n $ stig add /path/to/some.torrent d4d6b73851fe3288e40389a8e1fb98124a9b9ba5\n\nConnect to non-default host and present the TUI\n\n.. code:: bash\n\n $ stig set connect.host torrents.local\n\nPrint all uploading and/or downloading torrents on localhost:9092 and\nexit\n\n.. code:: bash\n\n $ stig set connect.port 9092 \\; ls active\n\nList torrents with more than 50 seeds, then remove them\n\n.. code:: bash\n\n $ stig ls 'seeds>50'\n $ stig rm 'seeds>50'\n\nStop down/uploading torrents with ``/foo/`` in their download path and a\nratio above 10\n\n.. code:: bash\n\n $ stig stop 'path~/foo/&ratio>10'\n\nOpen two tabs with different torrent lists:\n\n- slowly uploading torrents with ``/foo/`` in their download path\n- small or well-seeded torrents, sorted by size (ascending) and number\n of seeds (descending)\n\n.. code:: bash\n\n $ stig tab ls 'path~/foo/&rate-up<10k' \\; tab ls 'size<500M|seeds>=1k' --sort 'size,!seeds'\n\nConfiguration and Scripting\n---------------------------\n\nAll configuration is done in an rc file, which is just a script\ncontaining a list of commands (think vim and .vimrc) that are executed\nduring startup. The default rc file is ``$XDG_CONFIG_HOME/stig/rc``.\n``XDG_CONFIG_HOME`` defaults to \\`/.config\\` if not set.\n\nSee ``stig help rcfile`` for more information.\n\nExample rc file\n~~~~~~~~~~~~~~~\n\n::\n\n # Host that runs Transmission daemon\n set connect.host example.org\n set connect.port 123\n\n # Update torrent/peer/file/etc lists every 10 seconds\n set tui.poll 10\n\n # Default columns in torrent lists\n set columns.torrents name ratio rate-up rate-down\n\n # Open a few tabs on startup\n tab ls active --sort !%downloaded,path,!rate\n tab ls paused --sort !%downloaded --columns name,%downloaded,ratio,size\n tab ls isolated --sort tracker --columns name,path\n\nRun different rc files either with ``stig -c path/to/file`` or with the\n``rc`` command. You can even turn them into executables with the shebang\n``#!/path/to/stig -Tc`` (``-T`` disables the TUI, ``-c`` specifies the\nrc file).\n\nExample maintenance script\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n #!/path/to/stig -Tc\n rm path=/path/to/torrents/trash\n pause seeds>100\n start seeds<20&size>10G|seeds<50&size>20G\n\nInstallation\n------------\n\nThe `latest release `__ is always on\nPyPI.\n\nFor Arch Linux stig is available on AUR as\n`stig `__ and the latest\ndevelopment version as\n`stig-git `__.\n\nPipsi (recommended)\n~~~~~~~~~~~~~~~~~~~\n\n`pipsi `__ installs applications in\nself-contained virtual environments in ``$HOME/.local/venvs/`` that\ninclude all dependencies. Executables are sym-linked to\n``$HOME/.local/bin/``.\n\n.. code:: bash\n\n $ pipsi install stig\n $ pipsi upgrade stig\n $ pipsi uninstall stig\n\nPip\n~~~\n\n`pip `__ installs applications with\ntheir dependencies in the system-wide (``/usr/local``) or user-wide\n(``$HOME/.local``) environment.\n\n.. code:: bash\n\n $ pip3 install stig # Installs in /usr/local/\n $ pip3 install --user stig # Installs in $HOME/.local/\n\nTo update, add the ``--upgrade`` or ``-U`` option.\n\nExtras\n~~~~~~\n\nThe following extras are available to enable optional features:\n\n``geoip``\n Display peers' country codes\n``setproctitle``\n Strip arguments from process title when running in tmux session (this\n requires Python headers; e.g. ``apt-get\n install libpython3-dev``)\n\nTo install depdencies for an extra, append ``[,,...]``\nto the installation source.\n\n.. code:: bash\n\n $ pipsi install 'stig[setproctitle,geoip]'\n\nDevelopment version\n~~~~~~~~~~~~~~~~~~~\n\nTo install the latest development version, simply replace ``stig`` in\nthe commands above with\n``git+https://github.com/rndusr/stig.git#egg=stig``. (You may need to\nescape the ``#`` depending on your shell.)\n\nDeveloping\n~~~~~~~~~~\n\nTo make your code changes effective immediately, you can either run\n``python3\n -m stig `` in the project directory or use ``pip3``'s\n``--editable`` option.\n\nTo run the tests, simply run ``make test`` in the project directory.\nThis creates a virtual environment in ``./venv``, installs stig and its\ndependencies in there and runs all available tests.\n\nIf you want to only run tests for a specific module or package:\n\n#. Create a virtual environment: ``make venv``\n#. Activate it: ``. venv/bin/activate``\n#. Pass any path in the ``tests`` directory to pytest: ``venv/bin/pytest\n tests/settings``\n\nRequirements\n------------\n\n- Python >=3.5\n- `urwid `__ >=1.3.0\n- `urwidtrees `__ >=1.0.3dev0\n- `aiohttp `__\n- `async\\ timeout `__\n- `pyxdg `__\n- `blinker `__\n- `natsort `__\n- `maxminddb `__ (optional; shows\n country codes in peer lists)\n- `setproctitle `__\n (optional; prettifies the process name)\n- `asynctest `__ (only needed\n to run tests)\n\nContributing\n------------\n\nPull requests, bug reports, features requests, ideas for improvement and\nall other constructive contributions are welcome.\n\nIf you want to contribute code and get stuck, don't know where to even\nbegin, or just to make sure you're not duplicating someone else's\nefforts, open an issue.\n\nPlease submit your custom themes if you would like them to be included\nin stig.\n\nLicense\n-------\n\nstig is free software: you can redistribute it and/or modify it under\nthe terms of the GNU General Public License as published by the Free\nSoftware Foundation, either version 3 of the License, or (at your\noption) any later version.\n\nThis program is distributed in the hope that it will be useful but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the `GNU\nGeneral Public License `__ for\nmore details.\n\n.. |image0| image:: https://img.shields.io/pypi/status/stig.svg\n.. |image1| image:: https://img.shields.io/pypi/l/stig.svg\n.. |image2| image:: https://img.shields.io/pypi/pyversions/stig.svg\n.. |image3| image:: https://img.shields.io/github/last-commit/rndusr/stig.svg\n.. |image4| image:: https://raw.githubusercontent.com/rndusr/stig/master/screenshot.png\n\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/rndusr/stig", "keywords": "bittorrent torrent transmission", "license": "GPLv3+", "maintainer": "", "maintainer_email": "", "name": "stig", "package_url": "https://pypi.org/project/stig/", "platform": "", "project_url": "https://pypi.org/project/stig/", "project_urls": { "Homepage": "https://github.com/rndusr/stig" }, "release_url": "https://pypi.org/project/stig/0.10.1a0/", "requires_dist": [ "aiohttp (>=3)", "async-timeout", "blinker", "natsort", "pyxdg", "urwid (>=2.0)", "urwidtrees (>=1.0.3dev0)", "maxminddb; extra == 'geoip'", "setproctitle; extra == 'setproctitle'" ], "requires_python": ">=3.5", "summary": "TUI and CLI client for the Transmission daemon", "version": "0.10.1a0" }, "last_serial": 4308830, "releases": { "0.0.1a0": [ { "comment_text": "", "digests": { "md5": "8ef17c072ba337f06f5da386d5608941", "sha256": "3acda67b05e1ac3e76ca3e020b67da817ecaec947c74563f0ddd2ee7f0930895" }, "downloads": -1, "filename": "stig-0.0.1a0.tar.gz", "has_sig": false, "md5_digest": "8ef17c072ba337f06f5da386d5608941", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98565, "upload_time": "2017-01-02T12:53:19", "url": "https://files.pythonhosted.org/packages/2b/48/d288336f75e9af1d009828a7d3a26fd4485f227ae7cfe0e5c76f57dd78e2/stig-0.0.1a0.tar.gz" } ], "0.0.2a0": [ { "comment_text": "", "digests": { "md5": "b82a22925683c59a6e7ec2441b0993f0", "sha256": "30be3fa43dd314e2243e7ad4e9cfe9daa8753391a2d960a6274ee2786cca04bd" }, "downloads": -1, "filename": "stig-0.0.2a0.tar.gz", "has_sig": false, "md5_digest": "b82a22925683c59a6e7ec2441b0993f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98564, "upload_time": "2017-01-02T15:30:42", "url": "https://files.pythonhosted.org/packages/79/0c/c019d8670df4293c44e8c87ed4b2d7228c163f7bcba0b302e4d50dc9c9ca/stig-0.0.2a0.tar.gz" } ], "0.0.3a0": [ { "comment_text": "", "digests": { "md5": "0682849ca48311798775abfd6abed0c6", "sha256": "a0640d88e5a4802263d25fe501c748259d31110efaeff6c9c36e02a4590ba781" }, "downloads": -1, "filename": "stig-0.0.3a0.tar.gz", "has_sig": false, "md5_digest": "0682849ca48311798775abfd6abed0c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98565, "upload_time": "2017-01-02T15:46:21", "url": "https://files.pythonhosted.org/packages/6c/1c/2c751b7150597ebea88838590c1e7897448524a95db6430217e38263be39/stig-0.0.3a0.tar.gz" } ], "0.1.0a0": [ { "comment_text": "", "digests": { "md5": "10fa5ae495d7e2b3c81c35e02e200d7a", "sha256": "c7d5a325b5511784e4679b2f90f2102f58e9947ecb826c7d94bdc18e6b6d08f9" }, "downloads": -1, "filename": "stig-0.1.0a0.tar.gz", "has_sig": false, "md5_digest": "10fa5ae495d7e2b3c81c35e02e200d7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103201, "upload_time": "2017-01-16T16:50:50", "url": "https://files.pythonhosted.org/packages/00/d1/fdfa61ddfb619014a1114eba57fa630e03a57b6c502746845288e6b70231/stig-0.1.0a0.tar.gz" } ], "0.10.0a0": [ { "comment_text": "", "digests": { "md5": "328297ac07ed53eca2f8713b90f776c3", "sha256": "70190ad760db4f52881eaac328996cc325bba8e03ca1f22387b35815fd24ec9e" }, "downloads": -1, "filename": "stig-0.10.0a0-py3-none-any.whl", "has_sig": false, "md5_digest": "328297ac07ed53eca2f8713b90f776c3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 263939, "upload_time": "2018-09-07T14:54:38", "url": "https://files.pythonhosted.org/packages/da/68/0ec06a58997351d4f024004db6641668e0b06b24b29bf4ad469256fabcd4/stig-0.10.0a0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd314881ac1a1b95fc499dd674030213", "sha256": "c530155c2ce0cbdd7499545a331eb9df73d7e2cf9be06373f3d01978822bb3eb" }, "downloads": -1, "filename": "stig-0.10.0a0.tar.gz", "has_sig": false, "md5_digest": "bd314881ac1a1b95fc499dd674030213", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 182273, "upload_time": "2018-09-07T14:54:41", "url": "https://files.pythonhosted.org/packages/e2/29/ec513878a5b08b50c1c6ee3e36b8843c403472b2706f497c1c2cdbfdb28c/stig-0.10.0a0.tar.gz" } ], "0.10.1a0": [ { "comment_text": "", "digests": { "md5": "e62f74fdba80b218542699294c095b14", "sha256": "8bc4806c9d6bbcd0e54393e741241c60ee31300d2e2f8e5174add8ad6319fbab" }, "downloads": -1, "filename": "stig-0.10.1a0-py3-none-any.whl", "has_sig": false, "md5_digest": "e62f74fdba80b218542699294c095b14", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 269266, "upload_time": "2018-09-25T15:04:00", "url": "https://files.pythonhosted.org/packages/38/a6/cdc7eeedf49b810e20c353f3262eb06df9228d6dad4375b645218e72ef8e/stig-0.10.1a0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6c3301a4143d3d41e24cece7647f5de", "sha256": "8a308a8b1c1d207f857919eeeb50a25c0266d67f0d9a673ae76d3b6feb3c28f6" }, "downloads": -1, "filename": "stig-0.10.1a0.tar.gz", "has_sig": false, "md5_digest": "c6c3301a4143d3d41e24cece7647f5de", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 184759, "upload_time": "2018-09-25T15:04:03", "url": "https://files.pythonhosted.org/packages/aa/71/a3306c0ada2b66c8cbd4bfca9fb10cb0e264f3f2ee19e87b3539614535f3/stig-0.10.1a0.tar.gz" } ], "0.2.0a0": [ { "comment_text": "", "digests": { "md5": "806b48f380302d0c0de81011e7bda7fd", "sha256": "bef9dc88b6f0e75a05f95630d68856ba887ba9c9656264d92db79b85952d443d" }, "downloads": -1, "filename": "stig-0.2.0a0.tar.gz", "has_sig": false, "md5_digest": "806b48f380302d0c0de81011e7bda7fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105617, "upload_time": "2017-02-01T14:06:00", "url": "https://files.pythonhosted.org/packages/1a/ae/3c26329186900eb729a51aaefe567cebf67c1a7244c0b2ecacf5dafe1df5/stig-0.2.0a0.tar.gz" } ], "0.3.0a0": [ { "comment_text": "", "digests": { "md5": "226fbacf1e58956439d88423613a51b2", "sha256": "806de27021bb78ac2617f6ef793223be3624074d7e720f745c0ee2db2bba60dd" }, "downloads": -1, "filename": "stig-0.3.0a0.tar.gz", "has_sig": false, "md5_digest": "226fbacf1e58956439d88423613a51b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111749, "upload_time": "2017-02-23T13:23:15", "url": "https://files.pythonhosted.org/packages/ce/49/a5f6b655cc0b0901c26a3cc025a4182cdccb0db61f7b3d109028534536b9/stig-0.3.0a0.tar.gz" } ], "0.4.0a0": [ { "comment_text": "", "digests": { "md5": "c2148633913889eb2f0085f334b5868d", "sha256": "63d22204e53d697cdf6d9574ff2af98125d60fdc076d214f2cad5700d735818e" }, "downloads": -1, "filename": "stig-0.4.0a0.tar.gz", "has_sig": false, "md5_digest": "c2148633913889eb2f0085f334b5868d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116984, "upload_time": "2017-03-16T13:47:11", "url": "https://files.pythonhosted.org/packages/83/ed/9e7122278bde17224a138a04b55b16b60f01e42f45bc675a2c07817ae631/stig-0.4.0a0.tar.gz" } ], "0.4.1a0": [ { "comment_text": "", "digests": { "md5": "45de40ef1673e8208f8cd28625fd89df", "sha256": "e9e38e15e7712d3c1368f941785cfe60f1e51b7f0c77382ae2ea25c532cba44c" }, "downloads": -1, "filename": "stig-0.4.1a0.tar.gz", "has_sig": false, "md5_digest": "45de40ef1673e8208f8cd28625fd89df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116980, "upload_time": "2017-03-22T20:45:40", "url": "https://files.pythonhosted.org/packages/e9/43/68520463cdcdc44879486eab27b47deb5d33cb9ec78e6a65aec3e90f04ad/stig-0.4.1a0.tar.gz" } ], "0.5.0a0": [ { "comment_text": "", "digests": { "md5": "d3531dd2803147e004131acf76045d5c", "sha256": "00f1c70a7d374462946b09252e08813360a1f489d26e920ae5137f160d636c7a" }, "downloads": -1, "filename": "stig-0.5.0a0.tar.gz", "has_sig": false, "md5_digest": "d3531dd2803147e004131acf76045d5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120904, "upload_time": "2017-04-05T12:46:41", "url": "https://files.pythonhosted.org/packages/55/20/bed0aabeaee63160228855d7107bf41110b6b8f2932222742734720503df/stig-0.5.0a0.tar.gz" } ], "0.6.0a0": [ { "comment_text": "", "digests": { "md5": "810c3c709a146fd926a1049170293041", "sha256": "6f9296d129f066ab8ed6d4052b37b422ffc7260a92541a4315a9e059f09125cd" }, "downloads": -1, "filename": "stig-0.6.0a0.tar.gz", "has_sig": false, "md5_digest": "810c3c709a146fd926a1049170293041", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126403, "upload_time": "2017-04-24T19:38:14", "url": "https://files.pythonhosted.org/packages/2e/92/84b18eae650167fa31cb0d2584454fbfa7a1bda5c92ff6e09beeb8314118/stig-0.6.0a0.tar.gz" } ], "0.7.0a0": [ { "comment_text": "", "digests": { "md5": "9ae3ec66b6508f93c0bb6a449d18cddb", "sha256": "2081aea8be8764abaee7987b8de3b9c8d39caee5efee12a8641bf62ea93bfc6b" }, "downloads": -1, "filename": "stig-0.7.0a0.tar.gz", "has_sig": false, "md5_digest": "9ae3ec66b6508f93c0bb6a449d18cddb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133471, "upload_time": "2017-06-08T15:12:41", "url": "https://files.pythonhosted.org/packages/de/99/5fe3e198745f1388a82e4334d0f239b03d29fecaf51c1bda7e5063af6a22/stig-0.7.0a0.tar.gz" } ], "0.7.1a0": [ { "comment_text": "", "digests": { "md5": "0ec9205d92b89c44a8cd2f98fd270201", "sha256": "a5367eec0d342de6112d7c3d67830d3e578e5a4015db9ffaaf09ef9ae7209436" }, "downloads": -1, "filename": "stig-0.7.1a0.tar.gz", "has_sig": false, "md5_digest": "0ec9205d92b89c44a8cd2f98fd270201", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133506, "upload_time": "2017-06-09T13:35:59", "url": "https://files.pythonhosted.org/packages/f7/21/f6ab7ef00a1028ad12bf62a72eece857adec39e8f0b0d6664669976a05b5/stig-0.7.1a0.tar.gz" } ], "0.7.2a0": [ { "comment_text": "", "digests": { "md5": "1b76282265dbe4de4ac49c9c51602617", "sha256": "9a2c6d9ed4a8d14f77707fea99ed0b4d2959e9d3ea2a11131de5daa23c1b5346" }, "downloads": -1, "filename": "stig-0.7.2a0.tar.gz", "has_sig": false, "md5_digest": "1b76282265dbe4de4ac49c9c51602617", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133534, "upload_time": "2017-06-12T11:48:31", "url": "https://files.pythonhosted.org/packages/db/30/67074612dbb2fce1498696f653a08a60a91446e3636c166bc7876631ec16/stig-0.7.2a0.tar.gz" } ], "0.7.3a0": [ { "comment_text": "", "digests": { "md5": "150b54b5abfe9adc15c5904f61554182", "sha256": "43fe2739cfe13141cc8c668a5e68ed9cea401ceba564d55a57ce6601780a4632" }, "downloads": -1, "filename": "stig-0.7.3a0.tar.gz", "has_sig": false, "md5_digest": "150b54b5abfe9adc15c5904f61554182", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133490, "upload_time": "2017-06-13T11:56:18", "url": "https://files.pythonhosted.org/packages/08/11/077a2361f3daf8e9d881210a88ca24560813a8fe9c82a99e499962a847fc/stig-0.7.3a0.tar.gz" } ], "0.8.0a0": [ { "comment_text": "", "digests": { "md5": "f1dd9c1366982ec596cd9ad34d176fcb", "sha256": "646ddb49b566378b869df4d2a7a3023a17de7ac4ccf9bb25f0544971a27e95d6" }, "downloads": -1, "filename": "stig-0.8.0a0.tar.gz", "has_sig": false, "md5_digest": "f1dd9c1366982ec596cd9ad34d176fcb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 161768, "upload_time": "2017-11-25T16:27:54", "url": "https://files.pythonhosted.org/packages/fb/a9/5fac3d242c05812414545a434d66bc89c6ecd2fff7a763aad40bc3977618/stig-0.8.0a0.tar.gz" } ], "0.8.1a0": [ { "comment_text": "", "digests": { "md5": "e345873d78816f5556f965b650637554", "sha256": "0077a39f99bf469b22678bea0fc92616594d4efd02eba0a03d7046de945087a9" }, "downloads": -1, "filename": "stig-0.8.1a0.tar.gz", "has_sig": false, "md5_digest": "e345873d78816f5556f965b650637554", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 161546, "upload_time": "2017-11-27T13:34:13", "url": "https://files.pythonhosted.org/packages/01/dc/59926af0be51320845b54fc55e93553cf26bf454d7b8f2c76dda972255a0/stig-0.8.1a0.tar.gz" } ], "0.8.2a0": [ { "comment_text": "", "digests": { "md5": "8b3967f6cc6668de2aa2d6c24bc12d34", "sha256": "4c1c2b2569548b2c46611d1cb63de411cadf0aefb1b3e666cd7e47d335704703" }, "downloads": -1, "filename": "stig-0.8.2a0.tar.gz", "has_sig": false, "md5_digest": "8b3967f6cc6668de2aa2d6c24bc12d34", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 167691, "upload_time": "2018-02-23T11:36:28", "url": "https://files.pythonhosted.org/packages/dc/38/d9008c1bb16bdc3464f5708e2e10843b6c314e5bd1377338b66d95979a0b/stig-0.8.2a0.tar.gz" } ], "0.8.3a0": [ { "comment_text": "", "digests": { "md5": "5a312bcd7e487de4242f0406e406cd2f", "sha256": "6e3af55a6ddfccdd2df67e5cec56b53ec2f9f411bf3f90120323a84779645dcf" }, "downloads": -1, "filename": "stig-0.8.3a0.tar.gz", "has_sig": false, "md5_digest": "5a312bcd7e487de4242f0406e406cd2f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 161597, "upload_time": "2018-02-25T15:24:42", "url": "https://files.pythonhosted.org/packages/06/48/811857e9595031a00d70e352a8ae398632c61df238f19c1c2c3d4097a0a3/stig-0.8.3a0.tar.gz" } ], "0.9.0a0": [ { "comment_text": "", "digests": { "md5": "1585bdb9488ce45c9b05d5f5a6897e7d", "sha256": "221c5e78d4a82205cbc43cf2ddd2cf21b7f2e55cb444ad7f2011f72b056891f6" }, "downloads": -1, "filename": "stig-0.9.0a0-py3-none-any.whl", "has_sig": false, "md5_digest": "1585bdb9488ce45c9b05d5f5a6897e7d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 245240, "upload_time": "2018-05-07T12:27:00", "url": "https://files.pythonhosted.org/packages/a9/fb/cf8ecb27b97dc67c5ec08e1168fbf868a0e262d4b3ffefaefdfaa1151c05/stig-0.9.0a0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "544930fb13cca60dfa3b665f5f26cc25", "sha256": "63220ab753461d2cc23c859c6703b389733c5a337584a30d718ddc9141d9a54d" }, "downloads": -1, "filename": "stig-0.9.0a0.tar.gz", "has_sig": false, "md5_digest": "544930fb13cca60dfa3b665f5f26cc25", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 164478, "upload_time": "2018-05-07T12:27:02", "url": "https://files.pythonhosted.org/packages/7d/21/0954ca578f7a60b79f3d4e12332f98481153e8329b18f0e423015fbfe5c1/stig-0.9.0a0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e62f74fdba80b218542699294c095b14", "sha256": "8bc4806c9d6bbcd0e54393e741241c60ee31300d2e2f8e5174add8ad6319fbab" }, "downloads": -1, "filename": "stig-0.10.1a0-py3-none-any.whl", "has_sig": false, "md5_digest": "e62f74fdba80b218542699294c095b14", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 269266, "upload_time": "2018-09-25T15:04:00", "url": "https://files.pythonhosted.org/packages/38/a6/cdc7eeedf49b810e20c353f3262eb06df9228d6dad4375b645218e72ef8e/stig-0.10.1a0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6c3301a4143d3d41e24cece7647f5de", "sha256": "8a308a8b1c1d207f857919eeeb50a25c0266d67f0d9a673ae76d3b6feb3c28f6" }, "downloads": -1, "filename": "stig-0.10.1a0.tar.gz", "has_sig": false, "md5_digest": "c6c3301a4143d3d41e24cece7647f5de", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 184759, "upload_time": "2018-09-25T15:04:03", "url": "https://files.pythonhosted.org/packages/aa/71/a3306c0ada2b66c8cbd4bfca9fb10cb0e264f3f2ee19e87b3539614535f3/stig-0.10.1a0.tar.gz" } ] }