Releases: alexdlaird/amazon-orders
Releases · alexdlaird/amazon-orders
1.1.2
Added
- Build improvements.
- Documentation improvements.
- Test improvements (Amazon no longer provides the
condition
field in many cases).
Fixed
- Raise
AmazonOrdersNotFoundError
when Order is not found. - Prices with thousands separator now parse properly.
Changed
- AmazonOrder.debug defaults to the value of AmazonSession.debug if an override is not passed.
1.1.1
Added
- Build improvements.
- Test improvements.
Changed
- Renamed
kwarg
passed toIODefault.prompt()
fromcaptcha_img_url
toimg_url
. - Renamed
kwarg
passed toIODefault.prompt()
frommfa_device_select_choices
tochoices
.
1.0.16
Added
constants.BASE_URL
will look for the environment variableAMAZON_BASE_URL
before defaulting to "https://www.amazon.com".- Build and stability improvements.
1.0.15
Added
- Build and style improvements.
- Documentation improvements.
pytest
to streamline running unit and integration tests.
Removed
conf.VERSION
, moved all version information toamazonorders/__init__.py
. Get package version withfrom amazonorders import __version__
instead.
1.0.14
Added
- Build improvements.
Changed
- Renamed
make check-style
tomake check
.
1.0.13
Added
login
command to CLI.- If
--username
or--password
are not given and no stored session, CLI will prompt. - Build improvements.
Fixed
- Issue where
Parsable
objects could not be pickled due to BeautifulSoupTag
objects.
1.0.12
Added
- Relative dependency pinning in
pyproject.toml
. - Style and stability improvements (check
flake8
withmake check-style
).
Removed
requirements.txt
files to streamline in topyproject.toml
.
1.0.11
Changed
version
command now includes Python version and doesn't printer banner, for easy parsing.
1.0.10
Added
- Migrated to
pyproject.toml
.
1.0.9
Added
- AuthForm's now passes
captcha_img_url
to itsprompt()
fallback for Captcha, useful for overriding IODefault. - MfaDeviceSelectForm now passes
mfa_device_select_choices
toprompt()
, useful for overrides IODefault. - Documentation improvements.