1 2 3 4 5 | url = 'http://httpbin.org/post' data = {'file': open('report.xls', 'rb')} async with aiohttp.ClientSession() as session: async with session.post(apiEndpoint_send, data=data) as resp: return True | cs |
참고
'Python' 카테고리의 다른 글
Python과 함께 텔레그램 챗봇 만들기(3) (0) | 2019.04.01 |
---|---|
UnicodeEncodeError 해결하기 (0) | 2019.03.29 |
Python과 함께 텔레그램 챗봇 만들기(2) (0) | 2019.03.18 |
Python과 함께 텔레그램 챗봇 만들기(1) (0) | 2019.03.18 |
Google API 설치 (0) | 2019.03.17 |