Skip to main content

Turn your python functions into CLI-friendly scripts.

Project description

CLI-cake

Easily pass CLI args into functions. Turn your functions into scripts.

CLI-cake takes this:

import sys
def echo(*args, capitalize = False):
    if capitalize:
        args = [a.upper() for a in args]
    print(' '.join(args))

caps = False
for arg in args:
    if arg == '--capitalize':
        caps = True
echo(sys.argv[1:], caps)

and turns it into this

import cake

@cake.runnable
def echo(*args, capitalize = False):
    if capitalize:
        args = [a.upper() for a in args]
    print(' '.join(args))

echo()
$ python echo.py hello world --capitalize
HELLO WORLD

Why

I realized that when I'm building quick, simple scripts for internal use, I resort to one of two approaches:

  1. I just hardcode the values into my script, and just change the values each time I use it
  2. I build out some type of custom CLI or gui interface for the script

Both of these approaches have downsides- with the first approach, you end up spending more time between runs editing code, and end up with the bad practice of directly editing your source code for non-permanent changes. With the second approach, you end up spending extra time up front writing code, and it can make concise scripts more messy by adding in this extra code.

clicake is a bunch of convenience methods that solve these problems, making it super quick and easy to transform your functions into fully-featured CLI-callable scripts.

Installing

Getting Started

clicake is really easy to use! Try creating the file 'echo.py' and add the following code:

import cake

@cake.runnable
def echo(*args, capitalize = False):
    if capitalize:
        args = [a.upper() for a in args]
    print(' '.join(args))

if __name__ == '__main__':
    echo()

OR

import cake

def echo(*args, capitalize = False):
    if capitalize:
        args = [a.upper() for a in args]
    print(' '.join(args))

if __name__ == '__main__':
    cake.run(echo)

And in your terminal

$ python echo.py hello world --capitalize
HELLO WORLD

Documentation

Decorators

def runnable(callback, args, print_output):
    pass

Methods

def run(callback):
    pass

Objects

class Cake():
    def runnable(callback, args, print_output):
        pass
    def run(callback):
        pass

Testing

From root, you can run the tests with

python -m cake.tests

Build / Deploy

Install build dependencies locally:

pip install --user --upgrade twine setuptools wheel

Build source and distribution files:

python setup.py sdist bdist_wheel

upload to PyPi with Twine:

python -m twine upload dist/*

You'll be prompted to use __token__ as the username, and you'll need to use an API token from PyPi as the password.

Advanced Topics

pyinstaller

I'd recommend using pyinstaller if you want to generate standalone executable script builds in addition to cli-cake. Read more on there site here.

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

cli-cake-0.0.2.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

cli_cake-0.0.2-py3-none-any.whl (4.3 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