This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import base64 | |
| import binascii | |
| import secrets | |
| from starlette.authentication import ( | |
| AuthCredentials, AuthenticationBackend, AuthenticationError, SimpleUser | |
| ) | |
| from starlette.requests import HTTPConnection | |
| from starlette.responses import Response, JSONResponse | |
| from starlette.middleware import Middleware |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| com.medigy.persist.reference.type.clincial.CPT.code | label | |
|---|---|---|
| 0003T | Cervicography | |
| 0008T | Upper gi endoscopy w/suture | |
| 0010T | Tb test, gamma interferon | |
| 0016T | Thermotx choroid vasc lesion | |
| 0017T | Photocoagulat macular drusen | |
| 0018T | Transcranial magnetic stimul | |
| 0019T | Extracorp shock wave tx, ms | |
| 0020T | Extracorp shock wave tx, ft | |
| 0021T | Fetal oximetry, trnsvag/cerv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Africa/Abidjan": "+00:00", | |
| "Africa/Accra": "+00:00", | |
| "Africa/Addis_Ababa": "+03:00", | |
| "Africa/Algiers": "+01:00", | |
| "Africa/Asmara": "+03:00", | |
| "Africa/Asmera": "+03:00", | |
| "Africa/Bamako": "+00:00", | |
| "Africa/Bangui": "+01:00", | |
| "Africa/Banjul": "+00:00", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class A(models.Model): | |
| things = models.ManyToManyField("B", through=ThroughModel) | |
| class B(models.Model): | |
| text = models.TextField() | |
| class ThroughModel(models.Model): | |
| a = models.ForeignKey(A) | |
| b = models.ForeignKey(B) | |
| extra = models.BooleanField() |