{ "info": { "author": "Alex Manuskin", "author_email": "alex.manuskin@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: System :: Monitoring" ], "description": "The Stress Terminal UI: s-tui\n=============================\n\n|Build Status| |PyPI version| |Downloads| |Gitter|\n\n.. figure:: https://github.com/amanusk/s-tui/blob/master/ScreenShots/stui_logo.png?raw=true\n :alt: \n\ns-tui is a terminal UI for monitoring your computer. s-tui allows to\nmonitor CPU temperature, frequency, power and utilization in a graphical\nway from the terminal.\n\nScreenshot\n----------\n\n.. figure:: https://github.com/amanusk/s-tui/blob/master/ScreenShots/s-tui2.gif?raw=true\n :alt: \n\n- `The Stress Terminal UI: s-tui <#the-stress-terminal-ui-s-tui>`__\n- `Screenshot <#screenshot>`__\n- `What it does <#what-it-does>`__\n- `Usage <#usage>`__\n- `Simple installation <#simple-installation>`__\n\n - `pip (x86 ARM) <#pip-x86--arm>`__\n\n- `Options <#options>`__\n- `Dependencies <#dependencies>`__\n- `More installation methods <#more-installation-methods>`__\n\n - `Ubuntu <#ubuntu>`__\n - `Arch-Linux <#arch-linux>`__\n\n- `Run from source <#run-from-source>`__\n- `Compatibility <#compatibility>`__\n- `FAQ <#faq>`__\n- `Contributing <#contributing>`__\n- `Tip <#tip>`__\n\nWhat it does\n------------\n\n- Monitoring your CPU temperature/utilization/frequency/power\n- Shows performance dips caused by thermal throttling\n- Requires minimal resources\n- Requires no X-server\n- Built in options for stressing the CPU (stress/stress-ng)\n\nUsage\n-----\n\n::\n\n s-tui\n\nor\n\n::\n\n sudo s-tui\n\nSimple installation\n-------------------\n\npip (x86 + ARM)\n~~~~~~~~~~~~~~~\n\nThe most up to date version of s-tui is available with pip\n\n::\n\n sudo pip install s-tui\n\nOr if you cannot use sudo:\n\n::\n\n pip install s-tui --user\n\nIf you are installing s-tui on a Raspberry-Pi you might need to install\n``python-dev`` first\n\nInstallation in virtualenv with\n`pipsi `__:\n\n::\n\n pipsi install s-tui\n\nOptions\n-------\n\n::\n\n ********s-tui manual********\n usage: s-tui [-h] [-d] [-c] [-t] [-j] [-nm] [-v] [-ct CUSTOM_TEMP]\n\n TUI interface:\n\n The side bar houses the controls for the displayed grahps.\n At the bottom of the side bar, more information is presented in text form.\n\n * Use the arrow keys or 'hjkl' to navigate the side bar\n * Toggle between stressed and regular operation using the radio buttons in 'Modes'.\n * If you wish to alternate stress defaults, you can do it in 'Stress options'\n * Select a different temperature sensors from the 'Temp Sensors' menu\n * Change time between updates using the 'Refresh' field\n * Use the 'Reset' button to reset graphs and statistics\n * Toggle displayed graphs by selecting the [X] check box\n * If a sensor is not available on your system, N/A is presented\n * If your system supports it, you can use the utf8 button to get a smoother graph\n * Press 'q' or the 'Quit' button to quit\n\n * Run `s-tui --help` to get this message and additional cli options\n\n optional arguments:\n -h, --help show this help message and exit\n -d, --debug Output debug log to _s-tui.log\n -c, --csv Save stats to csv file\n -t, --terminal Display a single line of stats without tui\n -j, --json Display a single line of stats in JSON format\n -nm, --no-mouse Disable Mouse for TTY systems\n -v, --version Display version\n -ct CUSTOM_TEMP, --custom_temp CUSTOM_TEMP\n \n Custom temperature sensors.\n The format is: ,\n As it appears in 'sensors'\n e.g\n > sensors\n it8792-isa-0a60,\n temp1: +47.0C\n temp2: +35.0C\n temp3: +37.0C\n \n use: -ct it8792,0 for temp 1\n \n -cf CUSTOM_FAN, --custom_fan CUSTOM_FAN\n Similar to custom temp\n e.g\n >sensors\n thinkpad-isa-0000\n Adapter: ISA adapter\n fan1: 1975 RPM\n \n use: -cf thinkpad,0 for fan1\n\nDependencies\n------------\n\ns-tui is a great tool for monitoring. If you would like to stress your\ncomputer, install stress. Stress options will then show up in s-tui\n(optional)\n\n::\n\n sudo apt-get install stress\n\nConfiguration\n-------------\n\ns-tui is a self-contained application which can run out-of-the-box and\ndoesn't need config files to drive its core features. However,\nadditional features like running scripts when a certain threshold has\nbeen exceeded (e.g. CPU temperature) does necessitate creating a config\ndirectory. This directory will be made in ``~/.config/s-tui`` by\ndefault.\n\nSelecting will save the current configuration to\n``~/.config/s-tui/s-tui.conf``. If you would like to restore defaults,\nsimply remove the file.\n\nAdding threshold scripts\n~~~~~~~~~~~~~~~~~~~~~~~~\n\ns-tui gives you the ability to run arbitrary shell scripts when a\ncertain threshold is surpassed, like your CPU temperature. You can\ndefine this custom behaviour by adding a shell file to the directory\n``~/.config/s-tui/hooks.d`` with one of the following names, depending\non what threshold you're interesting in reacting to:\n\n- ``temperaturesource.sh``: triggered when the CPU temperature\n threshold is exceeded\n\nIf s-tui finds a script in the hooks directory with the name of a source\nit supports, it will run that script every 30 seconds as long as the\ncurrent value of the source remains above the threshold.\n\nNote that at the moment only CPU temperature threshold hooks are\nsupported.\n\nMore installation methods\n-------------------------\n\nUbuntu\n~~~~~~\n\n| The latest stable version of s-tui is available via pip. To install\n pip on Ubuntu run:\n| ``sudo apt-get install gcc python-dev python-pip``\n| Once pip is installed, install s-tui from pip:\n| ``(sudo) pip install s-tui``\n\nUbuntu(PPA)\n~~~~~~~~~~~\n\nA ppa is available but is not always up to date(xenial,bionic)\n\n::\n\n sudo add-apt-repository ppa:amanusk/python-s-tui\n sudo apt-get update\n sudo apt-get install python3-s-tui\n\nUbuntu(18.10)\n~~~~~~~~~~~~~\n\n::\n\n sudo apt install s-tui\n\nArch-Linux\n~~~~~~~~~~\n\nAUR packages of s-tui are available\n\n| ``s-tui`` is the latest stable release version. Maintained by\n [@DonOregano](https://github.com/DonOregano)\n| ``s-tui-git`` follows the master branch. maintained by\n [@MauroMombelli](https://github.com/MauroMombelli)\n| install with\n| ``yay -S s-tui``\n\nRun from source\n---------------\n\n| Running s-tui from source\n| Clone\n\n::\n\n git clone https://github.com/amanusk/s-tui.git\n\nInstall dependencies, these need to be installed to run\n``python -m s_tui.s_tui``\n\n::\n\n (sudo) pip install urwid\n (sudo) pip install psutil\n\nInstall stress (optional)\n\n::\n\n sudo apt-get install stress\n\nRun the .py file\n\n::\n\n (sudo) python -m s_tui.s_tui\n\nOPTIONAL integration of FIRESTARTER (via submodule, does not work on all systems)\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nFIRESTARTER is a great tool to stress your system to the extreme. If you\nwould like, you can integrate FIRESTARTER submodule into s-tui. To build\nFIRESTARTER\n\n::\n\n git submodule init\n git submodule update\n cd ./FIRESTARTER\n ./code-generator.py\n make\n\n| Once you have completed these steps, you can either: \\* Install\n FIRESTARTER to make it accessible to s-tui, e.g make a soft-link to\n FIRESTARTER in /usr/local/bin. \\* Run s-tui from the main project\n directory with ``python -m s_tui.s_tui``\n| An option to run FIRESTARTER will then be available in s-tui\n\nCompatibility\n-------------\n\ns-tui uses psutil to probe some of your hardware information. If your\nhardware is not supported, you might not see all the information.\n\n- | On Intel machines:\n | Running s-tui as root gives access to the maximum Turbo Boost\n frequency available to your CPU when stressing all cores. Running\n without root will display the Turbo Boost available on a single\n core.\n\n- Power read is supported on Intel Core CPUs of the second generation\n and newer (Sandy Bridge)\n- s-tui tested to run on Raspberry-Pi 3,2,1\n\nFAQ\n---\n\n| **Q**: How is this different from htop?\n| **A**: s-tui is not a processes monitor like htop. The purpose is to\n monitor your CPU statistics and have an option to test the system\n under heavy load. (Think AIDA64 stress test, not task manager).\n\n| **Q**: What features require sudo permissions?\n| **A**: Top Turbo frequency varies depending on how many cores are\n utilized. Sudo permissions are required in order to accurately read\n the top frequency when all the cores are utilized.\n\n| **Q**: I don't have a temperature graph\n| **A**: Systems have different sensors to read CPU temperature. If you\n do not see a temperature read, your system might not be supported\n (yet). You can try manually setting the sensor with the cli interface\n (see --help), or selecting a sensor from the 'Temp Sensors' menu\n\n| **Q**: I have a temperature graph, but it is wrong.\n| **A**: A default sensor is selected for temperature reads. On some\n systems this sensor might indicate the wrong temperature. You can\n manually select a sensor from the 'Temp Sensors' menu or using the cli\n interface (see --help)\n\n| **Q**: I am using the TTY with no X server and s-tui crashes on start\n| **A**: By default, s-tui is handles mouse inputs. This causes some\n systems to crash. Try running ``s-tui --no-mouse``\n\n| **Q**: I am not seeing all the stats in the sidebar\n| **A**: The sidebar is scrollable, you can scroll down with ``DOWN`` or\n ``j`` or scroll to the bottom with ``PG-DN`` or ``G``. You can also\n decrees the font of you terminal, to view more at once.\n\nContributing\n------------\n\nNew issues and Pull Requests are welcome :)\n\nIf you notice a bug, please report it as a new issue, using the provided\ntemplate.\n\nTo open a Pull Request, please see\n`CONTRIBUTING `__\nfor more information.\n\nTip\n---\n\nIf you like this work, please star in on GitHub.\n\nIf you realy like it, share it with your friends and co-workers.\n\nIf you really really like this work, leave a tip :)\n\n| BTC: ``1PPhYgecwvAN7utN2EotgTfy2mmLqzF8m3``\n| ETH: ``0xc169699A825066f2F07E0b29C4082094b32A3F3e``\n\n.. |Build Status| image:: https://travis-ci.org/amanusk/s-tui.svg?branch=master\n :target: https://travis-ci.org/amanusk/s-tui\n.. |PyPI version| image:: https://badge.fury.io/py/s-tui.svg\n :target: https://badge.fury.io/py/s-tui\n.. |Downloads| image:: https://pepy.tech/badge/s-tui\n :target: http://pepy.tech/count/s-tui\n.. |Gitter| image:: https://badges.gitter.im/Join%20Chat.svg\n :target: https://gitter.im/s-tui/Lobby\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/amanusk/s-tui", "keywords": "stress", "license": "GPLv2", "maintainer": "", "maintainer_email": "", "name": "s-tui", "package_url": "https://pypi.org/project/s-tui/", "platform": "", "project_url": "https://pypi.org/project/s-tui/", "project_urls": { "Homepage": "https://github.com/amanusk/s-tui" }, "release_url": "https://pypi.org/project/s-tui/0.8.3/", "requires_dist": null, "requires_python": "", "summary": "Stress Terminal UI stress test and monitoring tool", "version": "0.8.3" }, "last_serial": 5774074, "releases": { "0.2.2": [ { "comment_text": "", "digests": { "md5": "34226af2e1080475efac437dac6d4221", "sha256": "eaad8f9dad0ac07be45cbbee9fdb2716cdae4cf28731df2778d32170c9ad85ad" }, "downloads": -1, "filename": "s-tui-0.2.2.tar.gz", "has_sig": false, "md5_digest": "34226af2e1080475efac437dac6d4221", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11829, "upload_time": "2017-06-22T06:43:27", "url": "https://files.pythonhosted.org/packages/90/ac/19ce8d7e738566205567c400501e9b44bc9d73b1a12edb5153e7c3f45354/s-tui-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "6c5928e6f6594b2bf635c5c97ae3b12b", "sha256": "3ec061e3093188b70f7d17deca3bf3b4ddd348d1ca3ea446428e61582d6b9de5" }, "downloads": -1, "filename": "s-tui-0.2.3.tar.gz", "has_sig": false, "md5_digest": "6c5928e6f6594b2bf635c5c97ae3b12b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12043, "upload_time": "2017-06-22T08:52:32", "url": "https://files.pythonhosted.org/packages/8b/43/6a62010feaf8dfa48058f2ead6b97f28f10b86444a12751c6f8cfb32705f/s-tui-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "96e735d2e69eb35c8952fc5028916d8f", "sha256": "31e1cfaf0b668fbb8c04b03eb12abacd3d4f11a2328ba2bf59efad365e1e72d0" }, "downloads": -1, "filename": "s-tui-0.2.4.tar.gz", "has_sig": false, "md5_digest": "96e735d2e69eb35c8952fc5028916d8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12494, "upload_time": "2017-06-26T11:46:01", "url": "https://files.pythonhosted.org/packages/eb/b7/b3004343bafcf64055eb09637418da4584ac1af61e1467504a07abecaff3/s-tui-0.2.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "895c0bfdc904aa99de018139b1044a74", "sha256": "b45429418d706420c84f31bcde186a8aa0078e0dba0d2b575c7d6a42bd8514a3" }, "downloads": -1, "filename": "s-tui-0.3.5.tar.gz", "has_sig": false, "md5_digest": "895c0bfdc904aa99de018139b1044a74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13258, "upload_time": "2017-07-13T08:19:47", "url": "https://files.pythonhosted.org/packages/1e/a5/c4a56b53e6826f4d369162c57b921f8eaeac47005c0ff2de4cea8b95586e/s-tui-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "ec200f41768465ec1546ae3a7c8b1fe1", "sha256": "3920b594f961cdc2fa82fff1a44cfc11091e96ff3c8785d10c07abd36057a24a" }, "downloads": -1, "filename": "s-tui-0.3.6.tar.gz", "has_sig": false, "md5_digest": "ec200f41768465ec1546ae3a7c8b1fe1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13249, "upload_time": "2017-07-13T08:29:59", "url": "https://files.pythonhosted.org/packages/49/95/4e0cfd0925709807900af18763d6ad083b495a991a890149171ba17bd67d/s-tui-0.3.6.tar.gz" } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "1c0cf0446b65aae050ec5f20ac5cd310", "sha256": "8778ad8069bd7b8ec970e3ad1255a2d5ae9b52f30b0896f116208969cb885f84" }, "downloads": -1, "filename": "s-tui-0.3.7.tar.gz", "has_sig": false, "md5_digest": "1c0cf0446b65aae050ec5f20ac5cd310", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13348, "upload_time": "2017-07-15T17:39:35", "url": "https://files.pythonhosted.org/packages/89/9b/9970e1e59a50965abeafc27f79c660843c97a05ce2ab5994e0dd414a9699/s-tui-0.3.7.tar.gz" } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "dbe395af3e62f4ebdfa723c651f9dafb", "sha256": "5c30aa1d0e7ec053e863959a29ea38b0c637c663f718540664049fbe479ae430" }, "downloads": -1, "filename": "s-tui-0.3.8.tar.gz", "has_sig": false, "md5_digest": "dbe395af3e62f4ebdfa723c651f9dafb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13438, "upload_time": "2017-07-16T05:51:17", "url": "https://files.pythonhosted.org/packages/15/f5/38828e074625c83f96562fca56680c92a381dbaee734382aadc2dc331334/s-tui-0.3.8.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "548dc0521b5a36038bc635e8318b95d6", "sha256": "fba54879faf887194d76ce96e45e0d7db7b77f7e292bc0026752a91d62b62d2b" }, "downloads": -1, "filename": "s-tui-0.4.0.tar.gz", "has_sig": false, "md5_digest": "548dc0521b5a36038bc635e8318b95d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13352, "upload_time": "2017-08-09T12:34:07", "url": "https://files.pythonhosted.org/packages/5e/d7/c63c53957fd5be5f9e706b0e27b005115af21f09a66645b3ed3e9bd33092/s-tui-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "87626996f84726763382edba05695a2f", "sha256": "c16dc5663f627b496f1b9e8e2ae858d838d5ef37a41839534f6f3c7693290bc0" }, "downloads": -1, "filename": "s-tui-0.4.1.tar.gz", "has_sig": false, "md5_digest": "87626996f84726763382edba05695a2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13457, "upload_time": "2017-08-16T11:55:06", "url": "https://files.pythonhosted.org/packages/3f/08/5402eb2757db1dc8bc0435d6be2c4e857b7b14ebe86db8bc602c69b3cb12/s-tui-0.4.1.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "e68cd3b61aa66d1d32c7945acf63e188", "sha256": "563864bd233ff5c752b150009482092cc14859ac4d1f4ce8f164be23c04d7c7c" }, "downloads": -1, "filename": "s-tui-0.4.3.tar.gz", "has_sig": false, "md5_digest": "e68cd3b61aa66d1d32c7945acf63e188", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21459, "upload_time": "2017-08-17T13:03:39", "url": "https://files.pythonhosted.org/packages/73/0d/bc39581bc77f024b500fa45bed43293b38d77e36e300dc30e8a1157fd196/s-tui-0.4.3.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "4412b0375b2825cf6039db56ab2d1633", "sha256": "9a615884cf9f384e6427d5592d5977696a04affa1a072e179d3d576b6056b768" }, "downloads": -1, "filename": "s-tui-0.5.0.tar.gz", "has_sig": false, "md5_digest": "4412b0375b2825cf6039db56ab2d1633", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23030, "upload_time": "2017-08-21T18:27:30", "url": "https://files.pythonhosted.org/packages/7d/57/dd10be411641c79877a37b6731c0ca6139cea05e3370c6084e46fcfdefa6/s-tui-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "d69789913fd070b46e3559fb3d3f19ac", "sha256": "6d9aa37aeb085f9d740e33d5f4bd5ebb2f571443e8394aff369a6f9c0b014a59" }, "downloads": -1, "filename": "s-tui-0.6.0.tar.gz", "has_sig": false, "md5_digest": "d69789913fd070b46e3559fb3d3f19ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16588, "upload_time": "2017-09-02T17:06:15", "url": "https://files.pythonhosted.org/packages/e1/d2/449ef1f9a99bbb3516531a6956345390406d9f928cea205c7a4e7793d702/s-tui-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "a91d2738e1f8354a2f5b3606dbddc17d", "sha256": "688dfb4b4691075ecde41f1130b0c5b7a38d62dda40a6e39fe09ce8cf16e43fc" }, "downloads": -1, "filename": "s-tui-0.6.1.tar.gz", "has_sig": false, "md5_digest": "a91d2738e1f8354a2f5b3606dbddc17d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19016, "upload_time": "2017-09-11T19:47:02", "url": "https://files.pythonhosted.org/packages/c6/ff/f2bf18545b7b8c85f0d14aba24680e427a71cbef9528b6414eb231fadf56/s-tui-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "361f164afd34615cda001d52bb4356e5", "sha256": "62c68d8438317fd406c33fc9d370abc89129ac0bedd37b5cb72b94aa8d98323a" }, "downloads": -1, "filename": "s-tui-0.6.2.tar.gz", "has_sig": false, "md5_digest": "361f164afd34615cda001d52bb4356e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19224, "upload_time": "2017-09-11T20:42:25", "url": "https://files.pythonhosted.org/packages/9c/31/692e22d701d0123319d8b8a4fe68e09922c01bb9aebfb58ff8c6c9955c53/s-tui-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "32ca540a6c0ec0153144044d633ff720", "sha256": "6f8ee8bfeb4fe862d885d6e2fe44db66efcb3b80d9b8892fe4c16fe3f4b84af8" }, "downloads": -1, "filename": "s-tui-0.6.3.tar.gz", "has_sig": false, "md5_digest": "32ca540a6c0ec0153144044d633ff720", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21162, "upload_time": "2017-09-26T05:51:30", "url": "https://files.pythonhosted.org/packages/e5/6b/fd3b2e96a3d8337a5ed891fe54868f36a526da0cd71c0a47bf3fba5b3e7f/s-tui-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "84759b55aa4826bea2c5879c52fc42ec", "sha256": "a8f698ebcb37df3807fe9d64e222aa86ff5ccd63c124aea3dd7a77110cdde596" }, "downloads": -1, "filename": "s-tui-0.6.4.tar.gz", "has_sig": false, "md5_digest": "84759b55aa4826bea2c5879c52fc42ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21189, "upload_time": "2017-09-26T07:04:24", "url": "https://files.pythonhosted.org/packages/77/18/f1f3a6ea514a2fafa94d352d2ee0011b58d5fd201965fc3c5f1acb82d2c5/s-tui-0.6.4.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "a05805421c95f2ed85d020ef7fabbdf6", "sha256": "37190bcbf9b6bc58056b3d39f0aedc50f803bdd0ab263b0523fba4d205be76ef" }, "downloads": -1, "filename": "s-tui-0.6.6.tar.gz", "has_sig": false, "md5_digest": "a05805421c95f2ed85d020ef7fabbdf6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23447, "upload_time": "2017-10-01T12:09:29", "url": "https://files.pythonhosted.org/packages/d0/d1/a5e24a97041f1eea50d59f562a3419f8bce33402b8c0a9da2102951e9daf/s-tui-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "4706c1194c08872541546f6dde21827e", "sha256": "6bf30c46351f36f4111541a4ad8c09afc0983a4d785ec9b2f9906478b6ebc6bb" }, "downloads": -1, "filename": "s-tui-0.6.7.tar.gz", "has_sig": false, "md5_digest": "4706c1194c08872541546f6dde21827e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25477, "upload_time": "2017-10-28T16:30:22", "url": "https://files.pythonhosted.org/packages/8b/38/712251e4c3aa8326127217b4973326e992530196d5f8df88bd0878cdefae/s-tui-0.6.7.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "f4522406ce3fca5c21b41d9a2f81de92", "sha256": "9b9c23e568b9d374822b81efe6cbd8716d54d4d9e20e1b29dab31689998fb5f5" }, "downloads": -1, "filename": "s-tui-0.7.4.tar.gz", "has_sig": false, "md5_digest": "f4522406ce3fca5c21b41d9a2f81de92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27762, "upload_time": "2018-04-29T15:27:53", "url": "https://files.pythonhosted.org/packages/36/37/24c530a381eda8628cbe2912261aedf532bf5a61f469256dec7e76936566/s-tui-0.7.4.tar.gz" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "436cda341b90ad52f3b6712906cbc0f1", "sha256": "69db866e2603b4f91597fdb3f8e127647f41307dc4c5ca0624531a7301948507" }, "downloads": -1, "filename": "s-tui-0.7.5.tar.gz", "has_sig": false, "md5_digest": "436cda341b90ad52f3b6712906cbc0f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27738, "upload_time": "2018-05-06T17:49:59", "url": "https://files.pythonhosted.org/packages/ac/e7/1070eac9626439889a2bea40b4b7983acd4af465ae946a823426c2c684af/s-tui-0.7.5.tar.gz" } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "ae944b20f29bde1cfbb8ae4eb573f07f", "sha256": "21f3524512db7ff905dea21ffcb1b057238f64337fbbd60517b4b290840030a7" }, "downloads": -1, "filename": "s-tui-0.7.6.tar.gz", "has_sig": false, "md5_digest": "ae944b20f29bde1cfbb8ae4eb573f07f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28463, "upload_time": "2018-05-17T12:32:40", "url": "https://files.pythonhosted.org/packages/b3/bf/aeb38a3fc3f84ae7261f2d24639b6f84081a3c037fae2a2db33715093375/s-tui-0.7.6.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "604d743140f25f80277c395ba80d703e", "sha256": "f0bfad837c8d96017a0fcb54bae39468594d61e9a296245f085dd26cef0276a1" }, "downloads": -1, "filename": "s-tui-0.8.2.tar.gz", "has_sig": false, "md5_digest": "604d743140f25f80277c395ba80d703e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29588, "upload_time": "2018-08-27T19:05:48", "url": "https://files.pythonhosted.org/packages/37/e8/3a0b785fa76a8eb005f8dc43966c51194a82ba4b0d9e5ca8350ea28e38ef/s-tui-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "922579788e643765c385c40f4becde44", "sha256": "d504012dbb3292b475791f3ae758d569da6c9a8cb4f4eea5773ca348b6809a02" }, "downloads": -1, "filename": "s-tui-0.8.3.tar.gz", "has_sig": false, "md5_digest": "922579788e643765c385c40f4becde44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29784, "upload_time": "2018-11-30T10:09:18", "url": "https://files.pythonhosted.org/packages/f4/43/d02518a7a3c178b04adbc813ed0959c7d89bff0fd6921286bb431de5649a/s-tui-0.8.3.tar.gz" } ], "1.0.0b1": [ { "comment_text": "", "digests": { "md5": "69eefea3131b9baafb1110f23e2fbb01", "sha256": "f85452649a75d7badcef9f0866a0c3d8b7bfec61c972cf4c1831326a0e62463c" }, "downloads": -1, "filename": "s-tui-1.0.0b1.tar.gz", "has_sig": false, "md5_digest": "69eefea3131b9baafb1110f23e2fbb01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29368, "upload_time": "2019-04-27T07:14:00", "url": "https://files.pythonhosted.org/packages/6d/a0/fb3676a2cb39b85722d85976cdd7a10881fff9a75978a97448662c42bbe6/s-tui-1.0.0b1.tar.gz" } ], "1.0.0b2": [ { "comment_text": "", "digests": { "md5": "7924d1481a8963d5120ad86e9d2c3a1f", "sha256": "29bf892e9e9ad04bd728fd718f3e4f7a12e5b4dc17a20f00d9baccaee7687b46" }, "downloads": -1, "filename": "s-tui-1.0.0b2.tar.gz", "has_sig": false, "md5_digest": "7924d1481a8963d5120ad86e9d2c3a1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29624, "upload_time": "2019-09-03T05:41:03", "url": "https://files.pythonhosted.org/packages/49/e4/3e6bace8f3c381da5a80a88ca92773f5f72fff2dc52784bb844bff1392df/s-tui-1.0.0b2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "922579788e643765c385c40f4becde44", "sha256": "d504012dbb3292b475791f3ae758d569da6c9a8cb4f4eea5773ca348b6809a02" }, "downloads": -1, "filename": "s-tui-0.8.3.tar.gz", "has_sig": false, "md5_digest": "922579788e643765c385c40f4becde44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29784, "upload_time": "2018-11-30T10:09:18", "url": "https://files.pythonhosted.org/packages/f4/43/d02518a7a3c178b04adbc813ed0959c7d89bff0fd6921286bb431de5649a/s-tui-0.8.3.tar.gz" } ] }