/ado-py

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

Primary LanguagePythonMIT LicenseMIT

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

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.