https://github.com/martinpeck/flask-api-starter
A set of files that provide a very basic Flask API, to be used as a starting point
https://github.com/martinpeck/flask-api-starter
flask flask-api python3
Last synced: 2 months ago
JSON representation
A set of files that provide a very basic Flask API, to be used as a starting point
- Host: GitHub
- URL: https://github.com/martinpeck/flask-api-starter
- Owner: martinpeck
- License: mit
- Created: 2019-07-22T21:56:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-05-02T18:29:49.000Z (about 3 years ago)
- Last Synced: 2025-10-09T19:21:46.670Z (9 months ago)
- Topics: flask, flask-api, python3
- Language: Python
- Size: 26.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Basic FlaskAPI App
This repository is a starting point for a FlaskAPI based web app.
## Setup
In order to run the application you'll need the following:
- Install `pipenv` (required)
- Install `pyenv` (optional)
This project uses `pipenv` to manage packages.
I would also recommend installing `pyenv` as this allows you to select a specific version of Python, and this project contains a `.python-version` file to auto-select a specific version.
## Running Locally
# Useful Resources
- Explore Flask:
- Blueprints and Views:
- FlaskAPI Guide:
- "Larger Applications":
-