-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdelete.py
138 lines (127 loc) · 3.59 KB
/
delete.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/usr/bin/env python
import requests
import google_maps
import match_types
class Veridion:
def __init__(self, api_key, address, name, maps_key):
self.api_key = api_key
self.address = address
self.name = name
self.maps_key = maps_key
def request(self, lat, long):
url = 'https://data.veridion.com/match/v4/companies'
headers = {
'x-api-key': self.api_key,
'Content-type': 'application/json'
}
data = {
"legal_names": [self.name], # Change to a list
"address_txt": self.address, # Change to a list
"locations_latitude": lat,
"locations_longitude": long # Corrected typo
}
response = requests.post(url, headers=headers, json=data)
if response.status_code == 200:
result = response.json()
return str(result)
else:
print(f"Error: {response.status_code}, {response.text}")
def veridion(self):
coord = google_maps.Maps(self.address, self.maps_key,self.api_key)
lat, long = coord.get_lat_long()
self.request(lat, long)
def get_specific(self):
restaurant_types = [
'restaurant',
'bar',
'cafe',
'night_club',
'pub',
'bakery',
'meal_delivery',
'meal_takeaway',
'liquor_store',
'grocery_or_supermarket',
'convenience_store',
'food',
'store',
'shopping_mall',
'department_store',
'supermarket',
'gas_station',
'pharmacy',
'book_store'
]
cuisine_types = [
'chinese',
'japanese',
'indian',
'italian',
'mexican',
'thai',
'french',
'greek',
'spanish',
'american',
'korean',
'vietnamese',
'mediterranean',
'middle_eastern',
'turkish',
'brazilian',
'peruvian',
'argentinian',
'moroccan',
'caribbean',
'african',
'hawaiian',
'filipino',
'asian',
'latin_american',
'cuban',
'russian',
'german',
'irish',
'british',
'australian',
'canadian'
]
specific_food_types = [
'pizza',
'sushi',
'burger',
'sandwich',
'ice_cream',
'donut',
'bakery',
'coffee_shop',
'juice_bar',
'smoothie',
'tea',
'ramen',
'noodle',
'hot_dog',
'frozen_yogurt'
]
meal_types = [
'breakfast',
'brunch',
'lunch',
'dinner'
]
specialty_types = [
'seafood',
'steakhouse',
'vegetarian',
'vegan',
'gluten_free',
'organic',
'farmers_market'
]
all_restaurant_types = restaurant_types + cuisine_types + specific_food_types + meal_types + specialty_types
str = self.veridion()
all_specialties=[]
for specialty in all_restaurant_types:
if specialty in str:
all_specialties.append(specialty)
return all_specialties