Skip to main content

A cli tool that makes any Python function an executable

Project description

Bistrot

A cli tool that transforms any Python function into an executable, or can easily print any constant in a codebase or library

Hatch project linting - Ruff code style - Black types - Mypy License

It takes an existing Python function in a project and allows you to call it as an independent executable. All the function arguments become cli arguments with argparse.

Examples

Let's consider this example from examples/ops.py:

#examples/ops.py
def add(a: int, b: int) -> int:
    return a + b

We can call this function from the command line using bistrot:

$ bistrot examples.ops:add --x=2 --y=3
5

It also works with static and class methods

#examples/klass.py
import bistrot

class UsefulClass:
    @staticmethod
    def version():
        return bistrot.__version__
$ bistrot examples.klass:UsefulClass.version
0.1.0

The same result can be achieved by targeting directly the __version__ variable:

$ bistrot bistrot:__version__
0.1.0

Warning

This project is still experimental and is guaranteed to work only with primitive Python types.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bistrot-0.1.0a0.tar.gz (8.7 kB view hashes)

Uploaded Source

Built Distribution

bistrot-0.1.0a0-py3-none-any.whl (4.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page