responsible-ai-toolbox/rai_core_flask
Gaurav Gupta 409e99aa87
Add 3.10 classifier for python packages (#2035)
* Add 3.10 classifier for python packages

* Update setup.py

* Update setup.py

* Update setup.py

* Update setup.py

* Update setup.py

* Update README.md

Signed-off-by: Gaurav Gupta <gaugup@microsoft.com>

---------

Signed-off-by: Gaurav Gupta <gaugup@microsoft.com>
2023-04-21 19:36:22 +00:00
..
rai_core_flask add upper bounds to greenlet and gevent in rai-core-flask as 5.0 release fails until they are more stable (#1852) 2022-12-16 13:37:34 -05:00
tests fix flaky flask test (#1203) 2022-02-07 15:46:51 -05: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 Rename wrapped-flask to rai_core_flask (#912) 2021-10-01 05:59:39 +00: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 update dependencies for rai-core-flask, raiwidgets and responsibleai packages (#2016) 2023-03-31 13:45:54 -04:00
setup.py Add 3.10 classifier for python packages (#2035) 2023-04-21 19:36:22 +00: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 5000 to 5099 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.