tqma


Nametqma JSON
Version 0.10 PyPI version JSON
download
home_pagehttps://github.com/hansalemaos/tqma
SummaryA poor man's tqdm - no progress bar, only numbers, no configuration options
upload_time2023-06-29 15:10:20
maintainer
docs_urlNone
authorJohannes Fischer
requires_python
licenseMIT
keywords tqdm progress bar
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# A poor man's tqdm - no progress bar, only numbers, no configuration options

## pip install tqma

#### Tested against Windows 10 / Python 3.10 / Anaconda

- No progress bar, only numbers (printed to stderr)
- No configuration options
- Only 10 lines of code 
- Only one import: sys 
- No dependencies 


```python
from tqma import tqma
from time import sleep
f=0

for r in tqma(range(10)):
    f = f + r
    sleep(2)
print(f)
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/hansalemaos/tqma",
    "name": "tqma",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "tqdm,progress bar",
    "author": "Johannes Fischer",
    "author_email": "aulasparticularesdealemaosp@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/ce/9c/bd6648d3d5c272b5c82995df0ffe1d3509f47c163e4a33a08f55ac2fcf8d/tqma-0.10.tar.gz",
    "platform": null,
    "description": "\r\n# A poor man's tqdm - no progress bar, only numbers, no configuration options\r\n\r\n## pip install tqma\r\n\r\n#### Tested against Windows 10 / Python 3.10 / Anaconda\r\n\r\n- No progress bar, only numbers (printed to stderr)\r\n- No configuration options\r\n- Only 10 lines of code \r\n- Only one import: sys \r\n- No dependencies \r\n\r\n\r\n```python\r\nfrom tqma import tqma\r\nfrom time import sleep\r\nf=0\r\n\r\nfor r in tqma(range(10)):\r\n    f = f + r\r\n    sleep(2)\r\nprint(f)\r\n```\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A poor man's tqdm - no progress bar, only numbers, no configuration options",
    "version": "0.10",
    "project_urls": {
        "Homepage": "https://github.com/hansalemaos/tqma"
    },
    "split_keywords": [
        "tqdm",
        "progress bar"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e413ba3e3f4ef12e68778db094e4bd239f2e446e4eda33450ec7e207a27eb3b",
                "md5": "88251e8d03e5daaeaf5c7ee239cd70f8",
                "sha256": "18198a8ed8d64801d298c8f409d725e39114093258908cf65adcf5d1f316941b"
            },
            "downloads": -1,
            "filename": "tqma-0.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "88251e8d03e5daaeaf5c7ee239cd70f8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 3298,
            "upload_time": "2023-06-29T15:10:18",
            "upload_time_iso_8601": "2023-06-29T15:10:18.479293Z",
            "url": "https://files.pythonhosted.org/packages/2e/41/3ba3e3f4ef12e68778db094e4bd239f2e446e4eda33450ec7e207a27eb3b/tqma-0.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce9cbd6648d3d5c272b5c82995df0ffe1d3509f47c163e4a33a08f55ac2fcf8d",
                "md5": "116ec635141327d1eb33afcc657e12f0",
                "sha256": "0ec77e156fa963046f82ccb3c7c5c669bc02bab3cd3156456533b77c600ee7f8"
            },
            "downloads": -1,
            "filename": "tqma-0.10.tar.gz",
            "has_sig": false,
            "md5_digest": "116ec635141327d1eb33afcc657e12f0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2755,
            "upload_time": "2023-06-29T15:10:20",
            "upload_time_iso_8601": "2023-06-29T15:10:20.398768Z",
            "url": "https://files.pythonhosted.org/packages/ce/9c/bd6648d3d5c272b5c82995df0ffe1d3509f47c163e4a33a08f55ac2fcf8d/tqma-0.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-29 15:10:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "hansalemaos",
    "github_project": "tqma",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "tqma"
}
        
Elapsed time: 0.08369s