Metadata-Version: 2.1
Name: asyncrun
Version: 0.3.0
Summary: A simple utility for running functions in parallel.
Home-page: https://github.com/jackjenglish/asyncrun
Author: Jack English
Author-email: Jack English <jackjenglish@gmail.com>
License: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tqdm

# basically Promise.all but python.

```python
import asyncrun

# Your function and arguments here
result = asyncrun.all(sample_function, args=[(1,), (2,)])
print(result)
```
