-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsend_batches.py
43 lines (35 loc) · 1.65 KB
/
send_batches.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
import requests
url = 'http://localhost:3000/Batch'
json_object = {
'uid': '12432',
'batch': [
{
'non_translated': "Pw pw ante na doulepsei to spell checker asdfsadfasdkfk",
'translated': "Πω πω άντε να δουλέψι το spell checker ασδφσαδφασδκφκ",
},
{
'non_translated': "O Xarhs einai kalo paidi;Etsi; Nomizw pws einai.",
'translated': "Ο Χάρης είναι καλό παιδί;Έτσι; Νομίζω πως είναι."
},
{
'non_translated': "O Kwstas einai kata tou vim. Giati re kWsta eisai kata tou vim?",
'translated': "Ο Κώστας είναι κατά του vim. Γιατί ρε Κώστα είσαι κατά του Vim?"
},
{
'non_translated': "O Kwstas einai kata tou vim. Giati re kWsta eisai kata tou vim?Re kwsta se parakalw mhn eisai kata tou vim giati to vim einai polu kalo.",
'translated': "Ο Κώστας είναι κατά του vim. Γιατί ρε Κώστα είσαι κατά του Vim?Ρε Κώστα σε παρακαλώ μην είσαι κατά του vim γιατί το vim είναι πολύ καλό."
}
]
}
for i in range(200):
json_object["batch"].append(
{
'non_translated': "Mhn re file.",
'translated': "Μην ρε φίλε."
}
)
# set the encoding of the request data to UTF-8
headers = {'Content-Type': 'application/json; charset=utf-8'}
# send the request with the UTF-8 encoding
r = requests.post(url, headers=headers, json=json_object)
print(r.status_code)