File tree Expand file tree Collapse file tree 4 files changed +20
-3
lines changed Expand file tree Collapse file tree 4 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ A Python wrapper for the WooCommerce REST API. Easily interact with the WooComme
6
6
.. image :: https://secure.travis-ci.org/woothemes/wc-api-python.svg
7
7
:target: http://travis-ci.org/woothemes/wc-api-python
8
8
9
+ .. image :: https://img.shields.io/pypi/v/woocommerce.svg
10
+ :target: https://pypi.python.org/pypi/WooCommerce
11
+
9
12
10
13
Installation
11
14
------------
@@ -103,3 +106,17 @@ Example of returned data:
103
106
u' {"products":[{"title":"Flying Ninja","id":70,...' // Json text
104
107
>>> wcapi.json ()
105
108
{u' products' : [{u' sold_individually' : False,... // Dictionary data
109
+
110
+
111
+ Changelog
112
+ ---------
113
+
114
+ 1.0.1 - 2015/07/13
115
+ ~ ~~~~~~~~~~~~~~~~~
116
+
117
+ - Fixed support for Python 2.6
118
+
119
+ 1.0.1 - 2015/07/12
120
+ ~ ~~~~~~~~~~~~~~~~~
121
+
122
+ - Initial version
Original file line number Diff line number Diff line change 10
10
"""
11
11
12
12
__title__ = "woocommerce"
13
- __version__ = "1.0.0 "
13
+ __version__ = "1.0.1 "
14
14
__author__ = "Claudio Sanches @ WooThemes"
15
15
__license__ = "MIT"
16
16
Original file line number Diff line number Diff line change 5
5
"""
6
6
7
7
__title__ = "woocommerce-api"
8
- __version__ = "1.0.0 "
8
+ __version__ = "1.0.1 "
9
9
__author__ = "Claudio Sanches @ WooThemes"
10
10
__license__ = "MIT"
11
11
Original file line number Diff line number Diff line change 5
5
"""
6
6
7
7
__title__ = "woocommerce-oauth"
8
- __version__ = "1.0.0 "
8
+ __version__ = "1.0.1 "
9
9
__author__ = "Claudio Sanches @ WooThemes"
10
10
__license__ = "MIT"
11
11
You can’t perform that action at this time.
0 commit comments