Skip to content

Releases: gulducat/basic-api

v0.2.0

27 May 20:48
871e95e
Compare
Choose a tag to compare

BREAKING CHANGE: Replace host and proto keyword args with a single base_url kwarg.

base_url should include the protocol, unless your adapter does that for you, which requests does not.

Ex:

# replace
api = BasicAPI('api.example.com')
# with
api = BasicAPI('https://api.example.com')
# or
api = BasicAPI(host='api.example.com')
# with
api = BasicAPI(base_url='https://api.example.com')

v0.1.3

07 May 14:20
Compare
Choose a tag to compare

Fix example links in readme for non-github sites (pypi, etc)

v0.1.2

07 May 14:07
Compare
Choose a tag to compare

Main functional change is to attempt merging adapter keyword args.

See https://github.com/gulducat/basic-api#overlapping-kwargs

Also remove _prepare method - not really needed, instead just do things in __init__.

v0.1.1

20 Apr 04:01
Compare
Choose a tag to compare

initial pypi release

v0.1.0

20 Apr 03:43
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release

🐣
this does nothing for you.