Coverage for odsclient/__init__.py: 100%

Shortcuts on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

3 statements  

1# Authors: Sylvain MARIE <sylvain.marie@se.com> 

2# + All contributors to <https://github.com/smarie/python-odsclient> 

3# 

4# License: 3-clause BSD, <https://github.com/smarie/python-odsclient/blob/master/LICENSE> 

5from odsclient.core import ODSClient, ODSException, NoODSAPIKeyFoundError, InsufficientRightsForODSResourceError, \ 

6 ENV_ODS_APIKEY, KR_DEFAULT_USERNAME, CacheEntry 

7from odsclient.shortcuts import get_whole_dataset, get_whole_dataframe, store_apikey_in_keyring, \ 

8 get_apikey_from_keyring, remove_apikey_from_keyring, get_apikey, clean_cache, get_cached_dataset_entry 

9 

10__all__ = [ 

11 # submodules 

12 'core', 'shortcuts', 

13 # symbols 

14 'ODSClient', 'ODSException', 'NoODSAPIKeyFoundError', 'InsufficientRightsForODSResourceError', 

15 'ENV_ODS_APIKEY', 'KR_DEFAULT_USERNAME', 

16 'get_whole_dataset', 'get_whole_dataframe', 'store_apikey_in_keyring', 'get_apikey_from_keyring', 

17 'remove_apikey_from_keyring', 'get_apikey', 'clean_cache', 'get_cached_dataset_entry', 'CacheEntry' 

18]