pyapi-framework

A simple python REST api framework.


License
GPL-3.0
Install
pip install pyapi-framework==0.0.1

Documentation

pyapi Framework

A simple python REST api framework.

Requirements

  • python >= 3
  • pip

How to Run pyapi

Navigate to project src folder and run the following to start the server:

python3 main.py

Default pyapi architecture

  • main.py:
    Includes http server where server url and port are set.

  • routes.py:
    Includes methods for routes set in service_handler.py.

  • service_handler.py:
    Services required for headers, routes dictionary and GET/POST/PUT/DELETE methods.