automationhacks / people-api

REST API created using Flask, Connexion, SQL Alchemy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

people-api

Hello 👋🏻,

This is a REST API with that simulates a simple people record database. Post following the setup instructions, you may want to play around with the API's in either swagger or with the provided postman collections in /postman folder. Enjoy and happy testing.

Tech stack

Uses Flask, Connexion, Swagger and SQL Alchemy

Setup

  • Ensure you have pipenv available. Read this blog to understand all about pipenv
  • Ensure you have cloned this repo and are in the project root directory that has the Pipfile with definitions of all required dependencies.
  • Execute pipenv shell to activate the virtualenv in your terminal
  • Execute pipenv install to install all dependencies
  • cd to people-api
  • Execute python server.py
  • To open swagger navigate to http://0.0.0.0:5000/api/ui/

On a windows machine, you may want to replace the host as 127.0.0.1 in above URL

Project structure

  • server.py has the code to start the Flask app with connexion
  • people.py has the implementation for CRUD operations of the people API
  • swagger.yml has the swagger spec to define the route for the API while also allowing to build out a nice swagger documentation
  • static dir contains the css and js files (following MVC) which define the presentation and the interactions with the web apps API

Common Gotchas

  • To install swagger-ui, please run pipenv install "connexion[swagger-ui]". Read this bug to understand about why zsh needs this to be quoted.
  • If you are on windows platform,
    • Try using 127.0.0.1 as the host instead of 0.0.0.0
    • Also enclose the URL in CURL with double quotes instead of single quotes (Reference thread on stack overflow)

Reference

This follows the steps from a real python tutorial series written by Doug Farrell

Further read

Some useful posts to refer apart from the tutorials

About

REST API created using Flask, Connexion, SQL Alchemy

License:GNU General Public License v3.0


Languages

Language:Python 42.9%Language:JavaScript 35.2%Language:HTML 7.7%Language:Roff 7.6%Language:CSS 6.5%