Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Strive Connector Class #757

Draft
wants to merge 35 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
b01ecdd
Initializing Strive class with Shauna
thebbennett Oct 11, 2022
4bde1b8
Cleaned up test for get member
thebbennett Jan 25, 2023
d6fcc3e
adding broadcast message
thebbennett Jan 26, 2023
d6bd0e7
make /members method more robust
thebbennett Apr 16, 2023
4c15a99
cannot pass params to get_members endpoint
thebbennett Apr 16, 2023
8c5b1c4
add init method
thebbennett Apr 20, 2023
844ee51
get requests now accept params
thebbennett Apr 20, 2023
207c862
adding docstrings
thebbennett Apr 20, 2023
5458adf
remove print statement
thebbennett Apr 20, 2023
7892f83
add self
thebbennett Apr 20, 2023
86b4f29
add more self
thebbennett Apr 20, 2023
f410127
working get methods with params
thebbennett Jun 16, 2023
1e1695c
remove type checking and substitue kwargs
thebbennett Jun 19, 2023
3a8b953
add subscription events endpoint
thebbennett Jun 19, 2023
7ac5238
add a few more get requests
thebbennett Jun 19, 2023
5309113
add get members links endpoint
thebbennett Jun 19, 2023
0547906
added groups endpoint
thebbennett Jun 19, 2023
db680b4
add organizations endpoint
thebbennett Jun 19, 2023
60f1a69
add member delete log
thebbennett Jun 19, 2023
8bdbd0e
added call logs endpoint
thebbennett Jun 19, 2023
2d126c1
add member change log endpoint
thebbennett Jun 19, 2023
0d9291b
add enhanced_member_data endpoint
thebbennett Jun 19, 2023
587da89
add flow actions endpoint
thebbennett Jun 19, 2023
9260504
add group members endpoint
thebbennett Jun 19, 2023
d291932
add flow steps endpoint
thebbennett Jun 19, 2023
c83acf6
fix some types
thebbennett Jun 19, 2023
61a10e3
add test file
thebbennett Jun 21, 2023
07b5edd
outlined mock tests
thebbennett Jul 11, 2023
8ed7810
first test
thebbennett Jul 19, 2023
2ea3e01
first test
thebbennett Jul 19, 2023
24e6279
stopping point
thebbennett Jul 21, 2023
8169e87
param test returning empty dictionary
thebbennett Jul 22, 2023
044d839
one set of tests for a function
thebbennett Jul 22, 2023
26d5b19
working post tests
thebbennett Jul 24, 2023
3e841e7
working tests
thebbennett Jul 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions parsons/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
("parsons.sftp.sftp", "SFTP"),
("parsons.shopify.shopify", "Shopify"),
("parsons.sisense.sisense", "Sisense"),
("parsons.strive.strive", "Strive"),
("parsons.targetsmart.targetsmart_api", "TargetSmartAPI"),
("parsons.targetsmart.targetsmart_automation", "TargetSmartAutomation"),
("parsons.turbovote.turbovote", "TurboVote"),
Expand Down
5 changes: 5 additions & 0 deletions parsons/strive/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from parsons.strive.strive import Strive

__all__ = [
'Strive'
]
Loading