Metadata-Version: 2.1
Name: ado-py
Version: 0.1.0
Summary: Do stuff with python. Quickly access functions defied in do.py from the command-line.
Home-page: https://github.com/aahnik/ado-py
License: MIT
Keywords: python,cli,task runner
Author: aahnik
Author-email: daw@aahnik.dev
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/aahnik/ado-py
Description-Content-Type: text/markdown

# ado-py

Do stuff with python. Quickly access functions from the command-line.

Automate stuff and save time.

Inspired by make. 😂

To avoid repetition of lines in the terminal, we often create a make alias and call
`make func`

In `make` you write stuff in shell, in `ado`, you write in python.

## Installation

```shell
pip install ado-py
```

## Usage

Create a `do.py` file in your directory.

Write functions in it like this

Note: the functions in `do.py` should not take any arguments.
For user input use `input()` function.

Call any function from the terminal by running `ado func`.

Running only `ado` would print the docstring of `do.py`.

