Metadata-Version: 2.4
Name: orderman
Version: 0.1.1
Summary: A simple library that orders the execution of functions
License: Apache 2.0
Author: Landon Stone
Requires-Python: >=3.13
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Description-Content-Type: text/markdown


![Logo](https://lh3.googleusercontent.com/d/1yyUAsyMHsgy4rJSzxh4lJ-BZKQMMmLBR)




![PyPI - License](https://img.shields.io/pypi/l/orderman)
![PyPI - Version](https://img.shields.io/pypi/v/orderman)

# Orderman

An easy way to order and execute python functions


## Installation

Install Orderman with pip

```bash
  pip install orderman
```
    
## Usage/Examples

```python
import orderman

@orderman.task(2) # Creates a function that will be executed first
def do_something():
    print("Hello orderman world!")

@orderman.task(1) # Creates a function that will be executed after
def do_another_thing():
    print("Dogs are great!")

orderman.execute()

"""Results"""

Dogs are great
Hello orderman world!
```

## Authors

- [LadonON](https://www.github.com/LadonON)


