Metadata-Version: 2.1
Name: josiauhtools
Version: 0.0.2
Summary: Some tools for python.
Author: Josiah
Project-URL: Repository, https://github.com/josiauh/josiauhtools
Keywords: tools
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# JosiauhTools
#### Table of Contents

- [Examples](#examples)
    - [Simply Then](#simply-then)

Some python general tools. 
```
pip install josiauhtools
```

# Examples
Here's what you can do with JosiauhTools!

## Simply Then
Explanation:

TL;DR: Prints "i got", and the result of running "foo" (bar)

<details>
<summary>Will read</summary>
Runs a function called "foo", which will return "bar".
After that, it runs "bar", which will print "i got bar", where bar was retrieved from "foo".
</details>




Code: 
```py
from josiauhtools import synx

def foo():
    return 'bar'

def bar(p):
    print("i got " + p)

synx.then(foo, bar)
```
