-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.py
More file actions
19 lines (18 loc) · 848 Bytes
/
test.py
File metadata and controls
19 lines (18 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import requests
BASE = "http://127.0.0.1:5000/"
response = requests.get(
BASE, {"src": "https://storage.googleapis.com/bizupimg/profile_photo/goodwell_logo.png"})
print(response.json())
response = requests.get(
BASE, {
"src": "https://storage.googleapis.com/bizupimg/profile_photo/WhatsApp%20Image%202020-08-23%20at%203.11.46%20PM%20-%20Himanshu%20Kohli.jpeg"})
print(response.json())
response = requests.get(
BASE, {"src": "https://storage.googleapis.com/bizupimg/profile_photo/918527129869%20instagram-logo-png-2451.png"})
print(response.json())
response = requests.get(
BASE, {"src": "https://storage.googleapis.com/bizupimg/profile_photo/bhawya_logo.jpeg"})
print(response.json())
response = requests.get(
BASE, {"src": "https://storage.googleapis.com/bizupimg/profile_photo/kppl_logo.png"})
print(response.json())