Releases: RavenPack/python-api
Releases · RavenPack/python-api
Version 1.0.37
Added
- Creating and saving folders in Text-Analytics
- New
savemethod onFile
Changed
- Renamed filter
filenameparameter tofile_nameinUploadApi.list() - Entity reference is now sorted by
range_start
Fixed
- Better error catching for realtime feed subscriptions
Version 1.0.36
Changed
- Text-Analytics API endpoint updated: folders & richer metadata
- Extended error handling to support Feed disconnection problems
Version 1.0.35
Added
Initial support for the Text-Analytics API endpoints
Version 1.0.34
Added
Retrieve a lazy-loaded dataset when setting one of its paramters.
Version 1.0.33
Changed
- A default timeout of 10" on connection and 60" on silence has been added to all the API calls
- Retrieve or save a flatfile using the new methods
get_flatfileandsave_flatfile.
Seeget_historical_flat_list.pyfor a complete example.
Version 1.0.32
Added
The RPApi instance gets two new methods:
get_document_urlto retrieve the document url from a RP_STORY_IDget_flatfile_listto retrieve the list of the available flatfiles forcompanies
orfull(for all the entities)
Version 1.0.31
Added
- Ad-hoc
api.json()method now supportsconditionsandcustom_fields
Version 1.0.30
Added
- New parameter
common_request_paramsadded to the RT stream requests.
Version 1.0.29
Changed
dataset creation explicit parameters
The Dataset parameters are not explictly passed in the constructor instead of
being hidden in the kwargs.
This allows also to clearly support custom_fields and conditions.
A few new examples have been added or updated:
get historical flat files and
create a dataset with custom_fields and conditions.
Version 1.0.28
Added
New dataset.count method
dataset = api.get_dataset('us30')
data_count = ds.count(
start_date='2018-01-05 18:00:00',
end_date='2018-01-05 18:01:00',
)
# {'count': 11, 'stories': 10, 'entities': 6}