Skip to main content

Simplify your project's main entrypoint definition with @main

Project description

@main.py


PyPI version shields.io PyPI pyversions PyPI license Actions status Pyright Ruff


Basic Examples

Instead of the verbose "boilerplate"

def main(): ...

if __name__ == '__main__':
    main()

mainpy can be used to write it as:

from mainpy import main

@main
def app(): ...

Similarly, the async boilerplate

import asyncio

async def async_app(): ...

if __name__ == '__main__':
    with asyncio.Runner() as runner:
        runner.run(async_app())

can be replaced with

from mainpy import main

@mainpy.main
async def async_app(): ...

If you cannot want to use a decorator, you can also call the decorator with the function as an argument:

def async_app(): ...

# do things before running async_app()

main(async_app)

External Libraries

Even though mainpy requires no other dependencies than typing_extensions (on Python < 3.10), it has optional support for uvloop, and plays nicely with popular CLI libraries, e.g. click and typer.

uvloop

If you have uvloop installed, mainpy will automatically call uvloop.install() before running your async main function. This can be disabled by setting use_uvloop=False, e.g.:

@main(use_uvloop=False)
async def app(): ...

Click

With click you can simply add the decorator as usual.

[!IMPORTANT] The @mainpy.main decorator must come before @click.command().

import mainpy
import click

@mainpy.main
@click.command()
def click_command():
    click.echo('Hello from click_command')

The function that is decorated with @mainpy.main is executed immediately. But a @click.group must be defined before the command function. In this case, mainpy.main should be called after all has been setup:

import mainpy
import click

@click.group()
def group(): ...

@group.command()
def command(): ...

mainpy.main(group)

Typer

A typer internally does some initialization after a command has been defined. Instead of using @mainpy.main on the command itself, you should use mainpy.main() manually:

import mainpy
import typer

app = typer.Typer()

@app.command()
def command():
    typer.echo('typer.Typer()')

mainpy.main(command)

Debug mode

Optionally, Python's development mode can be emulated by passing debug=True to mainpy.main. This does three things:

@main(debug=True)
def app(): ...

Installation

The mainpy package is available on pypi for Python $\ge 3.8$:

pip install mainpy

Additionally, you can install the uvloop extra which will install uvloop>=0.14 (unless you're on windows):

pip install mainpy[uvloop]

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

mainpy-1.2.1.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

mainpy-1.2.1-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file mainpy-1.2.1.tar.gz.

File metadata

  • Download URL: mainpy-1.2.1.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.1 CPython/3.11.5 Linux/6.6.10-76060610-generic

File hashes

Hashes for mainpy-1.2.1.tar.gz
Algorithm Hash digest
SHA256 7339ae5cdb0f3782dbccf76881a855e1eebf4791f0b0725051c66ee37b3caff9
MD5 325b39cde0f3116d52d215f2f94e9a5e
BLAKE2b-256 1e261bfbee30a6f0eb69cba610796fadfbacc091b278ae82b970f2feaba379b8

See more details on using hashes here.

File details

Details for the file mainpy-1.2.1-py3-none-any.whl.

File metadata

  • Download URL: mainpy-1.2.1-py3-none-any.whl
  • Upload date:
  • Size: 5.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.1 CPython/3.11.5 Linux/6.6.10-76060610-generic

File hashes

Hashes for mainpy-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 59d62f72031a08b95f0073839cfafe29e216dd764f8644231b0203d1c8f0cec5
MD5 0e7983d8f4132421c8e117050d5b574c
BLAKE2b-256 a1040c002bce5bd84232beee288d7f530bc190abd8c3923b327ece4d9cfdbaa6

See more details on using hashes here.

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