responsible-ai-toolbox/rai_core_flask
Ilya Matiach 577f7a9735
remove pins on werkzeug, itsdangerous and markupsafe since they are currently not needed (#2565)
2024-05-16 16:05:02 -04:00
..
rai_core_flask fix bad whitespace in url format for azure compute instance base url (#2537) 2024-02-14 16:07:32 -05:00
tests Dashboard Port Updates (#2406) 2023-11-02 16:50:33 -04:00
.gitignore Add License and Requirements to Source Distribtion (#1522) 2022-07-05 13:08:46 -04:00
LICENSE Add License and Requirements to Source Distribtion (#1522) 2022-07-05 13:08:46 -04:00
MANIFEST.in Add License and Requirements to Source Distribtion (#1522) 2022-07-05 13:08:46 -04:00
README.md Dashboard Port Updates (#2406) 2023-11-02 16:50:33 -04:00
release.sh Rename wrapped-flask to rai_core_flask (#912) 2021-10-01 05:59:39 +00:00
requirements-dev.txt upgrade pytest to 7.0.1, remove mock and updgrade pytest-mock to 3.6.1 (#1287) 2022-03-24 08:30:28 -04:00
requirements.txt remove pins on werkzeug, itsdangerous and markupsafe since they are currently not needed (#2565) 2024-05-16 16:05:02 -04:00
setup.py release rai-core-flask 0.7.5 (#2553) 2024-04-15 14:59:56 -04:00

README.md

rai_core_flask

Provide environment detection for enabling Flask server without configuring at instantiation. Environments are implemented as classes that will either return None if the environment check fails, or return an object with all the appropriate environment settings if the check passes. The flask service can then use it to build out urls, attach required headers, and render inline visualizations with the correct methods.

Installation

pip install -e .

Usage

from rai_core_flask import FlaskHelper flask_service = FlaskHelper(ip=<ip-to-listen-on>, port=<port-to-listen-on>)

If ip is not specified then it listens on localhost by default. If port is not specified then it finds an open port in the range 8704 to 8993 and listens on it.

To register a function to listen on an route:

@flask_service.app.route("/your-api-route/<int:param_name>", methods=["GET", "POST"])
def my_func(param_name):
    return something

Release Process

  1. Increment the version number in setup.py
  2. Activate your virtual environment.
  3. Run the release.sh script.