Skip to content
This repository was archived by the owner on Jun 11, 2024. It is now read-only.

Commit 6120749

Browse files
committed
Add Timezone model
Add `Timezone` and `PriceModel` models. Release v1.6
1 parent bf3f698 commit 6120749

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGES.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
1.6 (unreleased)
2-
----------------
1+
1.6
2+
---
33

44
- :meth:`atomx.Atomx.login` takes ``totp`` parameter for users that have 2-factor auth enabled.
55
- :meth:`atomx.Atomx.search` takes ``index`` parameter to only search specific models.
@@ -12,6 +12,8 @@
1212
* :class:`atomx.models.Appstore`
1313
* :class:`atomx.models.City`
1414
* :class:`atomx.models.Dma`
15+
* :class:`atomx.models.PriceModel`
16+
* :class:`atomx.models.Timezone`
1517
* :class:`atomx.models.Zipcode`
1618

1719
1.5

atomx/models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
'CampaignDebugReason', 'Campaign', 'Category', 'ConnectionType', 'City',
2121
'ConversionPixel', 'Country', 'Creative', 'CreativeAttribute',
2222
'Datacenter', 'DeviceType', 'Domain', 'Dma', 'Fallback', 'Isp', 'Languages', 'Network',
23-
'OperatingSystem', 'Placement', 'PlacementType', 'Profile', 'Publisher', 'Reason',
24-
'Segment', 'SellerProfile', 'Site', 'Size', 'User', 'Visibility',
25-
'Report', 'Zipcode'] # noqa
23+
'OperatingSystem', 'Placement', 'PlacementType', 'PriceModel', 'Profile', 'Publisher',
24+
'Reason', 'Report', 'Segment', 'SellerProfile', 'Site', 'Size',
25+
'Timezone', 'User', 'Visibility', 'Zipcode'] # noqa
2626

2727

2828
class AtomxModel(object):

atomx/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION = '1.6b'
1+
VERSION = '1.6'
22
API_VERSION = 'v3'

0 commit comments

Comments
 (0)