Releases: RavenPack/python-api
Releases · RavenPack/python-api
Version 1.0.17
Fix
Hotfix for missing module in package.
Version 1.0.16
Fixed
Hotfix for missing module in package.
Version 1.0.15
Added
New get_entity_mapping method to retrieve the entity mapping
Fixed
Fix bug with encoding in Python2
Version 1.0.14
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
Improved
Better error handling requesting datafiles via ds.request_datafile()
Version 1.0.11
Changed
- Requesting a datafile now raises an
APIExceptionwhen the API returns a
400code. - 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
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
Fixed
Fixed missing dependencies
Version 1.0.7
Added
New Dataset.request_realtime method to request data in real-time.
New Result object to map analytic fields
Version 1.0.6
Added
Allow dataset requests to be tagged