Skip to content

Commit 4b74ca2

Browse files
author
Evan Chen
committed
Added hourly breakdowns to Insights object
Summary: Added breakdown metrics to Insights object Test Plan: readdiff
1 parent 16955ac commit 4b74ca2

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

facebookads/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class FacebookAdsApi(object):
133133
this sdk.
134134
"""
135135

136-
SDK_VERSION = '2.3.2'
136+
SDK_VERSION = '2.3.3'
137137

138138
API_VERSION = 'v2.3'
139139

facebookads/objects.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2531,6 +2531,10 @@ class Breakdown(object):
25312531
age = 'age'
25322532
country = 'country'
25332533
gender = 'gender'
2534+
hourly_stats_aggregated_by_advertiser_time_zone = \
2535+
'hourly_stats_aggregated_by_advertiser_time_zone'
2536+
hourly_stats_aggregated_by_audience_time_zone = \
2537+
'hourly_stats_aggregated_by_audience_time_zone'
25342538
impression_device = 'impression_device'
25352539
placement = 'placement'
25362540

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
requirements_filename = os.path.join(this_dir, 'requirements.txt')
3030

3131
PACKAGE_NAME = 'facebookads'
32-
PACKAGE_VERSION = '2.3.2'
32+
PACKAGE_VERSION = '2.3.3'
3333
PACKAGE_AUTHOR = 'Facebook'
3434
PACKAGE_AUTHOR_EMAIL = ''
3535
PACKAGE_URL = 'https://github.com/facebook/facebook-python-ads-sdk'

0 commit comments

Comments
 (0)