An open API service indexing awesome lists of open source software.

https://github.com/aahnik/ado-py

Do stuff with python. Quickly access functions defined in do.py from the command-line.
https://github.com/aahnik/ado-py

cli-app python3 task-runner

Last synced: 8 months ago
JSON representation

Do stuff with python. Quickly access functions defined in do.py from the command-line.

Awesome Lists containing this project

README

          

# 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`.