-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.py
51 lines (42 loc) · 2.36 KB
/
constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
#
#
#
################################################################################
# #
# All of the urls we provide a wrapper for #
# #
################################################################################
BASE_URL = 'http://id.who.int/icd/'
#Foundation api endpoints
ENTITY_URL = BASE_URL + 'entity/'
ENTITY_ID_URL = ENTITY_URL + '{icd11_code}'
ENTITY_SEARCH_URL = ENTITY_URL + 'search'
#Linnearization endpoints
# Endpoints with no release id
LINEAR_URL = BASE_URL + 'release/11/{linear}'
LINEAR_ID_URL = LINEAR_URL + '/{{icd11_code}}'
LINEAR_ID_RESIDUAL_URL = LINEAR_ID_URL + '/{residual}'
# Endpoints that require a release id
LINEAR_RELEASE_URL = BASE_URL + 'release/11/{release_id}/{linear}'
LINEAR_RELEASE_ID_URL = LINEAR_RELEASE_URL + '/{{icd11_code}}'
LINEAR_RELEASE_RESIDUAL_URL = LINEAR_RELEASE_ID_URL + '/{residual}'
LINEAR_RELEASE_SEARCH = BASE_URL + 'release/11/{release_id}/{linear}/search'
RELEASE_CODEINFO_URL = LINEAR_RELEASE_URL + "/codeinfo/{{icd11_code}}"
################################################################################
################################################################################
# #
# The DataItem class we use for preprocessing. Just a lightweight class that #
# allows us to keep going with the download in case something fails #
################################################################################
#This is now deprecated
#DataItem = namedtuple('DataItem',['id','url','content'])
################################################################################
################################################################################
# #
# Miscellaneous #
# #
################################################################################
TOKEN_ENDPOINT = 'https://icdaccessmanagement.who.int/connect/token'
RATE_LIMIT = 0.5
################################################################################