File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ 0.2.0 / 2012-08-29
2+ ==================
3+
4+ * Fixed: JSON parse error when deleting objects with call to ` Client.delete() `
5+ * Added: "Official" support for Python 2.4, 2.5, 2.6
6+ * Added: ` logon ` and ` logoff ` convenience methods.
7+ * Added: ` client_from_file ` to load credentials from a config file.
8+ * ` OX3APIClient ` is deprecated; use ` Client ` instead.
9+
10+ 0.1.0 / 2012-08-26
11+ ==================
12+
13+ * "Official release"
Original file line number Diff line number Diff line change 2424
2525import urlparse
2626
27- __version__ = '0.1 .0'
27+ __version__ = '0.2 .0'
2828
2929REQUEST_TOKEN_URL = 'https://sso.openx.com/api/index/initiate'
3030ACCESS_TOKEN_URL = 'https://sso.openx.com/api/index/token'
Original file line number Diff line number Diff line change 1717 description = 'Client to connect to OpenX Enterprise API.' ,
1818 long_description = 'Client to connect to OpenX Enterprise API.' ,
1919 packages = ['ox3apiclient' ],
20- install_requires = ['oauth2' ])
20+ install_requires = ['oauth2' ],
21+ classifiers = [
22+ 'Environment :: Console' ,
23+ 'Environment :: Web Environment' ,
24+ 'Intended Audience :: Developers' ,
25+ 'Operating System :: OS Independent' ,
26+ 'Programming Language :: Python' ,
27+ 'Programming Language :: Python :: 2.4' ,
28+ 'Programming Language :: Python :: 2.5' ,
29+ 'Programming Language :: Python :: 2.6' ,
30+ 'Programming Language :: Python :: 2.7' ,
31+ 'Programming Language :: Python :: Implementation :: CPython' ,
32+ 'Topic :: Internet :: WWW/HTTP :: Dynamic Content' ,
33+ 'Topic :: Software Development :: Libraries' ,
34+ 'Topic :: Software Development :: Libraries :: Python Modules' ])
You can’t perform that action at this time.
0 commit comments