🦠A simple and fast (< 200ms) API for tracking the global coronavirus (COVID-19, SARS-CoV-2) outbreak. It's written in python using the 🔥 FastAPI framework. Supports multiple sources!
Creation of CoordinateFactory class to implement Factory design pattern, _creationtype is a parameter which determines which constructor is called, either Longitude or Latitude.
The corresponding Coordinate type is then created
Abstraction of Coordinate class which is a superclass to the two symmetrical classes Latitude and Longitude, for the CoordinateFactory implementation.
Coordinates class is a composition of Latitude and Longitude.
Major Changes