Changelog¶
[0.0.5] - 2021-06-06¶
Added¶
Timerclass for timing a block of codeSphinx based documentation: https://more-ds.readthedocs.io/en/latest/
Changed¶
Imported data structures in their parent package, shortening the required import statements. Eg
from more_ds.network.url import URLnow becomesfrom more_ds.network import URL
[0.0.4] - 2021-05-30¶
Added¶
Added
py.typedto package, so that MyPy can use the type annotations frommore-ds.Included
CHANGELOG.rstinsdistand specifiedproject_urlsinsetup.cfgso that the changelog is visible from pypi.org.
[0.0.3] - 2021-01-22¶
Fixed¶
Allow for repeatedly adding new query parameters (contributed by Jan Murre @jjmurre)
[0.0.1] - 2021-02-11¶
Added¶
Initial version.
Copied
URLclass + tests from https://github.com/workfloworchestrator/nwa-stdlib
Changed¶
Modified example in
URL’s docstring to be in doctest format.