Skip to content

Releases: kaymal/tcmb-py

v0.4.1

30 Apr 23:08
fb20ae1
Compare
Choose a tag to compare

Fix

  • Fix using Union operator for the older versions of Python #14
  • Fix error converting object columns into numeric due to non-standard response. #15

v0.4.0

14 Apr 11:39
72795ec
Compare
Choose a tag to compare

Changed

  • TCMB Web Service will start accepting api-keys only in request headers starting from 26.04.2024. Therefore, removed key parameters from query strings and added api-key to the headers. Note that this change will not affect any user facing functions.

Updated

  • Package data used for wildcarding is updated.

v0.3.0

25 Apr 23:40
8a3bb92
Compare
Choose a tag to compare

Added

  • Add wildcard option when reading a series key. The wildcard characters are represented as an asterisk * or a question mark ?. The asterisk * represents any number of characters, while the question mark ? represents a single character.
  • Add new error types.
  • Add a convenient reader function to be used standalone without the need of creating a Client instance. Example usage:
import tcmb

data = tcmb.read(["...", "..."])

Changed

  • Catch HTTPError instead of the generic Exception. Print more detailed traceback.

v0.2.0

25 Jan 22:31
3eec092
Compare
Choose a tag to compare

Added

  • Add monkeypatch to mock response for tests.

Changed

  • Accept arguments for the parameters start and end in the YYYY-MM-DD format as well as DD-MM-YYYY format.
  • Update method docstrings.

v0.1.0

14 Jan 22:02
Compare
Choose a tag to compare
initial commit