/folksonomy_api

A light REST API designed for Open Food Facts folksonomy engine

Primary LanguagePythonGNU Affero General Public License v3.0AGPL-3.0

Folksonomy API

A light REST API designed for the Open Food Facts Folksonomy Engine.

Dependencies

The code is written in Python 3.x and uses FastAPI framework.

PostgreSQL is used as the backend database.

Dev

You should create unit tests for each new feature or API change (see test_main.py). To run tests just launch:

pytest

Generating an OpenAPI document

FastAPI is based on OpenAPI (previously known as Swagger) and JSON Schema. FastAPI allows to generate an OpenAPI document (JSON) that you can reuse in various services (to automatically generate client libraries for example). To generate an OpenAPI document you can either:

./generate_openapi_json.py

How to install Folksonomy Engine on your local machine

  1. Install Python 3.8+
  2. Install pip
  3. Install PostgreSQL 13+
  4. Follow the steps in INSTALL.md to install requirements and for creating a db user
  5. Make a copy of local_settings_example.py and rename it to local_settings.py
  6. Change parameters accordingly in local_settings.py
  7. That's all!