mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 22:07:38 +03:00
multipart implementation
This commit is contained in:
parent
264380bf33
commit
aaef550bc5
15 changed files with 781 additions and 87 deletions
18
examples/multipart/client.py
Normal file
18
examples/multipart/client.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
import asyncio
|
||||
import aiohttp
|
||||
|
||||
|
||||
def client():
|
||||
with aiohttp.MultipartWriter() as writer:
|
||||
writer.append('test')
|
||||
writer.append_json({'passed': True})
|
||||
|
||||
resp = yield from aiohttp.request(
|
||||
"post", 'http://localhost:8080/multipart',
|
||||
data=writer, headers=writer.headers)
|
||||
print(resp)
|
||||
assert 200 == resp.status
|
||||
|
||||
|
||||
loop = asyncio.get_event_loop()
|
||||
loop.run_until_complete(client())
|
Loading…
Add table
Add a link
Reference in a new issue