10000 Version 1.0.4 · woocommerce/wc-api-python@f23b21c · GitHub
[go: up one dir, main page]

Skip to content

Commit f23b21c

Browse files
Version 1.0.4
1 parent d5ba3e7 commit f23b21c

File tree

4 files changed

+23
-16
lines changed

4 files changed

+23
-16
lines changed

README.rst

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,21 @@ Setup
4141
Options
4242
~~~~~~~
4343

44-
+--------------------+------------+----------+-------------------------------------------------------------------------------------------------------+
45-
| Option | Type | Required | Description |
46-
+====================+============+==========+=======================================================================================================+
47-
| ``url`` | ``string`` | yes | Your Store URL, example: http://woo.dev/ |
48-
+--------------------+------------+----------+-------------------------------------------------------------------------------------------------------+
49-
| ``consumerKey`` | ``string`` | yes | Your API consumer key |
50-
+--------------------+------------+----------+-------------------------------------------------------------------------------------------------------+
51-
| ``consumerSecret`` | ``string`` | yes | Your API consumer secret |
52-
+--------------------+------------+----------+-------------------------------------------------------------------------------------------------------+
53-
| ``version`` | ``string`` | no | API version, default is ``v3`` |
54-
+--------------------+------------+----------+-------------------------------------------------------------------------------------------------------+
55-
| ``verify_ssl`` | ``bool`` | no | Verify SSL when connect, use this option as ``false`` when need to test with self-signed certificates |
56-
+--------------------+------------+----------+-------------------------------------------------------------------------------------------------------+
44+
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
45+
| Option | Type | Required | Description |
46+
+====================+=============+==========+=======================================================================================================+
47+
| ``url`` | ``string`` | yes | Your Store URL, example: http://woo.dev/ |
48+
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
49+
| ``consumerKey`` | ``string`` | yes | Your API consumer key |
50+
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
51+
| ``consumerSecret`` | ``string`` | yes | Your API consumer secret |
52+
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
53+
| ``version`` | ``string`` | no | API version, default is ``v3`` |
54+
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
55+
| ``timeout`` | ``integer`` | no | Connection timeout, default is ``3`` |
56+
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
57+
| ``verify_ssl`` | ``bool`` | no | Verify SSL when connect, use this option as ``false`` when need to test with self-signed certificates |
58+
+--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
5759

5860
Methods
5961
-------
@@ -111,6 +113,11 @@ Example of returned data:
111113
Changelog
112114
---------
113115
116+
1.0.4 - 2015/09/25
117+
~~~~~~~~~~~~~~~~~~
118+
119+
- Implemented ``timeout`` argument for ``API`` class.
120+
114121
1.0.3 - 2015/08/07
115122
~~~~~~~~~~~~~~~~~~
116123

woocommerce/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111

1212
__title__ = "woocommerce"
13-
__version__ = "1.0.3"
13+
__version__ = "1.0.4"
1414
__author__ = "Claudio Sanches @ WooThemes"
1515
__license__ = "MIT"
1616

woocommerce/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66

77
__title__ = "woocommerce-api"
8-
__version__ = "1.0.3"
8+
__version__ = "1.0.4"
99
__author__ = "Claudio Sanches @ WooThemes"
1010
__license__ = "MIT"
1111

woocommerce/oauth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66

77
__title__ = "woocommerce-oauth"
8-
__version__ = "1.0.3"
8+
__version__ = "1.0.4"
99
__author__ = "Claudio Sanches @ WooThemes"
1010
__license__ = "MIT"
1111

0 commit comments

Comments
 (0)
0