Skip to content
This repository has been archived by the owner on Oct 10, 2018. It is now read-only.

Releases: bradleygolden/pytailor

Rename env vars

07 Oct 14:23
8bfb495
Compare
Choose a tag to compare
Rename env vars Pre-release
Pre-release

The user can now rename environment variables within the config class.

i.e.

# echo $APP_DEBUG
# "true"
config.from_envar("APP_DEBUG", rename="DEBUG")
assert config["DEBUG"] == True

Refactor Tailor class

04 Oct 11:34
02c1bc0
Compare
Choose a tag to compare
Refactor Tailor class Pre-release
Pre-release

Refactor the tailor class by removing the local store and utilizing native dict like functionality.

Fix KeyError bug

03 Oct 10:35
2c58060
Compare
Choose a tag to compare
Fix KeyError bug Pre-release
Pre-release

Fixes KeyError bug described in #11.

Fix bugs, add tests

30 Sep 16:23
b0065aa
Compare
Choose a tag to compare
Fix bugs, add tests Pre-release
Pre-release

Fixed some small bugs and added more tests.

First release!

30 Sep 05:15
bfa4471
Compare
Choose a tag to compare
First release! Pre-release
Pre-release

This is the first release of pytailor.