├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __init__.py ├── dfp ├── __init__.py ├── associate_line_items_and_creatives.py ├── client.py ├── create_creatives.py ├── create_custom_targeting.py ├── create_line_items.py ├── create_orders.py ├── creative_snippet.html ├── exceptions.py ├── get_ad_units.py ├── get_advertisers.py ├── get_custom_targeting.py ├── get_orders.py ├── get_placements.py └── get_users.py ├── googleads.example.yaml ├── requirements.txt ├── secret-files.tar.enc ├── settings.py ├── tasks ├── __init__.py ├── add_new_prebid_partner.py └── price_utils.py ├── tests ├── __init__.py ├── test_add_new_prebid_partner.py ├── test_dfp_associate_line_items_and_creatives.py ├── test_dfp_create_creatives.py ├── test_dfp_create_custom_targeting.py ├── test_dfp_create_line_items.py ├── test_dfp_create_orders.py ├── test_dfp_get_ad_units.py ├── test_dfp_get_advertisers.py ├── test_dfp_get_custom_targeting.py ├── test_dfp_get_orders.py ├── test_dfp_get_placements.py ├── test_dfp_get_users.py └── test_price_utils.py └── tests_integration ├── __init__.py ├── helpers ├── __init__.py ├── archive_order_by_name.py ├── get_advertiser_by_name.py ├── get_custom_targeting_by_key_name.py ├── get_line_items_for_order.py ├── get_order_by_name.py └── get_placement_by_name.py └── integration_test_new_prebid_partner.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dfp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dfp/associate_line_items_and_creatives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/associate_line_items_and_creatives.py -------------------------------------------------------------------------------- /dfp/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/client.py -------------------------------------------------------------------------------- /dfp/create_creatives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/create_creatives.py -------------------------------------------------------------------------------- /dfp/create_custom_targeting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/create_custom_targeting.py -------------------------------------------------------------------------------- /dfp/create_line_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/create_line_items.py -------------------------------------------------------------------------------- /dfp/create_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/create_orders.py -------------------------------------------------------------------------------- /dfp/creative_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/creative_snippet.html -------------------------------------------------------------------------------- /dfp/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/exceptions.py -------------------------------------------------------------------------------- /dfp/get_ad_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/get_ad_units.py -------------------------------------------------------------------------------- /dfp/get_advertisers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/get_advertisers.py -------------------------------------------------------------------------------- /dfp/get_custom_targeting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/get_custom_targeting.py -------------------------------------------------------------------------------- /dfp/get_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/get_orders.py -------------------------------------------------------------------------------- /dfp/get_placements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/get_placements.py -------------------------------------------------------------------------------- /dfp/get_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/dfp/get_users.py -------------------------------------------------------------------------------- /googleads.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/googleads.example.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/requirements.txt -------------------------------------------------------------------------------- /secret-files.tar.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/secret-files.tar.enc -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/settings.py -------------------------------------------------------------------------------- /tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/add_new_prebid_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tasks/add_new_prebid_partner.py -------------------------------------------------------------------------------- /tasks/price_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tasks/price_utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_add_new_prebid_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_add_new_prebid_partner.py -------------------------------------------------------------------------------- /tests/test_dfp_associate_line_items_and_creatives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_dfp_associate_line_items_and_creatives.py -------------------------------------------------------------------------------- /tests/test_dfp_create_creatives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_dfp_create_creatives.py -------------------------------------------------------------------------------- /tests/test_dfp_create_custom_targeting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_dfp_create_custom_targeting.py -------------------------------------------------------------------------------- /tests/test_dfp_create_line_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_dfp_create_line_items.py -------------------------------------------------------------------------------- /tests/test_dfp_create_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_dfp_create_orders.py -------------------------------------------------------------------------------- /tests/test_dfp_get_ad_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_dfp_get_ad_units.py -------------------------------------------------------------------------------- /tests/test_dfp_get_advertisers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_dfp_get_advertisers.py -------------------------------------------------------------------------------- /tests/test_dfp_get_custom_targeting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_dfp_get_custom_targeting.py -------------------------------------------------------------------------------- /tests/test_dfp_get_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_dfp_get_orders.py -------------------------------------------------------------------------------- /tests/test_dfp_get_placements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_dfp_get_placements.py -------------------------------------------------------------------------------- /tests/test_dfp_get_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_dfp_get_users.py -------------------------------------------------------------------------------- /tests/test_price_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests/test_price_utils.py -------------------------------------------------------------------------------- /tests_integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests_integration/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests_integration/helpers/archive_order_by_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests_integration/helpers/archive_order_by_name.py -------------------------------------------------------------------------------- /tests_integration/helpers/get_advertiser_by_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests_integration/helpers/get_advertiser_by_name.py -------------------------------------------------------------------------------- /tests_integration/helpers/get_custom_targeting_by_key_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests_integration/helpers/get_custom_targeting_by_key_name.py -------------------------------------------------------------------------------- /tests_integration/helpers/get_line_items_for_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests_integration/helpers/get_line_items_for_order.py -------------------------------------------------------------------------------- /tests_integration/helpers/get_order_by_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests_integration/helpers/get_order_by_name.py -------------------------------------------------------------------------------- /tests_integration/helpers/get_placement_by_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests_integration/helpers/get_placement_by_name.py -------------------------------------------------------------------------------- /tests_integration/integration_test_new_prebid_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmjennison/dfp-prebid-setup/HEAD/tests_integration/integration_test_new_prebid_partner.py --------------------------------------------------------------------------------