https://github.com/chompfoods/stub-python-flask
Flask (Python) server stub for the Chomp Food & Recipe Database API. Use our API to get high-quality data on recipes and 875,000+ branded/grocery foods plus raw ingredients.
https://github.com/chompfoods/stub-python-flask
api branded chomp data database flask flask-server food grocery ingredients nutrition python raw recipe-api recipes server stub stub-server
Last synced: about 1 month ago
JSON representation
Flask (Python) server stub for the Chomp Food & Recipe Database API. Use our API to get high-quality data on recipes and 875,000+ branded/grocery foods plus raw ingredients.
- Host: GitHub
- URL: https://github.com/chompfoods/stub-python-flask
- Owner: chompfoods
- Created: 2020-01-18T04:43:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-10T13:31:03.000Z (over 5 years ago)
- Last Synced: 2025-10-10T13:16:32.755Z (8 months ago)
- Topics: api, branded, chomp, data, database, flask, flask-server, food, grocery, ingredients, nutrition, python, raw, recipe-api, recipes, server, stub, stub-server
- Language: Python
- Homepage: https://chompthis.com/api
- Size: 481 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Swagger generated server
## Overview
This server was generated by the [swagger-codegen](https://github.com/swagger-api/swagger-codegen) project. By using the
[OpenAPI-Spec](https://github.com/swagger-api/swagger-core/wiki) from a remote server, you can easily generate a server stub. This
is an example of building a swagger-enabled Flask server.
This example uses the [Connexion](https://github.com/zalando/connexion) library on top of Flask.
## Requirements
Python 3.5.2+
## Usage
To run the server, please execute the following from the root directory:
```
pip3 install -r requirements.txt
python3 -m swagger_server
```
and open your browser to here:
```
http://localhost:8080/api/v2/ui/
```
Your Swagger definition lives here:
```
http://localhost:8080/api/v2/swagger.json
```
To launch the integration tests, use tox:
```
sudo pip install tox
tox
```
## Running with Docker
To run the server on a Docker container, please execute the following from the root directory:
```bash
# building the image
docker build -t swagger_server .
# starting up a container
docker run -p 8080:8080 swagger_server
```