├── .circleci └── config.yml ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── proposed-feature-addition.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── release.yml └── workflows │ ├── coverage.yml │ ├── dependency-review.yml │ ├── python-checks.yml │ ├── release.yml │ └── security_scorecard.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── docs ├── .nojekyll ├── Makefile ├── _static │ ├── favicon.ico │ ├── images │ │ ├── civis_container_script.png │ │ ├── civis_etl_workflow.png │ │ └── civis_mobilize_import.png │ ├── parsons_diagram.png │ └── parsons_logo.png ├── _template.rst ├── _templates │ └── versions.html ├── actblue.rst ├── action_builder.rst ├── action_kit.rst ├── action_network.rst ├── airmeet.rst ├── airtable.rst ├── alchemer.rst ├── auth0.rst ├── aws.rst ├── azure.rst ├── bill_com.rst ├── bloomerang.rst ├── box.rst ├── braintree.rst ├── build_a_connector.rst ├── capitolcanary.rst ├── catalist.rst ├── census.rst ├── census_geocoder.rst ├── civis.rst ├── conf.py ├── contributing.rst ├── controlshift.rst ├── copper.rst ├── crowdtangle.rst ├── databases.rst ├── dbsync.rst ├── donorbox.rst ├── empower.rst ├── facebook_ads.rst ├── formstack.rst ├── freshdesk.rst ├── github.rst ├── google.rst ├── hustle.rst ├── index-redirect.html ├── index.html ├── index.rst ├── mailchimp.rst ├── make.bat ├── mobilecommons.rst ├── mobilize_america.rst ├── nation_builder.rst ├── newmode.rst ├── ngpvan.rst ├── notifications.rst ├── p2a.rst ├── pdi.rst ├── quickbase.rst ├── quickbooks.rst ├── quickstart.csv ├── redash.rst ├── rockthevote.rst ├── salesforce.rst ├── scytl.rst ├── sftp.rst ├── shopify.rst ├── sisense.rst ├── table.rst ├── targetsmart.rst ├── targetsmart_api.rst ├── targetsmart_automation_workflows.rst ├── training_guides │ ├── etl_best_practices.rst │ └── getting_set_up.rst ├── turbovote.rst ├── twilio.rst ├── use_cases │ ├── civis_job_status_slack_alert.rst │ ├── contribute_use_cases.rst │ ├── mysql_to_googlesheets.rst │ └── opt_outs_to_everyaction.rst ├── utilities.rst ├── write_tests.rst └── zoom.rst ├── parsons ├── __init__.py ├── actblue │ ├── __init__.py │ └── actblue.py ├── action_builder │ ├── __init__.py │ └── action_builder.py ├── action_kit │ ├── __init__.py │ └── action_kit.py ├── action_network │ ├── __init__.py │ └── action_network.py ├── airmeet │ ├── __init__.py │ └── airmeet.py ├── airtable │ ├── __init__.py │ └── airtable.py ├── alchemer │ ├── __init__.py │ └── alchemer.py ├── auth0 │ ├── __init__.py │ └── auth0.py ├── aws │ ├── __init__.py │ ├── aws_async.py │ ├── lambda_distribute.py │ └── s3.py ├── azure │ ├── __init__.py │ └── azure_blob_storage.py ├── bill_com │ ├── __init__.py │ └── bill_com.py ├── bloomerang │ ├── __init__.py │ └── bloomerang.py ├── box │ ├── __init__.py │ └── box.py ├── braintree │ ├── __init__.py │ └── braintree.py ├── capitol_canary │ ├── __init__.py │ └── capitol_canary.py ├── catalist │ ├── __init__.py │ └── catalist.py ├── census │ ├── __init__.py │ └── census.py ├── civis │ ├── __init__.py │ └── civisclient.py ├── community │ ├── __init__.py │ └── community.py ├── controlshift │ ├── __init__.py │ └── controlshift.py ├── copper │ ├── __init__.py │ └── copper.py ├── crowdtangle │ ├── __init__.py │ └── crowdtangle.py ├── databases │ ├── __init__.py │ ├── alchemy.py │ ├── database │ │ ├── __init__.py │ │ ├── constants.py │ │ └── database.py │ ├── database_connector.py │ ├── db_sync.py │ ├── discover_database.py │ ├── mysql │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── create_table.py │ │ └── mysql.py │ ├── postgres │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── postgres.py │ │ ├── postgres_core.py │ │ └── postgres_create_statement.py │ ├── redshift │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── queries │ │ │ ├── v_generate_tbl_ddl.sql │ │ │ └── v_generate_view_ddl.sql │ │ ├── redshift.py │ │ ├── rs_copy_table.py │ │ ├── rs_create_table.py │ │ ├── rs_schema.py │ │ └── rs_table_utilities.py │ ├── sqlite │ │ ├── __init__.py │ │ └── sqlite.py │ └── table.py ├── donorbox │ ├── __init__.py │ └── donorbox.py ├── empower │ ├── __init__.py │ └── empower.py ├── etl │ ├── __init__.py │ ├── etl.py │ ├── table.py │ └── tofrom.py ├── facebook_ads │ ├── __init__.py │ └── facebook_ads.py ├── formstack │ ├── __init__.py │ └── formstack.py ├── freshdesk │ ├── __init__.py │ └── freshdesk.py ├── geocode │ ├── __init__.py │ └── census_geocoder.py ├── github │ ├── __init__.py │ └── github.py ├── google │ ├── __init__.py │ ├── google_admin.py │ ├── google_bigquery.py │ ├── google_civic.py │ ├── google_cloud_storage.py │ ├── google_drive.py │ ├── google_sheets.py │ └── utilities.py ├── hustle │ ├── __init__.py │ ├── column_map.py │ └── hustle.py ├── mailchimp │ ├── __init__.py │ └── mailchimp.py ├── mobilecommons │ ├── __init__.py │ └── mobilecommons.py ├── mobilize_america │ ├── __init__.py │ └── ma.py ├── nation_builder │ ├── __init__.py │ └── nation_builder.py ├── newmode │ ├── __init__.py │ └── newmode.py ├── ngpvan │ ├── __init__.py │ ├── activist_codes.py │ ├── bulk_import.py │ ├── canvass_responses.py │ ├── changed_entities.py │ ├── codes.py │ ├── contact_notes.py │ ├── custom_fields.py │ ├── email.py │ ├── events.py │ ├── introspection.py │ ├── locations.py │ ├── people.py │ ├── printed_lists.py │ ├── saved_lists.py │ ├── scores.py │ ├── signups.py │ ├── supporter_groups.py │ ├── survey_questions.py │ ├── targets.py │ ├── utilities.py │ ├── van.py │ └── van_connector.py ├── notifications │ ├── __init__.py │ ├── gmail.py │ ├── sendmail.py │ ├── slack.py │ └── smtp.py ├── pdi │ ├── __init__.py │ ├── acquisition_types.py │ ├── activities.py │ ├── contacts.py │ ├── events.py │ ├── flag_ids.py │ ├── flags.py │ ├── locations.py │ ├── pdi.py │ ├── questions.py │ └── universes.py ├── phone2action │ ├── __init__.py │ └── p2a.py ├── quickbase │ ├── __init__.py │ └── quickbase.py ├── quickbooks │ ├── __init__.py │ └── quickbookstime.py ├── redash │ ├── __init__.py │ └── redash.py ├── rockthevote │ ├── __init__.py │ └── rtv.py ├── salesforce │ ├── __init__.py │ └── salesforce.py ├── scytl │ ├── __init__.py │ └── scytl.py ├── sftp │ ├── __init__.py │ ├── sftp.py │ └── utilities.py ├── shopify │ ├── __init__.py │ └── shopify.py ├── sisense │ ├── __init__.py │ └── sisense.py ├── targetsmart │ ├── __init__.py │ ├── targetsmart_api.py │ ├── targetsmart_automation.py │ └── targetsmart_smartmatch.py ├── tools │ ├── __init__.py │ └── credential_tools.py ├── turbovote │ ├── __init__.py │ └── turbovote.py ├── twilio │ ├── __init__.py │ └── twilio.py ├── utilities │ ├── __init__.py │ ├── api_connector.py │ ├── check_env.py │ ├── cloud_storage.py │ ├── datetime.py │ ├── dbt.py │ ├── dbt │ │ ├── __init__.py │ │ ├── dbt.py │ │ ├── logging.py │ │ └── models.py │ ├── files.py │ ├── format_phone_number.py │ ├── json_format.py │ ├── oauth_api_connector.py │ ├── sql_helpers.py │ ├── ssh_utilities.py │ └── zip_archive.py └── zoom │ ├── __init__.py │ └── zoom.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── setup.py ├── test ├── __init__.py ├── data │ ├── test-simple-table.csv │ └── test-simple-table.csv.gz ├── fixtures.py ├── responses │ └── ts_responses.py ├── test_actblue │ ├── test_actblue.py │ ├── test_columns_data.py │ └── test_csv_data.csv ├── test_action_builder │ └── test_action_builder.py ├── test_action_kit.py ├── test_action_network │ └── test_action_network.py ├── test_airmeet.py ├── test_airtable │ ├── airtable_responses.py │ └── test_airtable.py ├── test_alchemer │ ├── test_getresponses.py │ └── test_getsurveys.py ├── test_auth0.py ├── test_aws_async.py ├── test_azure │ └── test_azure_blob_storage.py ├── test_bill_com │ └── test_bill_com.py ├── test_bloomerang │ ├── __init__.py │ ├── test_bloomerang.py │ └── test_data.py ├── test_box │ └── test_box_storage.py ├── test_braintree │ ├── __init__.py │ ├── test_braintree.py │ └── test_data │ │ ├── dispute_example.xml │ │ ├── subscription_example.xml │ │ └── transaction_example.xml ├── test_capitol_canary.py ├── test_catalist │ ├── conftest.py │ └── test_catalist.py ├── test_census │ └── test_census.py ├── test_civis.py ├── test_community │ └── test_community.py ├── test_controlshift │ ├── test_controlshift.py │ └── test_cs_data.py ├── test_copper │ ├── activities_search.json │ ├── activity_types_list.json │ ├── companies_search.json │ ├── companies_search.txt │ ├── contact_types_list.json │ ├── custom_fields_search.json │ ├── opportunities_search.json │ ├── people_search.txt │ └── test_copper.py ├── test_credential_tools.py ├── test_crowdtangle │ ├── leaderboard.py │ ├── link_post.py │ ├── post.py │ └── test_crowdtangle.py ├── test_databases │ ├── __init__.py │ ├── fakes.py │ ├── test_bigquery.py │ ├── test_data │ │ ├── sample_table_1.csv │ │ └── sample_table_2.csv │ ├── test_database.py │ ├── test_dbsync.py │ ├── test_discover_database.py │ ├── test_mysql.py │ ├── test_postgres.py │ ├── test_redshift.py │ └── test_sqlite.py ├── test_donorbox │ ├── donorbox_test_data.py │ └── test_donorbox.py ├── test_empower │ ├── dummy_empower_data.py │ └── test_empower.py ├── test_etl.py ├── test_facebook_ads.py ├── test_formstack │ ├── __init__.py │ ├── formstack_json.py │ └── test_formstack.py ├── test_freshdesk │ ├── __init__.py │ ├── expected_json.py │ └── test_freshdesk.py ├── test_geocoder │ ├── test_census_geocoder.py │ └── test_responses.py ├── test_github │ ├── __init__.py │ ├── test_data │ │ ├── test_download_file.csv │ │ ├── test_get_repo.json │ │ └── test_list_repo_issues.json │ └── test_github.py ├── test_gmail │ ├── __init__.py │ ├── assets │ │ ├── loremipsum.jpeg │ │ ├── loremipsum.m4a │ │ ├── loremipsum.mp3 │ │ ├── loremipsum.mp4 │ │ ├── loremipsum.pdf │ │ ├── loremipsum.txt │ │ ├── loremipsum_b64_jpeg.txt │ │ ├── loremipsum_b64_m4a.txt │ │ ├── loremipsum_b64_mp3.txt │ │ ├── loremipsum_b64_mp4.txt │ │ ├── loremipsum_b64_pdf.txt │ │ ├── loremipsum_b64_txt.txt │ │ └── loremipsum_b64_win_txt.txt │ └── test_gmail.py ├── test_google │ ├── googlecivic_responses.py │ ├── test_google_admin.py │ ├── test_google_cloud_storage.py │ ├── test_google_drive.py │ ├── test_google_sheets.py │ ├── test_googlecivic.py │ └── test_utilities.py ├── test_hustle │ ├── expected_json.py │ └── test_hustle.py ├── test_mailchimp │ ├── __init__.py │ ├── expected_json.py │ └── test_mailchimp.py ├── test_mobilecommons │ ├── mobilecommons_responses.py │ └── test_mobilecommons.py ├── test_mobilize │ ├── __init__.py │ ├── test_mobilize_america.py │ └── test_mobilize_json.py ├── test_nation_builder │ ├── __init__.py │ ├── fixtures.py │ └── test_nation_builder.py ├── test_newmode │ ├── __init__.py │ ├── test_newmode.py │ └── test_newmode_data.py ├── test_p2a.py ├── test_pdi │ ├── __init__.py │ ├── conftest.py │ ├── test_acquisitiontypes.py │ ├── test_events.py │ ├── test_flag_ids.py │ ├── test_flags.py │ ├── test_pdi.py │ ├── test_questions.py │ └── test_universes.py ├── test_quickbase │ ├── test_data.py │ └── test_quickbase.py ├── test_quickbooks │ ├── test_quickbookstime.py │ └── test_quickbookstime_data.py ├── test_redash.py ├── test_rockthevote │ ├── sample.csv │ ├── sample.json │ └── test_rtv.py ├── test_s3.py ├── test_salesforce │ └── test_salesforce.py ├── test_scytl │ ├── 114729_county_expected.csv │ ├── 114729_detailxml.zip │ ├── 114729_precinct_expected.csv │ ├── 114729_summary.zip │ ├── 114729_summary_expected.csv │ ├── GA_114729_296262_county_election_settings.json │ ├── mock_responses │ │ ├── GA_Barrow_114737_295501_reports_detailxml.zip │ │ └── GA_Clarke_114759_295888_reports_detailxml.zip │ └── test_scytl.py ├── test_sendmail.py ├── test_sftp.py ├── test_sftp_ssh.py ├── test_shopify.py ├── test_sisense │ ├── __init__.py │ ├── test_data.py │ └── test_sisense.py ├── test_slack │ ├── __init__.py │ ├── responses │ │ ├── channels.json │ │ ├── file_upload.json │ │ ├── message_channel.json │ │ └── users.json │ └── test_slack.py ├── test_smtp.py ├── test_targetsmart │ ├── __init__.py │ ├── job_config.xml │ ├── match_bad.xml │ ├── match_good.xml │ ├── test_targetsmart_api.py │ ├── test_targetsmart_automation.py │ └── test_targetsmart_smartmatch.py ├── test_turbovote │ ├── test_turbovote.py │ └── users.txt ├── test_twilio │ └── test_twilio.py ├── test_utilities.py ├── test_utilities │ ├── test_format_phone_number.py │ └── test_ssh_utilities.py ├── test_van │ ├── __init__.py │ ├── responses_people.py │ ├── responses_printed_lists.py │ ├── test_activist_codes.py │ ├── test_bulkimport.py │ ├── test_changed_entities.py │ ├── test_codes.py │ ├── test_contact_notes.py │ ├── test_custom_fields.py │ ├── test_email.py │ ├── test_events.py │ ├── test_introspection.py │ ├── test_locations.py │ ├── test_ngpvan.py │ ├── test_people.py │ ├── test_printed_lists.py │ ├── test_saved_lists.py │ ├── test_scores.py │ ├── test_signups.py │ └── test_targets.py ├── test_zoom.py └── utils.py └── useful_resources ├── README.md ├── computer_setup ├── README.md ├── python3_setup.md └── terminal_app_setup.md ├── sample_code ├── README.md ├── actblue_to_google_sheets.py ├── apply_activist_code.py ├── civis_job_status_slack_alert.py ├── mysql_to_googlesheets.py ├── ngpvan_sample_list.py ├── ngpvan_sample_printed_list.py ├── opt_outs_everyaction.py ├── s3_to_redshift.py ├── s3_to_s3.py ├── template_script.py ├── update_user_in_actionkit.py └── zoom_to_van.py └── tools ├── README.md ├── using_bash.md └── using_git.md /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/proposed-feature-addition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.github/ISSUE_TEMPLATE/proposed-feature-addition.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/python-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.github/workflows/python-checks.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/security_scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.github/workflows/security_scorecard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/images/civis_container_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/_static/images/civis_container_script.png -------------------------------------------------------------------------------- /docs/_static/images/civis_etl_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/_static/images/civis_etl_workflow.png -------------------------------------------------------------------------------- /docs/_static/images/civis_mobilize_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/_static/images/civis_mobilize_import.png -------------------------------------------------------------------------------- /docs/_static/parsons_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/_static/parsons_diagram.png -------------------------------------------------------------------------------- /docs/_static/parsons_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/_static/parsons_logo.png -------------------------------------------------------------------------------- /docs/_template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/_template.rst -------------------------------------------------------------------------------- /docs/_templates/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/_templates/versions.html -------------------------------------------------------------------------------- /docs/actblue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/actblue.rst -------------------------------------------------------------------------------- /docs/action_builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/action_builder.rst -------------------------------------------------------------------------------- /docs/action_kit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/action_kit.rst -------------------------------------------------------------------------------- /docs/action_network.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/action_network.rst -------------------------------------------------------------------------------- /docs/airmeet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/airmeet.rst -------------------------------------------------------------------------------- /docs/airtable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/airtable.rst -------------------------------------------------------------------------------- /docs/alchemer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/alchemer.rst -------------------------------------------------------------------------------- /docs/auth0.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/auth0.rst -------------------------------------------------------------------------------- /docs/aws.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/aws.rst -------------------------------------------------------------------------------- /docs/azure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/azure.rst -------------------------------------------------------------------------------- /docs/bill_com.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/bill_com.rst -------------------------------------------------------------------------------- /docs/bloomerang.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/bloomerang.rst -------------------------------------------------------------------------------- /docs/box.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/box.rst -------------------------------------------------------------------------------- /docs/braintree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/braintree.rst -------------------------------------------------------------------------------- /docs/build_a_connector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/build_a_connector.rst -------------------------------------------------------------------------------- /docs/capitolcanary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/capitolcanary.rst -------------------------------------------------------------------------------- /docs/catalist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/catalist.rst -------------------------------------------------------------------------------- /docs/census.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/census.rst -------------------------------------------------------------------------------- /docs/census_geocoder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/census_geocoder.rst -------------------------------------------------------------------------------- /docs/civis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/civis.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/controlshift.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/controlshift.rst -------------------------------------------------------------------------------- /docs/copper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/copper.rst -------------------------------------------------------------------------------- /docs/crowdtangle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/crowdtangle.rst -------------------------------------------------------------------------------- /docs/databases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/databases.rst -------------------------------------------------------------------------------- /docs/dbsync.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/dbsync.rst -------------------------------------------------------------------------------- /docs/donorbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/donorbox.rst -------------------------------------------------------------------------------- /docs/empower.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/empower.rst -------------------------------------------------------------------------------- /docs/facebook_ads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/facebook_ads.rst -------------------------------------------------------------------------------- /docs/formstack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/formstack.rst -------------------------------------------------------------------------------- /docs/freshdesk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/freshdesk.rst -------------------------------------------------------------------------------- /docs/github.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/github.rst -------------------------------------------------------------------------------- /docs/google.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/google.rst -------------------------------------------------------------------------------- /docs/hustle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/hustle.rst -------------------------------------------------------------------------------- /docs/index-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/index-redirect.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/mailchimp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/mailchimp.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/mobilecommons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/mobilecommons.rst -------------------------------------------------------------------------------- /docs/mobilize_america.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/mobilize_america.rst -------------------------------------------------------------------------------- /docs/nation_builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/nation_builder.rst -------------------------------------------------------------------------------- /docs/newmode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/newmode.rst -------------------------------------------------------------------------------- /docs/ngpvan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/ngpvan.rst -------------------------------------------------------------------------------- /docs/notifications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/notifications.rst -------------------------------------------------------------------------------- /docs/p2a.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/p2a.rst -------------------------------------------------------------------------------- /docs/pdi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/pdi.rst -------------------------------------------------------------------------------- /docs/quickbase.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/quickbase.rst -------------------------------------------------------------------------------- /docs/quickbooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/quickbooks.rst -------------------------------------------------------------------------------- /docs/quickstart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/quickstart.csv -------------------------------------------------------------------------------- /docs/redash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/redash.rst -------------------------------------------------------------------------------- /docs/rockthevote.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/rockthevote.rst -------------------------------------------------------------------------------- /docs/salesforce.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/salesforce.rst -------------------------------------------------------------------------------- /docs/scytl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/scytl.rst -------------------------------------------------------------------------------- /docs/sftp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/sftp.rst -------------------------------------------------------------------------------- /docs/shopify.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/shopify.rst -------------------------------------------------------------------------------- /docs/sisense.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/sisense.rst -------------------------------------------------------------------------------- /docs/table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/table.rst -------------------------------------------------------------------------------- /docs/targetsmart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/targetsmart.rst -------------------------------------------------------------------------------- /docs/targetsmart_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/targetsmart_api.rst -------------------------------------------------------------------------------- /docs/targetsmart_automation_workflows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/targetsmart_automation_workflows.rst -------------------------------------------------------------------------------- /docs/training_guides/etl_best_practices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/training_guides/etl_best_practices.rst -------------------------------------------------------------------------------- /docs/training_guides/getting_set_up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/training_guides/getting_set_up.rst -------------------------------------------------------------------------------- /docs/turbovote.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/turbovote.rst -------------------------------------------------------------------------------- /docs/twilio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/twilio.rst -------------------------------------------------------------------------------- /docs/use_cases/civis_job_status_slack_alert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/use_cases/civis_job_status_slack_alert.rst -------------------------------------------------------------------------------- /docs/use_cases/contribute_use_cases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/use_cases/contribute_use_cases.rst -------------------------------------------------------------------------------- /docs/use_cases/mysql_to_googlesheets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/use_cases/mysql_to_googlesheets.rst -------------------------------------------------------------------------------- /docs/use_cases/opt_outs_to_everyaction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/use_cases/opt_outs_to_everyaction.rst -------------------------------------------------------------------------------- /docs/utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/utilities.rst -------------------------------------------------------------------------------- /docs/write_tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/write_tests.rst -------------------------------------------------------------------------------- /docs/zoom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/docs/zoom.rst -------------------------------------------------------------------------------- /parsons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/__init__.py -------------------------------------------------------------------------------- /parsons/actblue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/actblue/__init__.py -------------------------------------------------------------------------------- /parsons/actblue/actblue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/actblue/actblue.py -------------------------------------------------------------------------------- /parsons/action_builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/action_builder/__init__.py -------------------------------------------------------------------------------- /parsons/action_builder/action_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/action_builder/action_builder.py -------------------------------------------------------------------------------- /parsons/action_kit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/action_kit/__init__.py -------------------------------------------------------------------------------- /parsons/action_kit/action_kit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/action_kit/action_kit.py -------------------------------------------------------------------------------- /parsons/action_network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/action_network/__init__.py -------------------------------------------------------------------------------- /parsons/action_network/action_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/action_network/action_network.py -------------------------------------------------------------------------------- /parsons/airmeet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/airmeet/__init__.py -------------------------------------------------------------------------------- /parsons/airmeet/airmeet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/airmeet/airmeet.py -------------------------------------------------------------------------------- /parsons/airtable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/airtable/__init__.py -------------------------------------------------------------------------------- /parsons/airtable/airtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/airtable/airtable.py -------------------------------------------------------------------------------- /parsons/alchemer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/alchemer/__init__.py -------------------------------------------------------------------------------- /parsons/alchemer/alchemer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/alchemer/alchemer.py -------------------------------------------------------------------------------- /parsons/auth0/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/auth0/__init__.py -------------------------------------------------------------------------------- /parsons/auth0/auth0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/auth0/auth0.py -------------------------------------------------------------------------------- /parsons/aws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/aws/__init__.py -------------------------------------------------------------------------------- /parsons/aws/aws_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/aws/aws_async.py -------------------------------------------------------------------------------- /parsons/aws/lambda_distribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/aws/lambda_distribute.py -------------------------------------------------------------------------------- /parsons/aws/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/aws/s3.py -------------------------------------------------------------------------------- /parsons/azure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/azure/__init__.py -------------------------------------------------------------------------------- /parsons/azure/azure_blob_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/azure/azure_blob_storage.py -------------------------------------------------------------------------------- /parsons/bill_com/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/bill_com/__init__.py -------------------------------------------------------------------------------- /parsons/bill_com/bill_com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/bill_com/bill_com.py -------------------------------------------------------------------------------- /parsons/bloomerang/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/bloomerang/__init__.py -------------------------------------------------------------------------------- /parsons/bloomerang/bloomerang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/bloomerang/bloomerang.py -------------------------------------------------------------------------------- /parsons/box/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/box/__init__.py -------------------------------------------------------------------------------- /parsons/box/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/box/box.py -------------------------------------------------------------------------------- /parsons/braintree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/braintree/__init__.py -------------------------------------------------------------------------------- /parsons/braintree/braintree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/braintree/braintree.py -------------------------------------------------------------------------------- /parsons/capitol_canary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/capitol_canary/__init__.py -------------------------------------------------------------------------------- /parsons/capitol_canary/capitol_canary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/capitol_canary/capitol_canary.py -------------------------------------------------------------------------------- /parsons/catalist/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/catalist/__init__.py -------------------------------------------------------------------------------- /parsons/catalist/catalist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/catalist/catalist.py -------------------------------------------------------------------------------- /parsons/census/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parsons/census/census.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/census/census.py -------------------------------------------------------------------------------- /parsons/civis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/civis/__init__.py -------------------------------------------------------------------------------- /parsons/civis/civisclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/civis/civisclient.py -------------------------------------------------------------------------------- /parsons/community/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/community/__init__.py -------------------------------------------------------------------------------- /parsons/community/community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/community/community.py -------------------------------------------------------------------------------- /parsons/controlshift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/controlshift/__init__.py -------------------------------------------------------------------------------- /parsons/controlshift/controlshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/controlshift/controlshift.py -------------------------------------------------------------------------------- /parsons/copper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/copper/__init__.py -------------------------------------------------------------------------------- /parsons/copper/copper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/copper/copper.py -------------------------------------------------------------------------------- /parsons/crowdtangle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/crowdtangle/__init__.py -------------------------------------------------------------------------------- /parsons/crowdtangle/crowdtangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/crowdtangle/crowdtangle.py -------------------------------------------------------------------------------- /parsons/databases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parsons/databases/alchemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/alchemy.py -------------------------------------------------------------------------------- /parsons/databases/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/database/__init__.py -------------------------------------------------------------------------------- /parsons/databases/database/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/database/constants.py -------------------------------------------------------------------------------- /parsons/databases/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/database/database.py -------------------------------------------------------------------------------- /parsons/databases/database_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/database_connector.py -------------------------------------------------------------------------------- /parsons/databases/db_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/db_sync.py -------------------------------------------------------------------------------- /parsons/databases/discover_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/discover_database.py -------------------------------------------------------------------------------- /parsons/databases/mysql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/mysql/__init__.py -------------------------------------------------------------------------------- /parsons/databases/mysql/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/mysql/constants.py -------------------------------------------------------------------------------- /parsons/databases/mysql/create_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/mysql/create_table.py -------------------------------------------------------------------------------- /parsons/databases/mysql/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/mysql/mysql.py -------------------------------------------------------------------------------- /parsons/databases/postgres/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/postgres/__init__.py -------------------------------------------------------------------------------- /parsons/databases/postgres/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/postgres/constants.py -------------------------------------------------------------------------------- /parsons/databases/postgres/postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/postgres/postgres.py -------------------------------------------------------------------------------- /parsons/databases/postgres/postgres_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/postgres/postgres_core.py -------------------------------------------------------------------------------- /parsons/databases/postgres/postgres_create_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/postgres/postgres_create_statement.py -------------------------------------------------------------------------------- /parsons/databases/redshift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/redshift/__init__.py -------------------------------------------------------------------------------- /parsons/databases/redshift/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/redshift/constants.py -------------------------------------------------------------------------------- /parsons/databases/redshift/queries/v_generate_tbl_ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/redshift/queries/v_generate_tbl_ddl.sql -------------------------------------------------------------------------------- /parsons/databases/redshift/queries/v_generate_view_ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/redshift/queries/v_generate_view_ddl.sql -------------------------------------------------------------------------------- /parsons/databases/redshift/redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/redshift/redshift.py -------------------------------------------------------------------------------- /parsons/databases/redshift/rs_copy_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/redshift/rs_copy_table.py -------------------------------------------------------------------------------- /parsons/databases/redshift/rs_create_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/redshift/rs_create_table.py -------------------------------------------------------------------------------- /parsons/databases/redshift/rs_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/redshift/rs_schema.py -------------------------------------------------------------------------------- /parsons/databases/redshift/rs_table_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/redshift/rs_table_utilities.py -------------------------------------------------------------------------------- /parsons/databases/sqlite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/sqlite/__init__.py -------------------------------------------------------------------------------- /parsons/databases/sqlite/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/sqlite/sqlite.py -------------------------------------------------------------------------------- /parsons/databases/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/databases/table.py -------------------------------------------------------------------------------- /parsons/donorbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parsons/donorbox/donorbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/donorbox/donorbox.py -------------------------------------------------------------------------------- /parsons/empower/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/empower/__init__.py -------------------------------------------------------------------------------- /parsons/empower/empower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/empower/empower.py -------------------------------------------------------------------------------- /parsons/etl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/etl/__init__.py -------------------------------------------------------------------------------- /parsons/etl/etl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/etl/etl.py -------------------------------------------------------------------------------- /parsons/etl/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/etl/table.py -------------------------------------------------------------------------------- /parsons/etl/tofrom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/etl/tofrom.py -------------------------------------------------------------------------------- /parsons/facebook_ads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/facebook_ads/__init__.py -------------------------------------------------------------------------------- /parsons/facebook_ads/facebook_ads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/facebook_ads/facebook_ads.py -------------------------------------------------------------------------------- /parsons/formstack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/formstack/__init__.py -------------------------------------------------------------------------------- /parsons/formstack/formstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/formstack/formstack.py -------------------------------------------------------------------------------- /parsons/freshdesk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/freshdesk/__init__.py -------------------------------------------------------------------------------- /parsons/freshdesk/freshdesk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/freshdesk/freshdesk.py -------------------------------------------------------------------------------- /parsons/geocode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/geocode/__init__.py -------------------------------------------------------------------------------- /parsons/geocode/census_geocoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/geocode/census_geocoder.py -------------------------------------------------------------------------------- /parsons/github/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/github/__init__.py -------------------------------------------------------------------------------- /parsons/github/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/github/github.py -------------------------------------------------------------------------------- /parsons/google/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parsons/google/google_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/google/google_admin.py -------------------------------------------------------------------------------- /parsons/google/google_bigquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/google/google_bigquery.py -------------------------------------------------------------------------------- /parsons/google/google_civic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/google/google_civic.py -------------------------------------------------------------------------------- /parsons/google/google_cloud_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/google/google_cloud_storage.py -------------------------------------------------------------------------------- /parsons/google/google_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/google/google_drive.py -------------------------------------------------------------------------------- /parsons/google/google_sheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/google/google_sheets.py -------------------------------------------------------------------------------- /parsons/google/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/google/utilities.py -------------------------------------------------------------------------------- /parsons/hustle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/hustle/__init__.py -------------------------------------------------------------------------------- /parsons/hustle/column_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/hustle/column_map.py -------------------------------------------------------------------------------- /parsons/hustle/hustle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/hustle/hustle.py -------------------------------------------------------------------------------- /parsons/mailchimp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/mailchimp/__init__.py -------------------------------------------------------------------------------- /parsons/mailchimp/mailchimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/mailchimp/mailchimp.py -------------------------------------------------------------------------------- /parsons/mobilecommons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/mobilecommons/__init__.py -------------------------------------------------------------------------------- /parsons/mobilecommons/mobilecommons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/mobilecommons/mobilecommons.py -------------------------------------------------------------------------------- /parsons/mobilize_america/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/mobilize_america/__init__.py -------------------------------------------------------------------------------- /parsons/mobilize_america/ma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/mobilize_america/ma.py -------------------------------------------------------------------------------- /parsons/nation_builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/nation_builder/__init__.py -------------------------------------------------------------------------------- /parsons/nation_builder/nation_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/nation_builder/nation_builder.py -------------------------------------------------------------------------------- /parsons/newmode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/newmode/__init__.py -------------------------------------------------------------------------------- /parsons/newmode/newmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/newmode/newmode.py -------------------------------------------------------------------------------- /parsons/ngpvan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/__init__.py -------------------------------------------------------------------------------- /parsons/ngpvan/activist_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/activist_codes.py -------------------------------------------------------------------------------- /parsons/ngpvan/bulk_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/bulk_import.py -------------------------------------------------------------------------------- /parsons/ngpvan/canvass_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/canvass_responses.py -------------------------------------------------------------------------------- /parsons/ngpvan/changed_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/changed_entities.py -------------------------------------------------------------------------------- /parsons/ngpvan/codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/codes.py -------------------------------------------------------------------------------- /parsons/ngpvan/contact_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/contact_notes.py -------------------------------------------------------------------------------- /parsons/ngpvan/custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/custom_fields.py -------------------------------------------------------------------------------- /parsons/ngpvan/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/email.py -------------------------------------------------------------------------------- /parsons/ngpvan/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/events.py -------------------------------------------------------------------------------- /parsons/ngpvan/introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/introspection.py -------------------------------------------------------------------------------- /parsons/ngpvan/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/locations.py -------------------------------------------------------------------------------- /parsons/ngpvan/people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/people.py -------------------------------------------------------------------------------- /parsons/ngpvan/printed_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/printed_lists.py -------------------------------------------------------------------------------- /parsons/ngpvan/saved_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/saved_lists.py -------------------------------------------------------------------------------- /parsons/ngpvan/scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/scores.py -------------------------------------------------------------------------------- /parsons/ngpvan/signups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/signups.py -------------------------------------------------------------------------------- /parsons/ngpvan/supporter_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/supporter_groups.py -------------------------------------------------------------------------------- /parsons/ngpvan/survey_questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/survey_questions.py -------------------------------------------------------------------------------- /parsons/ngpvan/targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/targets.py -------------------------------------------------------------------------------- /parsons/ngpvan/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/utilities.py -------------------------------------------------------------------------------- /parsons/ngpvan/van.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/van.py -------------------------------------------------------------------------------- /parsons/ngpvan/van_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/ngpvan/van_connector.py -------------------------------------------------------------------------------- /parsons/notifications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parsons/notifications/gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/notifications/gmail.py -------------------------------------------------------------------------------- /parsons/notifications/sendmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/notifications/sendmail.py -------------------------------------------------------------------------------- /parsons/notifications/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/notifications/slack.py -------------------------------------------------------------------------------- /parsons/notifications/smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/notifications/smtp.py -------------------------------------------------------------------------------- /parsons/pdi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/pdi/__init__.py -------------------------------------------------------------------------------- /parsons/pdi/acquisition_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/pdi/acquisition_types.py -------------------------------------------------------------------------------- /parsons/pdi/activities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/pdi/activities.py -------------------------------------------------------------------------------- /parsons/pdi/contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/pdi/contacts.py -------------------------------------------------------------------------------- /parsons/pdi/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/pdi/events.py -------------------------------------------------------------------------------- /parsons/pdi/flag_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/pdi/flag_ids.py -------------------------------------------------------------------------------- /parsons/pdi/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/pdi/flags.py -------------------------------------------------------------------------------- /parsons/pdi/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/pdi/locations.py -------------------------------------------------------------------------------- /parsons/pdi/pdi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/pdi/pdi.py -------------------------------------------------------------------------------- /parsons/pdi/questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/pdi/questions.py -------------------------------------------------------------------------------- /parsons/pdi/universes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/pdi/universes.py -------------------------------------------------------------------------------- /parsons/phone2action/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/phone2action/__init__.py -------------------------------------------------------------------------------- /parsons/phone2action/p2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/phone2action/p2a.py -------------------------------------------------------------------------------- /parsons/quickbase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/quickbase/__init__.py -------------------------------------------------------------------------------- /parsons/quickbase/quickbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/quickbase/quickbase.py -------------------------------------------------------------------------------- /parsons/quickbooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/quickbooks/__init__.py -------------------------------------------------------------------------------- /parsons/quickbooks/quickbookstime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/quickbooks/quickbookstime.py -------------------------------------------------------------------------------- /parsons/redash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/redash/__init__.py -------------------------------------------------------------------------------- /parsons/redash/redash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/redash/redash.py -------------------------------------------------------------------------------- /parsons/rockthevote/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parsons/rockthevote/rtv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/rockthevote/rtv.py -------------------------------------------------------------------------------- /parsons/salesforce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/salesforce/__init__.py -------------------------------------------------------------------------------- /parsons/salesforce/salesforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/salesforce/salesforce.py -------------------------------------------------------------------------------- /parsons/scytl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/scytl/__init__.py -------------------------------------------------------------------------------- /parsons/scytl/scytl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/scytl/scytl.py -------------------------------------------------------------------------------- /parsons/sftp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/sftp/__init__.py -------------------------------------------------------------------------------- /parsons/sftp/sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/sftp/sftp.py -------------------------------------------------------------------------------- /parsons/sftp/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/sftp/utilities.py -------------------------------------------------------------------------------- /parsons/shopify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/shopify/__init__.py -------------------------------------------------------------------------------- /parsons/shopify/shopify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/shopify/shopify.py -------------------------------------------------------------------------------- /parsons/sisense/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/sisense/__init__.py -------------------------------------------------------------------------------- /parsons/sisense/sisense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/sisense/sisense.py -------------------------------------------------------------------------------- /parsons/targetsmart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/targetsmart/__init__.py -------------------------------------------------------------------------------- /parsons/targetsmart/targetsmart_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/targetsmart/targetsmart_api.py -------------------------------------------------------------------------------- /parsons/targetsmart/targetsmart_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/targetsmart/targetsmart_automation.py -------------------------------------------------------------------------------- /parsons/targetsmart/targetsmart_smartmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/targetsmart/targetsmart_smartmatch.py -------------------------------------------------------------------------------- /parsons/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parsons/tools/credential_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/tools/credential_tools.py -------------------------------------------------------------------------------- /parsons/turbovote/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/turbovote/__init__.py -------------------------------------------------------------------------------- /parsons/turbovote/turbovote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/turbovote/turbovote.py -------------------------------------------------------------------------------- /parsons/twilio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/twilio/__init__.py -------------------------------------------------------------------------------- /parsons/twilio/twilio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/twilio/twilio.py -------------------------------------------------------------------------------- /parsons/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parsons/utilities/api_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/api_connector.py -------------------------------------------------------------------------------- /parsons/utilities/check_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/check_env.py -------------------------------------------------------------------------------- /parsons/utilities/cloud_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/cloud_storage.py -------------------------------------------------------------------------------- /parsons/utilities/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/datetime.py -------------------------------------------------------------------------------- /parsons/utilities/dbt.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parsons/utilities/dbt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/dbt/__init__.py -------------------------------------------------------------------------------- /parsons/utilities/dbt/dbt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/dbt/dbt.py -------------------------------------------------------------------------------- /parsons/utilities/dbt/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/dbt/logging.py -------------------------------------------------------------------------------- /parsons/utilities/dbt/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/dbt/models.py -------------------------------------------------------------------------------- /parsons/utilities/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/files.py -------------------------------------------------------------------------------- /parsons/utilities/format_phone_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/format_phone_number.py -------------------------------------------------------------------------------- /parsons/utilities/json_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/json_format.py -------------------------------------------------------------------------------- /parsons/utilities/oauth_api_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/oauth_api_connector.py -------------------------------------------------------------------------------- /parsons/utilities/sql_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/sql_helpers.py -------------------------------------------------------------------------------- /parsons/utilities/ssh_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/ssh_utilities.py -------------------------------------------------------------------------------- /parsons/utilities/zip_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/utilities/zip_archive.py -------------------------------------------------------------------------------- /parsons/zoom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/zoom/__init__.py -------------------------------------------------------------------------------- /parsons/zoom/zoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/parsons/zoom/zoom.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/test-simple-table.csv: -------------------------------------------------------------------------------- 1 | first,last 2 | Bob,Smith 3 | -------------------------------------------------------------------------------- /test/data/test-simple-table.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/data/test-simple-table.csv.gz -------------------------------------------------------------------------------- /test/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/fixtures.py -------------------------------------------------------------------------------- /test/responses/ts_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/responses/ts_responses.py -------------------------------------------------------------------------------- /test/test_actblue/test_actblue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_actblue/test_actblue.py -------------------------------------------------------------------------------- /test/test_actblue/test_columns_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_actblue/test_columns_data.py -------------------------------------------------------------------------------- /test/test_actblue/test_csv_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_actblue/test_csv_data.csv -------------------------------------------------------------------------------- /test/test_action_builder/test_action_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_action_builder/test_action_builder.py -------------------------------------------------------------------------------- /test/test_action_kit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_action_kit.py -------------------------------------------------------------------------------- /test/test_action_network/test_action_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_action_network/test_action_network.py -------------------------------------------------------------------------------- /test/test_airmeet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_airmeet.py -------------------------------------------------------------------------------- /test/test_airtable/airtable_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_airtable/airtable_responses.py -------------------------------------------------------------------------------- /test/test_airtable/test_airtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_airtable/test_airtable.py -------------------------------------------------------------------------------- /test/test_alchemer/test_getresponses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_alchemer/test_getresponses.py -------------------------------------------------------------------------------- /test/test_alchemer/test_getsurveys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_alchemer/test_getsurveys.py -------------------------------------------------------------------------------- /test/test_auth0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_auth0.py -------------------------------------------------------------------------------- /test/test_aws_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_aws_async.py -------------------------------------------------------------------------------- /test/test_azure/test_azure_blob_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_azure/test_azure_blob_storage.py -------------------------------------------------------------------------------- /test/test_bill_com/test_bill_com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_bill_com/test_bill_com.py -------------------------------------------------------------------------------- /test/test_bloomerang/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_bloomerang/test_bloomerang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_bloomerang/test_bloomerang.py -------------------------------------------------------------------------------- /test/test_bloomerang/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_bloomerang/test_data.py -------------------------------------------------------------------------------- /test/test_box/test_box_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_box/test_box_storage.py -------------------------------------------------------------------------------- /test/test_braintree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_braintree/test_braintree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_braintree/test_braintree.py -------------------------------------------------------------------------------- /test/test_braintree/test_data/dispute_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_braintree/test_data/dispute_example.xml -------------------------------------------------------------------------------- /test/test_braintree/test_data/subscription_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_braintree/test_data/subscription_example.xml -------------------------------------------------------------------------------- /test/test_braintree/test_data/transaction_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_braintree/test_data/transaction_example.xml -------------------------------------------------------------------------------- /test/test_capitol_canary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_capitol_canary.py -------------------------------------------------------------------------------- /test/test_catalist/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_catalist/conftest.py -------------------------------------------------------------------------------- /test/test_catalist/test_catalist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_catalist/test_catalist.py -------------------------------------------------------------------------------- /test/test_census/test_census.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_census/test_census.py -------------------------------------------------------------------------------- /test/test_civis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_civis.py -------------------------------------------------------------------------------- /test/test_community/test_community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_community/test_community.py -------------------------------------------------------------------------------- /test/test_controlshift/test_controlshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_controlshift/test_controlshift.py -------------------------------------------------------------------------------- /test/test_controlshift/test_cs_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_controlshift/test_cs_data.py -------------------------------------------------------------------------------- /test/test_copper/activities_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_copper/activities_search.json -------------------------------------------------------------------------------- /test/test_copper/activity_types_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_copper/activity_types_list.json -------------------------------------------------------------------------------- /test/test_copper/companies_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_copper/companies_search.json -------------------------------------------------------------------------------- /test/test_copper/companies_search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_copper/companies_search.txt -------------------------------------------------------------------------------- /test/test_copper/contact_types_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_copper/contact_types_list.json -------------------------------------------------------------------------------- /test/test_copper/custom_fields_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_copper/custom_fields_search.json -------------------------------------------------------------------------------- /test/test_copper/opportunities_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_copper/opportunities_search.json -------------------------------------------------------------------------------- /test/test_copper/people_search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_copper/people_search.txt -------------------------------------------------------------------------------- /test/test_copper/test_copper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_copper/test_copper.py -------------------------------------------------------------------------------- /test/test_credential_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_credential_tools.py -------------------------------------------------------------------------------- /test/test_crowdtangle/leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_crowdtangle/leaderboard.py -------------------------------------------------------------------------------- /test/test_crowdtangle/link_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_crowdtangle/link_post.py -------------------------------------------------------------------------------- /test/test_crowdtangle/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_crowdtangle/post.py -------------------------------------------------------------------------------- /test/test_crowdtangle/test_crowdtangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_crowdtangle/test_crowdtangle.py -------------------------------------------------------------------------------- /test/test_databases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_databases/fakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_databases/fakes.py -------------------------------------------------------------------------------- /test/test_databases/test_bigquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_databases/test_bigquery.py -------------------------------------------------------------------------------- /test/test_databases/test_data/sample_table_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_databases/test_data/sample_table_1.csv -------------------------------------------------------------------------------- /test/test_databases/test_data/sample_table_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_databases/test_data/sample_table_2.csv -------------------------------------------------------------------------------- /test/test_databases/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_databases/test_database.py -------------------------------------------------------------------------------- /test/test_databases/test_dbsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_databases/test_dbsync.py -------------------------------------------------------------------------------- /test/test_databases/test_discover_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_databases/test_discover_database.py -------------------------------------------------------------------------------- /test/test_databases/test_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_databases/test_mysql.py -------------------------------------------------------------------------------- /test/test_databases/test_postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_databases/test_postgres.py -------------------------------------------------------------------------------- /test/test_databases/test_redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_databases/test_redshift.py -------------------------------------------------------------------------------- /test/test_databases/test_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_databases/test_sqlite.py -------------------------------------------------------------------------------- /test/test_donorbox/donorbox_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_donorbox/donorbox_test_data.py -------------------------------------------------------------------------------- /test/test_donorbox/test_donorbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_donorbox/test_donorbox.py -------------------------------------------------------------------------------- /test/test_empower/dummy_empower_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_empower/dummy_empower_data.py -------------------------------------------------------------------------------- /test/test_empower/test_empower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_empower/test_empower.py -------------------------------------------------------------------------------- /test/test_etl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_etl.py -------------------------------------------------------------------------------- /test/test_facebook_ads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_facebook_ads.py -------------------------------------------------------------------------------- /test/test_formstack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_formstack/formstack_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_formstack/formstack_json.py -------------------------------------------------------------------------------- /test/test_formstack/test_formstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_formstack/test_formstack.py -------------------------------------------------------------------------------- /test/test_freshdesk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_freshdesk/expected_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_freshdesk/expected_json.py -------------------------------------------------------------------------------- /test/test_freshdesk/test_freshdesk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_freshdesk/test_freshdesk.py -------------------------------------------------------------------------------- /test/test_geocoder/test_census_geocoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_geocoder/test_census_geocoder.py -------------------------------------------------------------------------------- /test/test_geocoder/test_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_geocoder/test_responses.py -------------------------------------------------------------------------------- /test/test_github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_github/test_data/test_download_file.csv: -------------------------------------------------------------------------------- 1 | header 2 | data 3 | -------------------------------------------------------------------------------- /test/test_github/test_data/test_get_repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_github/test_data/test_get_repo.json -------------------------------------------------------------------------------- /test/test_github/test_data/test_list_repo_issues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_github/test_data/test_list_repo_issues.json -------------------------------------------------------------------------------- /test/test_github/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_github/test_github.py -------------------------------------------------------------------------------- /test/test_gmail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum.jpeg -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum.m4a -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum.mp3 -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum.mp4 -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum.pdf -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum.txt -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum_b64_jpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum_b64_jpeg.txt -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum_b64_m4a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum_b64_m4a.txt -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum_b64_mp3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum_b64_mp3.txt -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum_b64_mp4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum_b64_mp4.txt -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum_b64_pdf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum_b64_pdf.txt -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum_b64_txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum_b64_txt.txt -------------------------------------------------------------------------------- /test/test_gmail/assets/loremipsum_b64_win_txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/assets/loremipsum_b64_win_txt.txt -------------------------------------------------------------------------------- /test/test_gmail/test_gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_gmail/test_gmail.py -------------------------------------------------------------------------------- /test/test_google/googlecivic_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_google/googlecivic_responses.py -------------------------------------------------------------------------------- /test/test_google/test_google_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_google/test_google_admin.py -------------------------------------------------------------------------------- /test/test_google/test_google_cloud_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_google/test_google_cloud_storage.py -------------------------------------------------------------------------------- /test/test_google/test_google_drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_google/test_google_drive.py -------------------------------------------------------------------------------- /test/test_google/test_google_sheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_google/test_google_sheets.py -------------------------------------------------------------------------------- /test/test_google/test_googlecivic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_google/test_googlecivic.py -------------------------------------------------------------------------------- /test/test_google/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_google/test_utilities.py -------------------------------------------------------------------------------- /test/test_hustle/expected_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_hustle/expected_json.py -------------------------------------------------------------------------------- /test/test_hustle/test_hustle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_hustle/test_hustle.py -------------------------------------------------------------------------------- /test/test_mailchimp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_mailchimp/expected_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_mailchimp/expected_json.py -------------------------------------------------------------------------------- /test/test_mailchimp/test_mailchimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_mailchimp/test_mailchimp.py -------------------------------------------------------------------------------- /test/test_mobilecommons/mobilecommons_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_mobilecommons/mobilecommons_responses.py -------------------------------------------------------------------------------- /test/test_mobilecommons/test_mobilecommons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_mobilecommons/test_mobilecommons.py -------------------------------------------------------------------------------- /test/test_mobilize/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_mobilize/test_mobilize_america.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_mobilize/test_mobilize_america.py -------------------------------------------------------------------------------- /test/test_mobilize/test_mobilize_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_mobilize/test_mobilize_json.py -------------------------------------------------------------------------------- /test/test_nation_builder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_nation_builder/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_nation_builder/fixtures.py -------------------------------------------------------------------------------- /test/test_nation_builder/test_nation_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_nation_builder/test_nation_builder.py -------------------------------------------------------------------------------- /test/test_newmode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_newmode/test_newmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_newmode/test_newmode.py -------------------------------------------------------------------------------- /test/test_newmode/test_newmode_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_newmode/test_newmode_data.py -------------------------------------------------------------------------------- /test/test_p2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_p2a.py -------------------------------------------------------------------------------- /test/test_pdi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_pdi/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_pdi/conftest.py -------------------------------------------------------------------------------- /test/test_pdi/test_acquisitiontypes.py: -------------------------------------------------------------------------------- 1 | # TODO: Add tests for PDI AcquisitionTypes class 2 | -------------------------------------------------------------------------------- /test/test_pdi/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_pdi/test_events.py -------------------------------------------------------------------------------- /test/test_pdi/test_flag_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_pdi/test_flag_ids.py -------------------------------------------------------------------------------- /test/test_pdi/test_flags.py: -------------------------------------------------------------------------------- 1 | # TODO: Add tests for PDI Flags class 2 | -------------------------------------------------------------------------------- /test/test_pdi/test_pdi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_pdi/test_pdi.py -------------------------------------------------------------------------------- /test/test_pdi/test_questions.py: -------------------------------------------------------------------------------- 1 | # TODO: Add tests for PDI Questions class 2 | -------------------------------------------------------------------------------- /test/test_pdi/test_universes.py: -------------------------------------------------------------------------------- 1 | # TODO: Add tests for PDI Universes class 2 | -------------------------------------------------------------------------------- /test/test_quickbase/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_quickbase/test_data.py -------------------------------------------------------------------------------- /test/test_quickbase/test_quickbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_quickbase/test_quickbase.py -------------------------------------------------------------------------------- /test/test_quickbooks/test_quickbookstime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_quickbooks/test_quickbookstime.py -------------------------------------------------------------------------------- /test/test_quickbooks/test_quickbookstime_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_quickbooks/test_quickbookstime_data.py -------------------------------------------------------------------------------- /test/test_redash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_redash.py -------------------------------------------------------------------------------- /test/test_rockthevote/sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_rockthevote/sample.csv -------------------------------------------------------------------------------- /test/test_rockthevote/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_rockthevote/sample.json -------------------------------------------------------------------------------- /test/test_rockthevote/test_rtv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_rockthevote/test_rtv.py -------------------------------------------------------------------------------- /test/test_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_s3.py -------------------------------------------------------------------------------- /test/test_salesforce/test_salesforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_salesforce/test_salesforce.py -------------------------------------------------------------------------------- /test/test_scytl/114729_county_expected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_scytl/114729_county_expected.csv -------------------------------------------------------------------------------- /test/test_scytl/114729_detailxml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_scytl/114729_detailxml.zip -------------------------------------------------------------------------------- /test/test_scytl/114729_precinct_expected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_scytl/114729_precinct_expected.csv -------------------------------------------------------------------------------- /test/test_scytl/114729_summary.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_scytl/114729_summary.zip -------------------------------------------------------------------------------- /test/test_scytl/114729_summary_expected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_scytl/114729_summary_expected.csv -------------------------------------------------------------------------------- /test/test_scytl/GA_114729_296262_county_election_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_scytl/GA_114729_296262_county_election_settings.json -------------------------------------------------------------------------------- /test/test_scytl/mock_responses/GA_Barrow_114737_295501_reports_detailxml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_scytl/mock_responses/GA_Barrow_114737_295501_reports_detailxml.zip -------------------------------------------------------------------------------- /test/test_scytl/mock_responses/GA_Clarke_114759_295888_reports_detailxml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_scytl/mock_responses/GA_Clarke_114759_295888_reports_detailxml.zip -------------------------------------------------------------------------------- /test/test_scytl/test_scytl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_scytl/test_scytl.py -------------------------------------------------------------------------------- /test/test_sendmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_sendmail.py -------------------------------------------------------------------------------- /test/test_sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_sftp.py -------------------------------------------------------------------------------- /test/test_sftp_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_sftp_ssh.py -------------------------------------------------------------------------------- /test/test_shopify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_shopify.py -------------------------------------------------------------------------------- /test/test_sisense/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_sisense/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_sisense/test_data.py -------------------------------------------------------------------------------- /test/test_sisense/test_sisense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_sisense/test_sisense.py -------------------------------------------------------------------------------- /test/test_slack/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_slack/responses/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_slack/responses/channels.json -------------------------------------------------------------------------------- /test/test_slack/responses/file_upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_slack/responses/file_upload.json -------------------------------------------------------------------------------- /test/test_slack/responses/message_channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_slack/responses/message_channel.json -------------------------------------------------------------------------------- /test/test_slack/responses/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_slack/responses/users.json -------------------------------------------------------------------------------- /test/test_slack/test_slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_slack/test_slack.py -------------------------------------------------------------------------------- /test/test_smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_smtp.py -------------------------------------------------------------------------------- /test/test_targetsmart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_targetsmart/job_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_targetsmart/job_config.xml -------------------------------------------------------------------------------- /test/test_targetsmart/match_bad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_targetsmart/match_bad.xml -------------------------------------------------------------------------------- /test/test_targetsmart/match_good.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_targetsmart/match_good.xml -------------------------------------------------------------------------------- /test/test_targetsmart/test_targetsmart_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_targetsmart/test_targetsmart_api.py -------------------------------------------------------------------------------- /test/test_targetsmart/test_targetsmart_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_targetsmart/test_targetsmart_automation.py -------------------------------------------------------------------------------- /test/test_targetsmart/test_targetsmart_smartmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_targetsmart/test_targetsmart_smartmatch.py -------------------------------------------------------------------------------- /test/test_turbovote/test_turbovote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_turbovote/test_turbovote.py -------------------------------------------------------------------------------- /test/test_turbovote/users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_turbovote/users.txt -------------------------------------------------------------------------------- /test/test_twilio/test_twilio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_twilio/test_twilio.py -------------------------------------------------------------------------------- /test/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_utilities.py -------------------------------------------------------------------------------- /test/test_utilities/test_format_phone_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_utilities/test_format_phone_number.py -------------------------------------------------------------------------------- /test/test_utilities/test_ssh_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_utilities/test_ssh_utilities.py -------------------------------------------------------------------------------- /test/test_van/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_van/responses_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/responses_people.py -------------------------------------------------------------------------------- /test/test_van/responses_printed_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/responses_printed_lists.py -------------------------------------------------------------------------------- /test/test_van/test_activist_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_activist_codes.py -------------------------------------------------------------------------------- /test/test_van/test_bulkimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_bulkimport.py -------------------------------------------------------------------------------- /test/test_van/test_changed_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_changed_entities.py -------------------------------------------------------------------------------- /test/test_van/test_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_codes.py -------------------------------------------------------------------------------- /test/test_van/test_contact_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_contact_notes.py -------------------------------------------------------------------------------- /test/test_van/test_custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_custom_fields.py -------------------------------------------------------------------------------- /test/test_van/test_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_email.py -------------------------------------------------------------------------------- /test/test_van/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_events.py -------------------------------------------------------------------------------- /test/test_van/test_introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_introspection.py -------------------------------------------------------------------------------- /test/test_van/test_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_locations.py -------------------------------------------------------------------------------- /test/test_van/test_ngpvan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_ngpvan.py -------------------------------------------------------------------------------- /test/test_van/test_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_people.py -------------------------------------------------------------------------------- /test/test_van/test_printed_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_printed_lists.py -------------------------------------------------------------------------------- /test/test_van/test_saved_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_saved_lists.py -------------------------------------------------------------------------------- /test/test_van/test_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_scores.py -------------------------------------------------------------------------------- /test/test_van/test_signups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_signups.py -------------------------------------------------------------------------------- /test/test_van/test_targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_van/test_targets.py -------------------------------------------------------------------------------- /test/test_zoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/test_zoom.py -------------------------------------------------------------------------------- /test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/test/utils.py -------------------------------------------------------------------------------- /useful_resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/README.md -------------------------------------------------------------------------------- /useful_resources/computer_setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/computer_setup/README.md -------------------------------------------------------------------------------- /useful_resources/computer_setup/python3_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/computer_setup/python3_setup.md -------------------------------------------------------------------------------- /useful_resources/computer_setup/terminal_app_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/computer_setup/terminal_app_setup.md -------------------------------------------------------------------------------- /useful_resources/sample_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/README.md -------------------------------------------------------------------------------- /useful_resources/sample_code/actblue_to_google_sheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/actblue_to_google_sheets.py -------------------------------------------------------------------------------- /useful_resources/sample_code/apply_activist_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/apply_activist_code.py -------------------------------------------------------------------------------- /useful_resources/sample_code/civis_job_status_slack_alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/civis_job_status_slack_alert.py -------------------------------------------------------------------------------- /useful_resources/sample_code/mysql_to_googlesheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/mysql_to_googlesheets.py -------------------------------------------------------------------------------- /useful_resources/sample_code/ngpvan_sample_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/ngpvan_sample_list.py -------------------------------------------------------------------------------- /useful_resources/sample_code/ngpvan_sample_printed_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/ngpvan_sample_printed_list.py -------------------------------------------------------------------------------- /useful_resources/sample_code/opt_outs_everyaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/opt_outs_everyaction.py -------------------------------------------------------------------------------- /useful_resources/sample_code/s3_to_redshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/s3_to_redshift.py -------------------------------------------------------------------------------- /useful_resources/sample_code/s3_to_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/s3_to_s3.py -------------------------------------------------------------------------------- /useful_resources/sample_code/template_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/template_script.py -------------------------------------------------------------------------------- /useful_resources/sample_code/update_user_in_actionkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/update_user_in_actionkit.py -------------------------------------------------------------------------------- /useful_resources/sample_code/zoom_to_van.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/sample_code/zoom_to_van.py -------------------------------------------------------------------------------- /useful_resources/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/tools/README.md -------------------------------------------------------------------------------- /useful_resources/tools/using_bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/tools/using_bash.md -------------------------------------------------------------------------------- /useful_resources/tools/using_git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/move-coop/parsons/HEAD/useful_resources/tools/using_git.md --------------------------------------------------------------------------------