Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Apys v0.6.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@seijihirao seijihirao released this 22 Aug 00:45
· 59 commits to master since this release

New Features

Utils

Utils now require a subdir to work, and a file named __init__

Old:

root/
    utils/
        my_lib.py

New:

root/
    utils/
        my_lib/
            __init__.py

req.params

req.params removed, you now have to use req.body or req.query from aiohttp now.