Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 475 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 475 Bytes

aioclient

Installation

pip install aioclient

Usage

import aioclient

async def get_example():
    status, headers, body = await aioclient.get('https://www.example.com/')
    print(body)

Changelog

v0.1.0

  • GET requests return status, headers, body tuples

v0.2.0

  • Support OPTIONS, HEAD, POST, PUT, PATCH, and DELETE requests
  • Deserialize text/xml responses as XML ElementTree

v0.2.1

  • Fix project description