beautider


Namebeautider JSON
Version 0.1.5 PyPI version JSON
download
home_pagehttps://github.com/bolgaro4ka
SummaryModule for creating progress bars.
upload_time2024-03-24 18:53:24
maintainerNone
docs_urlNone
authorbolgaro4ka
requires_python>=3.8
licenseNone
keywords progress bar
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Beautider

Module for creating progress bars.

## Examples

### Example in Lib

You can see an example of how to use the library using this code: 

```
from beautider import *

load = Loader().example()
```

You should see the following:

![img](https://github.com/bolgaro4ka/beautider/blob/b4603c18ed53a1edd0a5b09893928e52d46c2bc9/img/img.png?raw=true)

### Another example

```
import time
from beautider import *

load = Loader(description='I load nothing')

while True:
    for _ in range(1, 101):
        load.update(1)
        time.sleep(0.1)
        load.pr_load()
    for _ in range(1, 101):
        load.update(-1)
        time.sleep(0.1)
        load.pr_load()
```
![img](https://github.com/bolgaro4ka/beautider/blob/b4603c18ed53a1edd0a5b09893928e52d46c2bc9/img/img_1.png?raw=true)
![img](https://github.com/bolgaro4ka/beautider/blob/b4603c18ed53a1edd0a5b09893928e52d46c2bc9/img/img_2.png?raw=true)
## Args

 - size - The larger this value, the smaller the bar progress. (if your max_value very large, then the size value should be set larger.)
 - colors - Use of colours (True/False)
 - description - Description next to progress bar
 - complete_symbol - Symbols that are responsible for the filled part of the progress bar
 - uncomplete_symbol - Symbols that are responsible for the unfilled part of the progress bar
 - borders - Borders of progress bar (for example: ```'[]'```, ```'{}'```, ```'--'```, ```'[}'```)
 - units - Units of measurement (default %)
 - max_value - Progress bar ends here
 - min_value - Progress bar started from here
 - show_of - Shows text "```x``` in ```max_value``` ```units```"
 - show_speed - Shows speed

## Developer
By bolgaro4ka. [Link](https://github.com/bolgaro4ka)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/bolgaro4ka",
    "name": "beautider",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "progress bar",
    "author": "bolgaro4ka",
    "author_email": "bolgaro4ka.github@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/6e/25/d56088c24a3bd612019a0ca060174190b804c97ad524a0934c561475291a/beautider-0.1.5.tar.gz",
    "platform": null,
    "description": "# Beautider\r\n\r\nModule for creating progress bars.\r\n\r\n## Examples\r\n\r\n### Example in Lib\r\n\r\nYou can see an example of how to use the library using this code: \r\n\r\n```\r\nfrom beautider import *\r\n\r\nload = Loader().example()\r\n```\r\n\r\nYou should see the following:\r\n\r\n![img](https://github.com/bolgaro4ka/beautider/blob/b4603c18ed53a1edd0a5b09893928e52d46c2bc9/img/img.png?raw=true)\r\n\r\n### Another example\r\n\r\n```\r\nimport time\r\nfrom beautider import *\r\n\r\nload = Loader(description='I load nothing')\r\n\r\nwhile True:\r\n    for _ in range(1, 101):\r\n        load.update(1)\r\n        time.sleep(0.1)\r\n        load.pr_load()\r\n    for _ in range(1, 101):\r\n        load.update(-1)\r\n        time.sleep(0.1)\r\n        load.pr_load()\r\n```\r\n![img](https://github.com/bolgaro4ka/beautider/blob/b4603c18ed53a1edd0a5b09893928e52d46c2bc9/img/img_1.png?raw=true)\r\n![img](https://github.com/bolgaro4ka/beautider/blob/b4603c18ed53a1edd0a5b09893928e52d46c2bc9/img/img_2.png?raw=true)\r\n## Args\r\n\r\n - size - The larger this value, the smaller the bar progress. (if your max_value very large, then the size value should be set larger.)\r\n - colors - Use of colours (True/False)\r\n - description - Description next to progress bar\r\n - complete_symbol - Symbols that are responsible for the filled part of the progress bar\r\n - uncomplete_symbol - Symbols that are responsible for the unfilled part of the progress bar\r\n - borders - Borders of progress bar (for example: ```'[]'```, ```'{}'```, ```'--'```, ```'[}'```)\r\n - units - Units of measurement (default %)\r\n - max_value - Progress bar ends here\r\n - min_value - Progress bar started from here\r\n - show_of - Shows text \"```x``` in ```max_value``` ```units```\"\r\n - show_speed - Shows speed\r\n\r\n## Developer\r\nBy bolgaro4ka. [Link](https://github.com/bolgaro4ka)\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Module for creating progress bars.",
    "version": "0.1.5",
    "project_urls": {
        "GitHub": "https://github.com/bolgaro4ka",
        "Homepage": "https://github.com/bolgaro4ka"
    },
    "split_keywords": [
        "progress",
        "bar"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e25d56088c24a3bd612019a0ca060174190b804c97ad524a0934c561475291a",
                "md5": "21eb5c03d8e3d41fca2a69a8ffd0ce14",
                "sha256": "f5b63b7b7e04a74ebcb860481f678786a89f419df0daa60c3cac919f1f9a98fb"
            },
            "downloads": -1,
            "filename": "beautider-0.1.5.tar.gz",
            "has_sig": false,
            "md5_digest": "21eb5c03d8e3d41fca2a69a8ffd0ce14",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 3196,
            "upload_time": "2024-03-24T18:53:24",
            "upload_time_iso_8601": "2024-03-24T18:53:24.824929Z",
            "url": "https://files.pythonhosted.org/packages/6e/25/d56088c24a3bd612019a0ca060174190b804c97ad524a0934c561475291a/beautider-0.1.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-24 18:53:24",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "beautider"
}
        
Elapsed time: 0.42569s