Skip to main content

Run and manage ReadyAPI apps from the command line with ReadyAPI CLI. ๐Ÿš€

Project description

ReadyAPI CLI

Test Publish Coverage Package version

Source Code: https://github.com/readyapi/readyapi-cli


Run and manage ReadyAPI apps from the command line with ReadyAPI CLI. ๐Ÿš€

Description

ReadyAPI CLI is a command line program readyapi that you can use to serve your ReadyAPI app, manage your ReadyAPI project, and more.

When you install ReadyAPI (e.g. with pip install "readyapi[standard]"), it includes a package called readyapi-cli, this package provides the readyapi command in the terminal.

To run your ReadyAPI app for development, you can use the readyapi dev command:

$ readyapi dev main.py
INFO     Using path main.py
INFO     Resolved absolute path /home/user/code/awesomeapp/main.py
INFO     Searching for package file structure from directories with __init__.py files
INFO     Importing from /home/user/code/awesomeapp

 โ•ญโ”€ Python module file โ”€โ•ฎ
 โ”‚                      โ”‚
 โ”‚  ๐Ÿ main.py          โ”‚
 โ”‚                      โ”‚
 โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ

INFO     Importing module main
INFO     Found importable ReadyAPI app

 โ•ญโ”€ Importable ReadyAPI app โ”€โ•ฎ
 โ”‚                           โ”‚
 โ”‚  from main import app     โ”‚
 โ”‚                           โ”‚
 โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€-โ•ฏ

INFO     Using import string main:app

 โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ ReadyAPI CLI - Development mode โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
 โ”‚                                                     โ”‚
 โ”‚  Serving at: http://127.0.0.1:8000                  โ”‚
 โ”‚                                                     โ”‚
 โ”‚  API docs: http://127.0.0.1:8000/docs               โ”‚
 โ”‚                                                     โ”‚
 โ”‚  Running in development mode, for production use:   โ”‚
 โ”‚                                                     โ”‚
 โ”‚  readyapi run                                       โ”‚
 โ”‚                                                     โ”‚
 โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ

INFO:     Will watch for changes in these directories: ['/home/user/code/awesomeapp']
INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
INFO:     Started reloader process [56345] using WatchFiles
INFO:     Started server process [56352]
INFO:     Waiting for application startup.
INFO:     Application startup complete.

That command line program called readyapi is ReadyAPI CLI.

ReadyAPI CLI takes the path to your Python program and automatically detects the variable with the ReadyAPI (commonly named app) and how to import it, and then serves it.

For production you would use readyapi run instead. ๐Ÿš€

Internally, ReadyAPI CLI uses Uvicorn, a high-performance, production-ready, ASGI server. ๐Ÿ˜Ž

readyapi dev

When you run readyapi dev, it will run on development mode.

By default, it will have auto-reload enabled, so it will automatically reload the server when you make changes to your code. This is resource intensive and could be less stable than without it, you should only use it for development.

By default it will listen on the IP address 127.0.0.1, which is the IP for your machine to communicate with itself alone (localhost).

readyapi run

When you run readyapi run, it will run on production mode by default.

It will have auto-reload disabled by default.

It will listen on the IP address 0.0.0.0, which means all the available IP addresses, this way it will be publicly accessible to anyone that can communicate with the machine. This is how you would normally run it in production, for example, in a container.

In most cases you would (and should) have a "termination proxy" handling HTTPS for you on top, this will depend on how you deploy your application, your provider might do this for you, or you might need to set it up yourself. You can learn more about it in the ReadyAPI Deployment documentation.

License

This project is licensed under the terms of the MIT license.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

readyapi_cli-0.0.5.tar.gz (15.6 kB view details)

Uploaded Source

Built Distribution

readyapi_cli-0.0.5-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file readyapi_cli-0.0.5.tar.gz.

File metadata

  • Download URL: readyapi_cli-0.0.5.tar.gz
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.13

File hashes

Hashes for readyapi_cli-0.0.5.tar.gz
Algorithm Hash digest
SHA256 9040a26a520d1b812553accc3193d41bc13cfddf0684b1c6ef12ee59161caa08
MD5 18084baa485a9ffc9014e088a7edc5cd
BLAKE2b-256 44cb5ced0424d687cf19b97628bfb2539a145cca857d996a8c2b6c558e297e42

See more details on using hashes here.

File details

Details for the file readyapi_cli-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: readyapi_cli-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.13

File hashes

Hashes for readyapi_cli-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 e0dc938874e74a3b12bf3ea4b0b85c6b94766184eda6476b813d5e5440204ed3
MD5 587bdb1c22f96975a2215595a52d7e8b
BLAKE2b-256 9cfa4cc7a0ff6f8acc344913303e708c7d85a8b60e805504a446bef997494d9e

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