progress-parallel


Nameprogress-parallel JSON
Version 3.2.1 PyPI version JSON
download
home_pagehttps://github.com/Domzou-kun/prpl
Summarymulti threading progress bar
upload_time2023-07-13 12:35:39
maintainer
docs_urlNone
authorDomzou
requires_python
licenseMIT
keywords python python progress multi thread threading
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![prpl Logo](https://github.com/Domzou-kun/prpl/blob/main/docs/icon/prpl_header.png?raw=true)

<div align="center">

   <a href="">![PyPI](https://img.shields.io/pypi/v/progress-parallel)</a>
   <a href="">![PyPI - Python Version](https://img.shields.io/pypi/pyversions/progress-parallel)</a>
   <a href="">![PyPI - Format](https://img.shields.io/pypi/format/progress-parallel)</a>
   <a href="">![PyPI - License](https://img.shields.io/pypi/l/progress-parallel)</a>
   <a href="">[![Downloads](https://static.pepy.tech/personalized-badge/progress-parallel?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Downloads)](https://pepy.tech/project/progress-parallel)</a>
   <a href="">![GitHub issues](https://img.shields.io/github/issues/Domzou-kun/prpl)</a>
   <br>
   <a href="">![GitHub followers](https://img.shields.io/github/followers/Domzou-kun?style=social)</a>
   <a href="">[![Twitter](https://badgen.net/badge/icon/tweet?icon=twitter&label)](https://twitter.com/intent/tweet?text="prpl"%20is%20a%20recommended%20repository😊👍%0a&url=https://github.com/Domzou-kun/prpl&hashtags=Github,Python)
</a>

</div>

<div align="center">
   <br>
   
   # **the latest version of 3.2.1🎉**
   ## Changes in the new version of **3.2.1**
   **- Some serious bugs were fixed. -**  
   
   <br>
   <br>

   # CAUTION
   **Serious bugs are fixed as hotfixes in v3.1.1.  
   We have discovered a serious flaw in the functionality available in for-loop added in v3.0.1.  
   This has been corrected in v3.1.1.  
   Accordingly, v3.0.1 has been removed from PyPI.**
   <br>
   <br>
</div>

---
# prpl
`prpl`(progress-parallel) is a library to visualize the progress of parallel processing by `concurrent.futures`, the standard python library.

---

## Description
`prpl` is a "Tips" library that makes the standard python parallel processing library simpler to use.

The general functionality is the same as `concurrent.futures` itself, but it is possible to visualize the parallel processing status of threads generated using this library.

---

## More about prpl
In `prpl`, when performing calculations on numbers managed by a list, the list is automatically parallelized and parallelized.
The progress of the parallel processing can be visualized and the parallel processing can be checked.

Standard features include the following,
 - Display of thread progress
   ```Python
   res = prpl(target_list=t_list, target_function=test_calc_func)
   ```
   ![prpl test gif 1](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_run_1.gif?raw=true)

 - Display of progress bar
   ```Python
   res = prpl(target_list=t_list, target_function=test_calc_func, symbol="#", smpl=True)
   ```
   ![prpl test gif 4](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_run_4.gif?raw=true)

 - Measure run timer
   ```Python
   res = prpl(target_list=t_list, target_function=test_calc_func, timer=True)
   ```
   ![prpl test gif 7](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_run_7.gif?raw=true)

 - Change the color of the progress bar.
   ```Python
   res = prpl(target_list=t_list, target_function=test_calc_func, symbol="#", color="green")
   ```
   ![prpl test gif 6](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_run_6.gif?raw=true)

 - Only single progress bar is available.
   ```Python
   res = prpl(target_list=t_list, target_function=test_calc_func, list_sep=1)
   ```
   ![prpl test gif sample 2](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_readme_sample_2.gif?raw=true)

 - For use with the for-loop.
   ```Python
   for _ in prpl(t_list, symbol="#"):
      pass
   ```
   ![prpl test gif 9](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_run_9.gif?raw=true)

   When used in a for-loop, the color of the symbol can also be changed.However, this feature does not allow for graphical functions with arrows, such as multi-threading (parallel processing) mode. If the symbol argument is not used, a standard count-up progress bar is used.
   ```Python
   for _ in prpl(t_list):
      pass
   ```
   ![prpl test gif 10](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_run_10.gif?raw=true)


 - When multiple arguments are passed to a function.
   ```Python
   """ For functions with multiple arguments. """
   def multi_arguments_target_function(a,b,c,d):
      # The argument that receives the elements of the list is "a".
      return a+b+c+d
   ```
   ```Python
   args_dict = {
      "b": 2,
      "c": 3,
      "d": 4
   }
   res = prpl(target_list=t_list, target_function=multi_arguments_target_function, args=args_dict)
   ```
   When passing multiple arguments to a function, be sure to pass them as type of `dict`.
   Also, it is not necessary to include the target list in the arguments grouped together in that type of `dict`.

For other samples, test code is available at [tests directory](https://github.com/Domzou-kun/prpl/tree/main/tests). Please run it.

(and gifs are at [sample git directory](https://github.com/Domzou-kun/prpl/tree/main/docs/example_gif))


### parallel processing
For parallel processing, it is CPU parallel processing using the standard python library.
For more information, check the python [`concurrent.futures`](https://docs.python.org/3/library/concurrent.futures.html) documentation.

## Sample code
An actual code sample example would be as follows.
An example of implementation in actual code is shown below.

When performing some calculation process on a set of numbers compiled in a list, the conventional implementation is as follows:

```Python
""" conventional method """
calculation_result = []
target_list = list(range(0, 100000))
for target_var in target_list:
    calc_answer = (target_var**target_var)**2   # formula
    calculation_result.append(calc_answer)
```

By using prpl, the process inside a for loop statement is automatically executed in parallel by passing it as a function, and the result is returned.

```Python
""" Separate formulas to be processed in the for loop as functions """
def target_function(target_var):
    calc_answer = (target_var**target_var)**2   # target formula
    return calc_answer

""" Methods using prpl """
from prpl import prpl
target_list = list(range(0, 100000))
calculation_result = prpl(target_list, target_function) # prpl
```
The actual operating gif of the comparison is as follows: 

![prpl test gif 1](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_readme_sample_1.gif?raw=true)

It is important to note that if the formula is not complex, it is not suitable for parallel processing.
Because of the nature of parallel processing, prpl should not be used unnecessarily.

## Optional arguments, etc
The list of arguments, etc. that can be used in `prpl` is as follows.
```
result_list = prpl(  # The results will always return with a type of List.
   
   target_list,      # Required argument
      ### List to be used in the target function.

   target_function,  # May be required argument.
      ### A function that contains a target formula, etc, and must include a return statement.
      ### Required arguments if prpl is used in parallel processing visualization.
      ### It is not required if it is used in the for-loop.

   args,
      ### Multiple arguments managed by dictionary type.
   
   list_sep,
      ### Number of list divisions. 
      ### Default setting is 5.

   checkpoint,
      ### Number of breaks to display progress.
      ### ### Default setting is 10.
   
   title,
      ### Title of each progress bar.
      ### By default, the name of the target function.
   
   symbol,
      ### Progress bar mark settings.
   
   symbol_c,
      ### Setting the length of the progress bar.
      ### Default setting is 50.
   
   smpl,
      ### Simple display mode.
      ### Default setting is False.
   
   timer,
      ### Measuring run time.
      ### Not available in simple mode.

   color
      ### Change the color of the progress bar.

)
```

---

## Impossible and warning with prpl
 - The `enumerate()` is not available.

    Normally, `enumerate()` is available in a for loop statement, but this is not available in a ptpl using concurrent.futures.

 - A `print()` cannot be used within a function for which parallel processing is desired.
    
    Strictly speaking, you can use it. However, using a `print()` is the same as executing a print statement inside a for loop, so the progress bar will be misaligned.

 - Since parallel processing conforms to the `concurrent.futures` library, anything that cannot be done with concurrent.futures is not possible with `prpl`.

    `Concurrent.futures` is used in prpl parallel processing. Therefore, what is impossible with `concurrent.futures` is also impossible with `prpl`. To the last, `prpl` is a library to handle parallel processing in a simple and intuitive way, and a library to visualize the parallel processing.

 - The display may shift on the console.

   During execution, the vertical display of the console is controlled in the program, but the horizontal length is not. Therefore, if the `prpl` display exceeds the length of the console's width, the `prpl` may be significantly disturbed.

 - Be sure to provide a target function with return.

   By the nature of the program, it performs an arithmetic operation on the given "list-type" array and returns the result in a list type. Therefore, `prpl` will cause an error if some return is not made in the function.
   
   The following are appropriate and inappropriate examples.
   ```Python
   """ appropriate example target function """
   def OK_func(i):
      ans = (i**i)**2
      return ans  # return
   ```

   ```Python
   """ inappropriate example """
   def NG_func(i):
      ans = (i**i)**2
      # not return 
   ```
   Be sure to include a return statement in the function.



## Getting Started
### Installing

### Latest prpl via [PyPI](https://pypi.org/project/progress-parallel/) (pip install)
![PyPI](https://img.shields.io/pypi/v/progress-parallel)
[![Downloads](https://static.pepy.tech/badge/progress-parallel/month)](https://pepy.tech/project/progress-parallel)
```
pip install progress-parallel
```

### Install by pip from github

```
pip install git+https://github.com/Domzou-kun/prpl.git
```
or install via SSH
```
pip install git+git://github.com:Domzou-kun/prpl.git
```

## Particularly technical notes

### display
`prpl`'s, the progressbar on the console uses ESC and CSI sequences to control multiple lines simultaneously.

When using CSI and ESC sequences with cmd, etc., terminal settings must be enabled.

However, many of the programs that display such a progressbar as this one have modified kernel and console settings to suit their individual programs. This means that if other console-controlling programs are used at the same time, the settings may conflict and break the drawing.

We have already confirmed that when `tqdm` and `prpl` are imported and used at the same time, there is a conflict with `tqdm`'s settings and `prpl`'s display is corrupted.

We are currently working on a fix for this problem.

If you have a suggestion for a technical solution, please write to the issue. We will gladly review and consider it.


## Authors

Domzou

## link
 - The link to PyPI is here.  
    - [PyPI project link](https://pypi.org/project/progress-parallel/)  

 - このreadmeを日本語にしたものになります。本readmeの重要な部分をメインに日本語に直して[Qiita](https://qiita.com/Domzou/items/03d39dd1cdce46719c94)に投稿しています。  
    - [Pythonでmultiprocessingを簡単に可視化してくれるライブラリを作ってみた](https://qiita.com/Domzou/items/03d39dd1cdce46719c94)

## Version history
If you want to know about past versions, please refer to [version history](https://github.com/Domzou-kun/prpl/blob/main/docs/version_history.txt).

## LICENSE
PyTorch has a MIT license, as found in the [LICENSE file](https://github.com/Domzou-kun/prpl/blob/main/LICENSE).






            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Domzou-kun/prpl",
    "name": "progress-parallel",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Python python progress multi thread threading",
    "author": "Domzou",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/fa/43/673b14527881e7fd0811289151e4e9ada105858018ba8a9ae96fb095c045/progress%20parallel-3.2.1.tar.gz",
    "platform": null,
    "description": "![prpl Logo](https://github.com/Domzou-kun/prpl/blob/main/docs/icon/prpl_header.png?raw=true)\n\n<div align=\"center\">\n\n   <a href=\"\">![PyPI](https://img.shields.io/pypi/v/progress-parallel)</a>\n   <a href=\"\">![PyPI - Python Version](https://img.shields.io/pypi/pyversions/progress-parallel)</a>\n   <a href=\"\">![PyPI - Format](https://img.shields.io/pypi/format/progress-parallel)</a>\n   <a href=\"\">![PyPI - License](https://img.shields.io/pypi/l/progress-parallel)</a>\n   <a href=\"\">[![Downloads](https://static.pepy.tech/personalized-badge/progress-parallel?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Downloads)](https://pepy.tech/project/progress-parallel)</a>\n   <a href=\"\">![GitHub issues](https://img.shields.io/github/issues/Domzou-kun/prpl)</a>\n   <br>\n   <a href=\"\">![GitHub followers](https://img.shields.io/github/followers/Domzou-kun?style=social)</a>\n   <a href=\"\">[![Twitter](https://badgen.net/badge/icon/tweet?icon=twitter&label)](https://twitter.com/intent/tweet?text=\"prpl\"%20is%20a%20recommended%20repository\ud83d\ude0a\ud83d\udc4d%0a&url=https://github.com/Domzou-kun/prpl&hashtags=Github,Python)\n</a>\n\n</div>\n\n<div align=\"center\">\n   <br>\n   \n   # **the latest version of 3.2.1\ud83c\udf89**\n   ## Changes in the new version of **3.2.1**\n   **- Some serious bugs were fixed. -**  \n   \n   <br>\n   <br>\n\n   # CAUTION\n   **Serious bugs are fixed as hotfixes in v3.1.1.  \n   We have discovered a serious flaw in the functionality available in for-loop added in v3.0.1.  \n   This has been corrected in v3.1.1.  \n   Accordingly, v3.0.1 has been removed from PyPI.**\n   <br>\n   <br>\n</div>\n\n---\n# prpl\n`prpl`(progress-parallel) is a library to visualize the progress of parallel processing by `concurrent.futures`, the standard python library.\n\n---\n\n## Description\n`prpl` is a \"Tips\" library that makes the standard python parallel processing library simpler to use.\n\nThe general functionality is the same as `concurrent.futures` itself, but it is possible to visualize the parallel processing status of threads generated using this library.\n\n---\n\n## More about prpl\nIn `prpl`, when performing calculations on numbers managed by a list, the list is automatically parallelized and parallelized.\nThe progress of the parallel processing can be visualized and the parallel processing can be checked.\n\nStandard features include the following,\n - Display of thread progress\n   ```Python\n   res = prpl(target_list=t_list, target_function=test_calc_func)\n   ```\n   ![prpl test gif 1](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_run_1.gif?raw=true)\n\n - Display of progress bar\n   ```Python\n   res = prpl(target_list=t_list, target_function=test_calc_func, symbol=\"#\", smpl=True)\n   ```\n   ![prpl test gif 4](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_run_4.gif?raw=true)\n\n - Measure run timer\n   ```Python\n   res = prpl(target_list=t_list, target_function=test_calc_func, timer=True)\n   ```\n   ![prpl test gif 7](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_run_7.gif?raw=true)\n\n - Change the color of the progress bar.\n   ```Python\n   res = prpl(target_list=t_list, target_function=test_calc_func, symbol=\"#\", color=\"green\")\n   ```\n   ![prpl test gif 6](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_run_6.gif?raw=true)\n\n - Only single progress bar is available.\n   ```Python\n   res = prpl(target_list=t_list, target_function=test_calc_func, list_sep=1)\n   ```\n   ![prpl test gif sample 2](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_readme_sample_2.gif?raw=true)\n\n - For use with the for-loop.\n   ```Python\n   for _ in prpl(t_list, symbol=\"#\"):\n      pass\n   ```\n   ![prpl test gif 9](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_run_9.gif?raw=true)\n\n   When used in a for-loop, the color of the symbol can also be changed.However, this feature does not allow for graphical functions with arrows, such as multi-threading (parallel processing) mode. If the symbol argument is not used, a standard count-up progress bar is used.\n   ```Python\n   for _ in prpl(t_list):\n      pass\n   ```\n   ![prpl test gif 10](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_run_10.gif?raw=true)\n\n\n - When multiple arguments are passed to a function.\n   ```Python\n   \"\"\" For functions with multiple arguments. \"\"\"\n   def multi_arguments_target_function(a,b,c,d):\n      # The argument that receives the elements of the list is \"a\".\n      return a+b+c+d\n   ```\n   ```Python\n   args_dict = {\n      \"b\": 2,\n      \"c\": 3,\n      \"d\": 4\n   }\n   res = prpl(target_list=t_list, target_function=multi_arguments_target_function, args=args_dict)\n   ```\n   When passing multiple arguments to a function, be sure to pass them as type of `dict`.\n   Also, it is not necessary to include the target list in the arguments grouped together in that type of `dict`.\n\nFor other samples, test code is available at [tests directory](https://github.com/Domzou-kun/prpl/tree/main/tests). Please run it.\n\n(and gifs are at [sample git directory](https://github.com/Domzou-kun/prpl/tree/main/docs/example_gif))\n\n\n### parallel processing\nFor parallel processing, it is CPU parallel processing using the standard python library.\nFor more information, check the python [`concurrent.futures`](https://docs.python.org/3/library/concurrent.futures.html) documentation.\n\n## Sample code\nAn actual code sample example would be as follows.\nAn example of implementation in actual code is shown below.\n\nWhen performing some calculation process on a set of numbers compiled in a list, the conventional implementation is as follows:\n\n```Python\n\"\"\" conventional method \"\"\"\ncalculation_result = []\ntarget_list = list(range(0, 100000))\nfor target_var in target_list:\n    calc_answer = (target_var**target_var)**2   # formula\n    calculation_result.append(calc_answer)\n```\n\nBy using prpl, the process inside a for loop statement is automatically executed in parallel by passing it as a function, and the result is returned.\n\n```Python\n\"\"\" Separate formulas to be processed in the for loop as functions \"\"\"\ndef target_function(target_var):\n    calc_answer = (target_var**target_var)**2   # target formula\n    return calc_answer\n\n\"\"\" Methods using prpl \"\"\"\nfrom prpl import prpl\ntarget_list = list(range(0, 100000))\ncalculation_result = prpl(target_list, target_function) # prpl\n```\nThe actual operating gif of the comparison is as follows: \n\n![prpl test gif 1](https://github.com/Domzou-kun/prpl/blob/main/docs/example_gif/prpl_readme_sample_1.gif?raw=true)\n\nIt is important to note that if the formula is not complex, it is not suitable for parallel processing.\nBecause of the nature of parallel processing, prpl should not be used unnecessarily.\n\n## Optional arguments, etc\nThe list of arguments, etc. that can be used in `prpl` is as follows.\n```\nresult_list = prpl(  # The results will always return with a type of List.\n   \n   target_list,      # Required argument\n      ### List to be used in the target function.\n\n   target_function,  # May be required argument.\n      ### A function that contains a target formula, etc, and must include a return statement.\n      ### Required arguments if prpl is used in parallel processing visualization.\n      ### It is not required if it is used in the for-loop.\n\n   args,\n      ### Multiple arguments managed by dictionary type.\n   \n   list_sep,\n      ### Number of list divisions. \n      ### Default setting is 5.\n\n   checkpoint,\n      ### Number of breaks to display progress.\n      ### ### Default setting is 10.\n   \n   title,\n      ### Title of each progress bar.\n      ### By default, the name of the target function.\n   \n   symbol,\n      ### Progress bar mark settings.\n   \n   symbol_c,\n      ### Setting the length of the progress bar.\n      ### Default setting is 50.\n   \n   smpl,\n      ### Simple display mode.\n      ### Default setting is False.\n   \n   timer,\n      ### Measuring run time.\n      ### Not available in simple mode.\n\n   color\n      ### Change the color of the progress bar.\n\n)\n```\n\n---\n\n## Impossible and warning with prpl\n - The `enumerate()` is not available.\n\n    Normally, `enumerate()` is available in a for loop statement, but this is not available in a ptpl using concurrent.futures.\n\n - A `print()` cannot be used within a function for which parallel processing is desired.\n    \n    Strictly speaking, you can use it. However, using a `print()` is the same as executing a print statement inside a for loop, so the progress bar will be misaligned.\n\n - Since parallel processing conforms to the `concurrent.futures` library, anything that cannot be done with concurrent.futures is not possible with `prpl`.\n\n    `Concurrent.futures` is used in prpl parallel processing. Therefore, what is impossible with `concurrent.futures` is also impossible with `prpl`. To the last, `prpl` is a library to handle parallel processing in a simple and intuitive way, and a library to visualize the parallel processing.\n\n - The display may shift on the console.\n\n   During execution, the vertical display of the console is controlled in the program, but the horizontal length is not. Therefore, if the `prpl` display exceeds the length of the console's width, the `prpl` may be significantly disturbed.\n\n - Be sure to provide a target function with return.\n\n   By the nature of the program, it performs an arithmetic operation on the given \"list-type\" array and returns the result in a list type. Therefore, `prpl` will cause an error if some return is not made in the function.\n   \n   The following are appropriate and inappropriate examples.\n   ```Python\n   \"\"\" appropriate example target function \"\"\"\n   def OK_func(i):\n      ans = (i**i)**2\n      return ans  # return\n   ```\n\n   ```Python\n   \"\"\" inappropriate example \"\"\"\n   def NG_func(i):\n      ans = (i**i)**2\n      # not return \n   ```\n   Be sure to include a return statement in the function.\n\n\n\n## Getting Started\n### Installing\n\n### Latest prpl via [PyPI](https://pypi.org/project/progress-parallel/) (pip install)\n![PyPI](https://img.shields.io/pypi/v/progress-parallel)\n[![Downloads](https://static.pepy.tech/badge/progress-parallel/month)](https://pepy.tech/project/progress-parallel)\n```\npip install progress-parallel\n```\n\n### Install by pip from github\n\n```\npip install git+https://github.com/Domzou-kun/prpl.git\n```\nor install via SSH\n```\npip install git+git://github.com:Domzou-kun/prpl.git\n```\n\n## Particularly technical notes\n\n### display\n`prpl`'s, the progressbar on the console uses ESC and CSI sequences to control multiple lines simultaneously.\n\nWhen using CSI and ESC sequences with cmd, etc., terminal settings must be enabled.\n\nHowever, many of the programs that display such a progressbar as this one have modified kernel and console settings to suit their individual programs. This means that if other console-controlling programs are used at the same time, the settings may conflict and break the drawing.\n\nWe have already confirmed that when `tqdm` and `prpl` are imported and used at the same time, there is a conflict with `tqdm`'s settings and `prpl`'s display is corrupted.\n\nWe are currently working on a fix for this problem.\n\nIf you have a suggestion for a technical solution, please write to the issue. We will gladly review and consider it.\n\n\n## Authors\n\nDomzou\n\n## link\n - The link to PyPI is here.  \n    - [PyPI project link](https://pypi.org/project/progress-parallel/)  \n\n - \u3053\u306ereadme\u3092\u65e5\u672c\u8a9e\u306b\u3057\u305f\u3082\u306e\u306b\u306a\u308a\u307e\u3059\u3002\u672creadme\u306e\u91cd\u8981\u306a\u90e8\u5206\u3092\u30e1\u30a4\u30f3\u306b\u65e5\u672c\u8a9e\u306b\u76f4\u3057\u3066[Qiita](https://qiita.com/Domzou/items/03d39dd1cdce46719c94)\u306b\u6295\u7a3f\u3057\u3066\u3044\u307e\u3059\u3002  \n    - [Python\u3067multiprocessing\u3092\u7c21\u5358\u306b\u53ef\u8996\u5316\u3057\u3066\u304f\u308c\u308b\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f5c\u3063\u3066\u307f\u305f](https://qiita.com/Domzou/items/03d39dd1cdce46719c94)\n\n## Version history\nIf you want to know about past versions, please refer to [version history](https://github.com/Domzou-kun/prpl/blob/main/docs/version_history.txt).\n\n## LICENSE\nPyTorch has a MIT license, as found in the [LICENSE file](https://github.com/Domzou-kun/prpl/blob/main/LICENSE).\n\n\n\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "multi threading progress bar",
    "version": "3.2.1",
    "project_urls": {
        "Download": "https://github.com/Domzou-kun/prpl",
        "Homepage": "https://github.com/Domzou-kun/prpl"
    },
    "split_keywords": [
        "python",
        "python",
        "progress",
        "multi",
        "thread",
        "threading"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf407beef9ccbc7a7cfe26cf4514945103f3f34278094edec1609e3200325805",
                "md5": "03040e7de376ded14e87ef5bd5fee272",
                "sha256": "bf6a048a7fd5c7687b9991fe57a6b1d771a013b263f42d9a064afe7e6a62b8bd"
            },
            "downloads": -1,
            "filename": "progress_parallel-3.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "03040e7de376ded14e87ef5bd5fee272",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 11125,
            "upload_time": "2023-07-13T12:35:36",
            "upload_time_iso_8601": "2023-07-13T12:35:36.805426Z",
            "url": "https://files.pythonhosted.org/packages/cf/40/7beef9ccbc7a7cfe26cf4514945103f3f34278094edec1609e3200325805/progress_parallel-3.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa43673b14527881e7fd0811289151e4e9ada105858018ba8a9ae96fb095c045",
                "md5": "b2a4be17785d4d2f675c6f90a417ce87",
                "sha256": "821182e9b4efac019a633c1e6c23730a3ff66f1927bb942849bdc2b910baeff0"
            },
            "downloads": -1,
            "filename": "progress parallel-3.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "b2a4be17785d4d2f675c6f90a417ce87",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 9294,
            "upload_time": "2023-07-13T12:35:39",
            "upload_time_iso_8601": "2023-07-13T12:35:39.275402Z",
            "url": "https://files.pythonhosted.org/packages/fa/43/673b14527881e7fd0811289151e4e9ada105858018ba8a9ae96fb095c045/progress%20parallel-3.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-13 12:35:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Domzou-kun",
    "github_project": "prpl",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "progress-parallel"
}
        
Elapsed time: 0.08906s