Skip to main content

Fastest, easiest and simple web framework for Python.

Project description

Retic.py

Fastest, easiest and simplest web framework for Python.

  • Building secure and fast REST API Services with Python
  • A easy python web framework for beginners.
  • Simple integration with frontend frameworks to deploying a machine learning model in a modern web application.

Installation

Install and update using Pip:

# Get the latest stable release of Retic
$ pip install -U retic

Simple rest api example in python

from retic import Router, App as app

router = Router()
router.get("/", lambda req, res, next: res.ok({"msg": "Welcome to Retic ^^"}))

app.use(router)

app.listen(
    use_reloader=True,
    use_debugger=True,
    port=1801,
    hostname="localhost"
)

Documentation

In progress...

License

MIT

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

retic-0.0.4.tar.gz (14.5 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