-
Notifications
You must be signed in to change notification settings - Fork 75
/
settings.py
100 lines (79 loc) · 3.27 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import os
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
GOOGLEADS_YAML_FILE = os.path.join(ROOT_DIR, 'googleads.yaml')
#########################################################################
# DFP SETTINGS
#########################################################################
# A string describing the order
DFP_ORDER_NAME = None
# The email of the DFP user who will be the trafficker for
# the created order
DFP_USER_EMAIL_ADDRESS = None
# The exact name of the DFP advertiser for the created order
DFP_ADVERTISER_NAME = None
# Names of placements the line items should target.
DFP_TARGETED_PLACEMENT_NAMES = []
# Names of ad units the line items should target.
DFP_TARGETED_AD_UNIT_NAMES = []
# Sizes of placements. These are used to set line item and creative sizes.
DFP_PLACEMENT_SIZES = [
{
'width': '300',
'height': '250'
},
{
'width': '728',
'height': '90'
},
]
# If DFP_VIDEO_AD_TYPE is set to False, traditional ad units will be created.
# If it is set to True, video ad units and creatives will be created instead.
# When creating video ad units, you also need to fill the DFP_VAST_REDIRECT_URL value.
DFP_VIDEO_AD_TYPE = False
# Redirect URL for video creatives.
DFP_VAST_REDIRECT_URL = ''
# Whether we should create the advertiser in DFP if it does not exist.
# If False, the program will exit rather than create an advertiser.
DFP_CREATE_ADVERTISER_IF_DOES_NOT_EXIST = False
# If settings.DFP_ORDER_NAME is the same as an existing order, add the created
# line items to that order. If False, the program will exit rather than
# modify an existing order.
DFP_USE_EXISTING_ORDER_IF_EXISTS = False
# Optional
# Each line item should have at least as many creatives as the number of
# ad units you serve on a single page because DFP specifies:
# "Each of a line item's assigned creatives can only serve once per page,
# so if you want the same creative to appear more than once per page,
# copy the creative to associate multiple instances of the same creative."
# https://support.google.com/dfp_sb/answer/82245?hl=en
#
# This will default to the number of placements specified in
# `DFP_TARGETED_PLACEMENT_NAMES`.
# DFP_NUM_CREATIVES_PER_LINE_ITEM = 2
# Optional
# The currency to use in DFP when setting line item CPMs. Defaults to 'USD'.
# DFP_CURRENCY_CODE = 'USD'
# Optional
# The format for line item name. Defaults to u'{bidder_code}: HB ${price}'.
# This should be specified in python's format syntax.
# DFP_LINE_ITEM_FORMAT = u'{bidder_code}: HB ${price:0>5}'
#########################################################################
# PREBID SETTINGS
#########################################################################
PREBID_BIDDER_CODE = None
# Price buckets. This should match your Prebid settings for the partner.
# Can be a single bucket, an array of buckets or string for standard Prebid
# price granularities such as 'medium', 'dense' or 'auto'
# See: https://docs.prebid.org/dev-docs/publisher-api-reference/setConfig.html#setConfig-Price-Granularity
PREBID_PRICE_BUCKETS = {
'precision': 2,
'min' : 0,
'max' : 20,
'increment': 0.10,
}
#########################################################################
# Try importing local settings, which will take precedence.
try:
from local_settings import *
except ImportError:
pass