This repository was archived by the owner on Jan 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ Package for building and interacting with the Dynata Respondent Exchange (REX)
1111### * __ Opportunity Registry__ *
1212### Instantiate a Registry Client
1313```
14- from dynata_rex import RegistryAPI
15- registry = RegistryAPI ('rex_access_key', 'rex_secret_key', 'registry_base_url ')
14+ from dynata_rex import OpportunityRegistry
15+ registry = OpportunityRegistry ('rex_access_key', 'rex_secret_key')
1616```
1717### List opportunities from the registry
1818```
Original file line number Diff line number Diff line change 1010# Third Party Imports
1111
1212# Local Imports
13- from .opportunity_registry import RegistryAPI
13+ from .opportunity_registry import OpportunityRegistry
1414from .respondent_gateway import RespondentGateway
1515from .exceptions import (
1616 RexClientException ,
2222
2323__all__ = [
2424 'RespondentGateway' ,
25- 'RegistryAPI ' ,
25+ 'OpportunityRegistry ' ,
2626 'RexClientException' ,
2727 'RexServiceException' ,
2828 'InvalidShardException' ,
Original file line number Diff line number Diff line change 1919from .exceptions import InvalidShardException
2020
2121
22- class RegistryAPI :
22+ class OpportunityRegistry :
2323
2424 _BASE_URL = 'https://registry.rex.dynata.com'
2525
You can’t perform that action at this time.
0 commit comments