Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 945 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 945 Bytes

FastAPI ApiMedic Server

A Python server (FastAPI) that simplifies the work with the ApiMedic service. Send simpler requests to your server and get the result from the service. This server uses client code from the priaid-eHealth project

How to use?

  1. Install required dependencies with command

pip install -r requirements.txt

  1. Add your auth data to cfg/config.py
username = "USE YOUR OWN!" # Here enter your API user name
password = "USE YOUR OWN!" # Here enter your API password
priaid_authservice_url = "https://authservice.priaid.ch/login"
priaid_healthservice_url = "https://healthservice.priaid.ch"
language = "en-gb"
pritnRawOutput = False
  1. Run the server
  2. Profit!

Links

  1. priaid-eHealth project
  2. Symptom Checker API
  3. FastAPI