Sentimental Programmer
| ysoftman
pypi json response
# pip 대신 curl 등으로 pypi 저장소에 올라온 특정 패키지 리스트를 얻을 수 있다.
# https://pypi.org/simple/{패키지명}/
curl
https://pypi.org/simple/requests/
# 그런데 html 응답이다.
# 파싱이 용이한 json 응답을 받고 싶을때는 다음과 같이 요청하면 된다.
# https://pypi.org/pypi/{패키지명}/json
curl
https://pypi.org/pypi/requests/json
# pypi api reference
https://warehouse.pypa.io/api-reference/index.html
comments:
댓글 쓰기
NewerPage
Home
OlderPage
comments:
댓글 쓰기