File size: 2,556 Bytes
0632cd1
 
 
 
 
56779ed
0632cd1
56779ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0632cd1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56779ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import json
import pandas as pd

with open('../../data.json', 'r') as f:
    data = json.load(f)
#
chunks = []
# for post in data:
#     post_text = post['text']
#     comments: list[dict] = post['comments']
#     comments_str = ''
#     for i, comment in enumerate(comments):
#         comment_text = list(comment.keys())[0]
#         replies = comment[comment_text]
#         reply_str = 'Replies:\n'
#         for j, reply in enumerate(replies):
#             if j + 1 == len(replies):
#                 reply_str += f'     • {reply}'
#             else:
#                 reply_str += f'     • {reply}\n'
#         comments_str += f'{i + 1}. {comment_text}\n'
#         if replies:
#             comments_str += f'{reply_str}\n'
#
#     chunk = f"Post: {post_text}\n"
#     if comments:
#         chunk += f'Comments:\n{comments_str}'
#     chunks.append(chunk)
# #
# df = pd.DataFrame({"chunks": chunks})
# df.to_csv('chunks_javea.csv', index=False)
#
# for post in data:
#     post_text = post['text']
#     comments: list[dict] = post['comments']
#     comments_str = ''
#     for i, comment in enumerate(comments):
#         comment_text = list(comment.keys())[0]
#         replies = comment[comment_text]
#         reply_str = '\n'
#         for j, reply in enumerate(replies):
#             if j + 1 == len(replies):
#                 reply_str += f'{reply}'
#             else:
#                 reply_str += f'{reply}\n'
#         comments_str += f'{comment_text}\n'
#         if replies:
#             comments_str += f'{reply_str}\n'
#
#     chunk = f"{post_text}\n"
#     if comments:
#         chunk += f'\n{comments_str}'
#     chunks.append(chunk)

# df = pd.DataFrame({"chunks": chunks})
# df.to_csv('chunks_javea_raw.csv', index=False)

# import requests
# import json
#
# # URL для запроса к API
# url = "https://places.googleapis.com/v1/places:searchText"
#
# # API ключ (замените 'API_KEY' на ваш реальный API-ключ)
# api_key = "AIzaSyAcfgJAVTK1gwC9tmeKg-wcVWCy5CdieW4"
#
# # Заголовки запроса
# headers = {
#     "Content-Type": "application/json",
#     "X-Goog-Api-Key": api_key,
#     "X-Goog-FieldMask": "places.displayName,places.formattedAddress,places.priceLevel"
# }
#
# # Тело запроса
# data = {
#     "textQuery": "Spicy Vegetarian Food in Sydney, Australia"
# }
#
# # Отправка POST запроса
# response = requests.post(url, headers=headers, data=json.dumps(data))
#
# # Вывод ответа от сервера
# print(response.text)