Metadata-Version: 2.1
Name: asyncrun
Version: 0.1.0
Summary: A simple utility for running functions in parallel.
Home-page: https://github.com/jackjenglish/asyncrun
Author: Jack English
Author-email: jackjenglish@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# basically Promise.all but python.

```python
import asyncrun

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


