Skip to content

Releases: RavenPack/python-api

Version 1.0.17

09 Jul 14:45

Choose a tag to compare

Fix

Hotfix for missing module in package.

Version 1.0.16

09 Jul 14:45

Choose a tag to compare

Fixed

Hotfix for missing module in package.

Version 1.0.15

09 Jul 14:45

Choose a tag to compare

Added

New get_entity_mapping method to retrieve the entity mapping

Fixed

Fix bug with encoding in Python2

Version 1.0.14

09 Jul 14:45

Choose a tag to compare

Added

Timezone support for datafiles

custom_dataset = Dataset(
    api=api,
    name="Us30 indicators",
    filters=us30.filters,
    fields=new_fields,
    frequency='daily'
)
custom_dataset.save()
print(custom_dataset)
job = custom_dataset.request_datafile(
    start_date='2017-01-01 19:30',
    end_date='2017-01-02 19:30',
    compressed=True,
    time_zone='Europe/London',
)

Version 1.0.13

09 Jul 14:45

Choose a tag to compare

Improved

Better error handling requesting datafiles via ds.request_datafile()

Version 1.0.11

09 Jul 14:45

Choose a tag to compare

Changed

  • Requesting a datafile now raises an APIException when the API returns a
    400 code.
  • Date params on the datafile request can be now both strings and datetime
    objects.

Added

Added helper method time_intervals to split the datafile requests in smaller
intervals.

Version 1.0.9

09 Jul 14:43

Choose a tag to compare

Added

  • New Dataset.save() method to create new datasets.
  • New Job.iterate_results() method to iterate over the rows of the results
    without saving the file.

Version 1.0.8

09 Jul 14:43

Choose a tag to compare

Fixed

Fixed missing dependencies

Version 1.0.7

09 Jul 14:43

Choose a tag to compare

Added

New Dataset.request_realtime method to request data in real-time.
New Result object to map analytic fields

Version 1.0.6

09 Jul 14:43

Choose a tag to compare

Added

Allow dataset requests to be tagged