-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathfb_ads_library_api_utils.py
96 lines (89 loc) · 1.76 KB
/
fb_ads_library_api_utils.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
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
from iso3166 import countries
supported_countries = [
"AT",
"BE",
"BG",
"CA",
"CY",
"CZ",
"DE",
"DK",
"EE",
"ES",
"FI",
"FR",
"GB",
"GR",
"HR",
"HU",
"IE",
"IL",
"IN",
"IT",
"LT",
"LU",
"LV",
"MT",
"NL",
"PL",
"PT",
"RO",
"SE",
"SI",
"SK",
"UA",
"US",
]
valid_query_fields = [
"id",
"ad_creation_time",
"ad_creative_bodies",
"ad_creative_link_captions",
"ad_creative_link_descriptions",
"ad_creative_link_titles",
"ad_delivery_start_time",
"ad_delivery_stop_time",
"ad_snapshot_url",
"age_country_gender_reach_breakdown",
"beneficiary_payers",
"br_total_reach",
"bylines",
"currency",
"delivery_by_region",
"demographic_distribution",
"estimated_audience_size",
"eu_total_reach",
"impressions",
"languages",
"page_id",
"page_name",
"publisher_platforms",
"spend",
"target_ages",
"target_gender",
"target_locations",
]
def get_country_code(country_str):
"""
Convert the country input to valid country code
"""
global supported_countries
try:
country = countries.get(country_str)
except Exception:
country = None
if not country or country.alpha2 not in supported_countries:
return None
return country.alpha2
def is_valid_fields(field):
"""
The Facebook Ads Library API has a list of supported fields
"""
global valid_query_fields
return field in valid_query_fields