Releases: micahcochran/scrape-schema-recipe
Releases · micahcochran/scrape-schema-recipe
v0.2.2 - Allow @type to be a list
- fix to allow
@type
to be a List. - add
py.typed
file - minor fixes
all from PR #32
0.2.1 Fixed HTML Character References
- Fix output to remove HTML character references such as
&
and replace with the proper Unicode symbol (so&
) - Improve typing.
- remove keys with empty values (
None
,[]
, or""
) from the outputted recipe.
Changes made in PR #30
v0.2.0 - Custom TypeError
This is from PR #27.
Created custom SSRTypeError
(one item of Issue #26), this is technically an API change. For most it won't matter too much. If you were catching a TypeError
, now catch the custom SSRTypeError
.
For Python 3.6 dataclasses
backport is required for the SSRTypeError and future changes.
For the file test_scraper.py
:
- corrected a few typos
- converted from CRLF (Windows/DOS) to LF (Linux)
- because of those extensive I just went ahead and converted the code using black code formatter.
This is a small step on the road of 1.0.0.
v0.1.5 - fix unset date value bug
- Unset values for date values are removed from the resulting recipe when using
python_using
is set toTrue
. bugfix (PR #24) - Add an example from MedlinePlus
v0.1.4 - Remove validators library
v0.1.3
v0.1.2
- Replaced format() with f-string
- removed support for Python 3.5