Skip to main content

A sample Python project

Project description

Vulcano Build Status codecov readthedocs py27build py34build py35build py36build py37build

What is Vulcano?

Vulcano is a framework for creating command line utils.

Here's a simple example:

from vulcano.app.classes import VulcanoApp


app = VulcanoApp()


@app.register()
def my_command(arg1=1, arg2=2):
    """ Just some help """
    return arg1 + arg2


@app.register('another_command', 'Just some help here')
def my_command_two()
    pass

if __name__ == '__main__':
    app.run()

This will create two commands:

  • my_command: Just some help
  • another_command: Just some help 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

vulcano-0.0.1.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

vulcano-0.0.1-py3-none-any.whl (5.2 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