pythonscriptoperations

A package to manage and execute Python operations.


Keywords
python, script, operations, manager, console, selection
License
MIT
Install
pip install pythonscriptoperations==0.1.1

Documentation

PythonScriptOperations

PyPI

What is it?

PythonScriptOperations is a library for Python console applications to quickly set up a console application interface. Developers can utilize it to swiftly access specific portions of their codebase by registering operations.

It is the brother to CSharpScriptOperations, a similar library for C# console applications.

Quick Start

  1. Import the pip package:

    import pythonscriptoperations
  2. Create a function or async function and register it:

    def add_numbers():
        result = 2 + 2
        print(f"2 + 2 = {result}")
    
    register_operations(add_numbers, "Print the result of 2+2")
  3. Start listening for operations:

    start_listening()

What does it look like?

This is an example taken from the demo.py.

Available operations:
0. Exit
1. Addition: 5 + 7
2. Subtraction: 12 - 4
3. Multiplication (async): 6 * 3
4. Division: 36 / 6

Select an operation ('help' for list of operations)
1

Running operation: Addition: 5 + 7
12

Done

Detailed Instructions

1. Install the pip package.

Install the pip package using:

pip install pythonscriptoperations

Then, simply import pythonscriptoperations wherever you need it.

2. Define your operations

Operations are simple Python functions (or async functions) dedicated to specific tasks.
To provide a description, simply pass it when registering the function:

def example_function():
    print("This is an example.")

register_operations(example_function, "An example operation")

3. Register your operations

You can register multiple operations at once:

def operation1():
    pass

def operation2():
    pass

register_operations(operation1, "Description for operation1")
register_operations(operation2, "Description for operation2")

4. Start listening

Start the listener to display available operations and accept user input:

start_listening_async()

For synchronous setups, you can use:

start_listening()

5. Try it out

When you run your script, you should see a list of operations with numbers next to them. To execute an operation, simply input its number.

Example

For a complete working example, refer to the demo.py in the repository.