Skip to main content

Green threads and CSP for micropython.

Project description

Green threads and CSP for micropython.

Api documentation.

Installation

For installing run:

pip-micropython install microasync

Basic usage

For basic usage you should create coroutines and start main loop. For example, script that prints ok! every ten seconds:

from microasync.async import loop, coroutine, Delay


@coroutine
def main_coroutine():
    while True:
        print('ok!')
        yield Delay(10)


main_coroutine()
loop()

More examples:

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

microasync-0.3.tar.gz (5.1 kB view hashes)

Uploaded Source

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