Requests(2)
-
[Docker] Getting started with Docker
Docker 컨테이너로 띄운 서버를 확인해보고 싶다면? (1) 웹브라우저 (2) curl (3) python requests 1. Web browser 2. curl 3. Python requests 참고자료 https://docs.docker.com/get-started/ Overview of the get started guide Get started with the Docker basics in this comprehensive overview, You'll learn about containers, images, and how to containerize your first application. docs.docker.com https://github.com/docker/getting-starte..
2024.03.28 -
[풀스택] HTTP's streaming / Curl / SOA / Microservice
HTTP Client Modules in Python Standard Libraries urllib : URL handling module URL을 전문적으로 처리하는 python 라이브러리 http.client : HTTP protocol client module Non-Standard Library (recommended) 3rd - party “Requests: HTTP for Humans” Installation required ( pip install requests ) Elegant and simple HTTP library for Python import requests required 클라이언트 측에서 사용한다면, request를 쓰세요 한 줄이면 끝 - 정말 쉽다 HTTP Server M..
2023.04.19