forked from skrishnan2001/Stock-Price-Predictor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.py
56 lines (56 loc) · 1.16 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
52
53
54
55
56
countries = {
"India": "in",
"Argentina": "ar",
"Australia": "au",
"Austria": "at",
"Belgium": "be",
"Brazil": "br",
"Bulgaria": "bg",
"Canada": "ca",
"China": "cn",
"Colombia": "co",
"Cuba": "cu",
"Czech Republic": "cz",
"Egypt": "eg",
"France": "fr",
"Germany": "de",
"Greece": "gr",
"Hong Kong": "hk",
"Hungary": "hu",
"Indonesia": "id",
"Ireland": "ie",
"Israel": "il",
"Italy": "it",
"Japan": "jp",
"Latvia": "lv",
"Lithuania": "lt",
"Malaysia": "my",
"Mexico": "mx",
"Morocco": "ma",
"Netherlands": "nl",
"New Zealand": "nz",
"Nigeria": "ng",
"Norway": "no",
"Philippines": "ph",
"Poland": "pl",
"Portugal": "pt",
"Romania": "ro",
"Russia": "ru",
"Saudi Arabia": "sa",
"Serbia": "rs",
"Singapore": "sg",
"Slovakia": "sk",
"Slovenia": "si",
"South Africa": "za",
"South Korea": "kr",
"Sweden": "se",
"Switzerland": "ch",
"Taiwan": "tw",
"Thailand": "th",
"Turkey": "tr",
"UAE": "ae",
"Ukraine": "ua",
"United Kingdom": "gb",
"United States": "us",
"Venuzuela": "ve"
}