Skip to content

Releases: gulducat/basic-api

v0.2.0

Choose a tag to compare

@gulducat gulducat released this 27 May 20:48
871e95e

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

Choose a tag to compare

@gulducat gulducat released this 07 May 14:20

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

v0.1.2

Choose a tag to compare

@gulducat gulducat released this 07 May 14:07

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

Choose a tag to compare

@gulducat gulducat released this 20 Apr 04:01

initial pypi release

v0.1.0

v0.1.0 Pre-release
Pre-release

Choose a tag to compare

@gulducat gulducat released this 20 Apr 03:43

🐣
this does nothing for you.