Skip to content

Releases: alexdlaird/amazon-orders

1.1.2

19 May 01:26
Compare
Choose a tag to compare

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

1.1.1

10 Apr 03:41
Compare
Choose a tag to compare

Added

  • Build improvements.
  • Test improvements.

Changed

  • Renamed kwarg passed to IODefault.prompt() from captcha_img_url to img_url.
  • Renamed kwarg passed to IODefault.prompt() from mfa_device_select_choices to choices.

1.0.16

24 Mar 13:44
Compare
Choose a tag to compare

Added

  • constants.BASE_URL will look for the environment variable AMAZON_BASE_URL before defaulting to "https://www.amazon.com".
  • Build and stability improvements.

1.0.15

05 Mar 22:32
Compare
Choose a tag to compare

Added

  • Build and style improvements.
  • Documentation improvements.
  • pytest to streamline running unit and integration tests.

Removed

  • conf.VERSION, moved all version information to amazonorders/__init__.py. Get package version with from amazonorders import __version__ instead.

1.0.14

26 Feb 16:13
Compare
Choose a tag to compare

Added

  • Build improvements.

Changed

  • Renamed make check-style to make check.

1.0.13

20 Feb 20:36
Compare
Choose a tag to compare

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 BeautifulSoup Tag objects.

1.0.12

11 Feb 21:49
Compare
Choose a tag to compare

Added

  • Relative dependency pinning in pyproject.toml.
  • Style and stability improvements (check flake8 with make check-style).

Removed

  • requirements.txt files to streamline in to pyproject.toml.

1.0.11

09 Feb 15:59
Compare
Choose a tag to compare

Changed

  • version command now includes Python version and doesn't printer banner, for easy parsing.

1.0.10

08 Feb 22:19
Compare
Choose a tag to compare

Added

  • Migrated to pyproject.toml.

1.0.9

07 Feb 21:55
Compare
Choose a tag to compare

Added

  • AuthForm's now passes captcha_img_url to its prompt() fallback for Captcha, useful for overriding IODefault.
  • MfaDeviceSelectForm now passes mfa_device_select_choices to prompt(), useful for overrides IODefault.
  • Documentation improvements.