Python Library Requests를 소개합니다.

컴퓨터/Python 2014. 5. 27. 10:25

Python은 urllib를 통해 네트워크 접속이 가능하지만 프록시나 세션 설정을 위해서는 CookieJar나 Handler를 설정해줘야 합니다. 이러한 번거로움을 없애기 위해서

Requests 라이브러리를 사용해봅시다.

자세한 내용은 QuickStart 와 Documents를 참조합니다.

Link : http://docs.python-requests.org/en/latest/

'컴퓨터 > Python' 카테고리의 다른 글

파이썬 랜덤 IP 주소 생성 코드  (0) 2013.06.23

설정

트랙백

댓글

파이썬 랜덤 IP 주소 생성 코드

컴퓨터/Python 2013. 6. 23. 16:38

 

'.'.join(map(lambda x: str(random.randrange(1,256)), range(4)))


'컴퓨터 > Python' 카테고리의 다른 글

Python Library Requests를 소개합니다.  (0) 2014.05.27

설정

트랙백

댓글