Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- loss functions
- model-free control
- resample
- checkitout
- REINFORCE
- domain adaptation
- non parametic softmax
- normalization
- noise contrast estimation
- pulloff
- Actor-Critic
- freebooze
- clip intensity values
- fastapi
- shadowing
- scowl
- rest-api
- remove outliers
- 3d medical image
- straightup
- 자료구조
- sample rows
- sidleup
- Knowledge Distillation
- Inorder Traversal
- MRI
- Excel
- Policy Gradient
- objective functions for machine learning
- thresholding
Archives
- Today
- Total
목록requests (1)
Let's Run Jinyeah
[Python] Consuming APIs
HTTP library - requests make and send HTTP request to interact with APIs GET / POST / PUT / DELETE import requests # GET : url에 특정 id api_url = "https://jsonplaceholder.typicode.com/todos/10" response = requests.get(api_url) print(response.json()) print(response.status_code) print(response.headers["Content-Type"]) #metatdata about the response # POST: 전체 todos url 사용 api_url = "https://jsonplace..
Programming/Web
2021. 11. 19. 19:45