Skip to main content

C-Like main method support

Project description

mainmethod.py

Provides C-like main method support.

Sample usage:

# file: script.py
from mainmethod import mainmethod

@mainmethod
def main():
    print('hello, world!')

Running the script defined above will execute the method main.

$ python script.py
hello, world

No more need for

if __name__ == '__main__':
    main()

The decorator inspects the method marked as main and supports these signatures;

  1. main(). -> No command line arguments.
  2. main(argv) (or main(args)) -> Get sys.argv passed to the main method call.
from mainmethod import mainmethod

@mainmethod
def main(argv):
    message = 'hello, world'

    if '--loud' in argv:
        message = message.upper()

    print(message)

The decorator also automatically gathers the return value from the main method and uses it as the return status code.

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

mainmethod-0.1.0.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

mainmethod-0.1.0-py3-none-any.whl (2.4 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