Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 976 Bytes

README.md

File metadata and controls

30 lines (28 loc) · 976 Bytes

fhir-apis

  • Sample FHIR APIs built in different langauges
  • MVP:
    • CRUDS for at least 1 resource
    • Tests for each endpoint
      • pytest
      • doctest where it makes sense
    • Needs to read/write somewhere
      • local db
      • public test servers
    • documentation
      • install, run, and test api's and related resources
      • extra comments in code, assuming users new to the language/framework

FHIR API Starters:

  • Python
    • Here:
      • FastAPI (Prototype - needs work)
      • Django Rest Framework (in progress)
        • Practitioner serializer working
        • TODO: management command to seed some test data
        • TODO: TESTS!
        • TODO: Create/Update works as expected
    • Other projects:
      • fhirstarter
        • made some minor contributions, mostly a user
        • inspiration for this project
        • FastAPI example is a cruder, simpler implementation
        • would consider using in a Python dev environment