Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
seawolf2357
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,6 @@ from datetime import datetime, timedelta
|
|
6 |
|
7 |
API_KEY = os.getenv("SERPHOUSE_API_KEY")
|
8 |
|
9 |
-
|
10 |
-
|
11 |
COUNTRY_LOCATIONS = {
|
12 |
"United States": "United States",
|
13 |
"United Kingdom": "United Kingdom",
|
@@ -26,7 +24,56 @@ COUNTRY_LOCATIONS = {
|
|
26 |
"Spain": "Spain",
|
27 |
"Netherlands": "Netherlands",
|
28 |
"Singapore": "Singapore",
|
29 |
-
"Hong Kong": "Hong Kong"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
}
|
31 |
|
32 |
MAJOR_COUNTRIES = list(COUNTRY_LOCATIONS.keys())
|
|
|
6 |
|
7 |
API_KEY = os.getenv("SERPHOUSE_API_KEY")
|
8 |
|
|
|
|
|
9 |
COUNTRY_LOCATIONS = {
|
10 |
"United States": "United States",
|
11 |
"United Kingdom": "United Kingdom",
|
|
|
24 |
"Spain": "Spain",
|
25 |
"Netherlands": "Netherlands",
|
26 |
"Singapore": "Singapore",
|
27 |
+
"Hong Kong": "Hong Kong",
|
28 |
+
"Indonesia": "Indonesia",
|
29 |
+
"Malaysia": "Malaysia",
|
30 |
+
"Philippines": "Philippines",
|
31 |
+
"Thailand": "Thailand",
|
32 |
+
"Vietnam": "Vietnam",
|
33 |
+
"Belgium": "Belgium",
|
34 |
+
"Denmark": "Denmark",
|
35 |
+
"Finland": "Finland",
|
36 |
+
"Ireland": "Ireland",
|
37 |
+
"Norway": "Norway",
|
38 |
+
"Poland": "Poland",
|
39 |
+
"Sweden": "Sweden",
|
40 |
+
"Switzerland": "Switzerland",
|
41 |
+
"Austria": "Austria",
|
42 |
+
"Czech Republic": "Czech Republic",
|
43 |
+
"Greece": "Greece",
|
44 |
+
"Hungary": "Hungary",
|
45 |
+
"Portugal": "Portugal",
|
46 |
+
"Romania": "Romania",
|
47 |
+
"Turkey": "Turkey",
|
48 |
+
"Israel": "Israel",
|
49 |
+
"Saudi Arabia": "Saudi Arabia",
|
50 |
+
"United Arab Emirates": "United Arab Emirates",
|
51 |
+
"South Africa": "South Africa",
|
52 |
+
"Argentina": "Argentina",
|
53 |
+
"Chile": "Chile",
|
54 |
+
"Colombia": "Colombia",
|
55 |
+
"Peru": "Peru",
|
56 |
+
"Venezuela": "Venezuela",
|
57 |
+
"New Zealand": "New Zealand",
|
58 |
+
"Bangladesh": "Bangladesh",
|
59 |
+
"Pakistan": "Pakistan",
|
60 |
+
"Egypt": "Egypt",
|
61 |
+
"Morocco": "Morocco",
|
62 |
+
"Nigeria": "Nigeria",
|
63 |
+
"Kenya": "Kenya",
|
64 |
+
"Ukraine": "Ukraine",
|
65 |
+
"Croatia": "Croatia",
|
66 |
+
"Slovakia": "Slovakia",
|
67 |
+
"Bulgaria": "Bulgaria",
|
68 |
+
"Serbia": "Serbia",
|
69 |
+
"Estonia": "Estonia",
|
70 |
+
"Latvia": "Latvia",
|
71 |
+
"Lithuania": "Lithuania",
|
72 |
+
"Slovenia": "Slovenia",
|
73 |
+
"Luxembourg": "Luxembourg",
|
74 |
+
"Malta": "Malta",
|
75 |
+
"Cyprus": "Cyprus",
|
76 |
+
"Iceland": "Iceland"
|
77 |
}
|
78 |
|
79 |
MAJOR_COUNTRIES = list(COUNTRY_LOCATIONS.keys())
|