Skip to content
This repository was archived by the owner on Oct 13, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ Forked by Sean Scheetz

The simplest way to install the module is pip

<pre>
```
$ pip install etsy2
</pre>
```

To install from source, extract the tarball and use the following commands.

<pre>
```
$ python setup.py build
$ sudo python setup.py install
</pre>
```

## Overview

Expand All @@ -56,6 +56,7 @@ etsy.findAllFeaturedListings()
For endpoints that do require OAuth you must pass an `EtsyOAuthClient` to the `Etsy` constructor.

```python
from etsy2 import EtsyOAuthClient, Etsy
etsy_oauth = EtsyOAuthClient(client_key=api_key,
client_secret=shared_secret,
resource_owner_key=oauth_token,
Expand Down
4 changes: 2 additions & 2 deletions etsy2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from ._v2 import EtsyV2 as Etsy
from .etsy_env import EtsyEnvProduction
from .oauth import EtsyOAuthClient, EtsyOAuthHelper


__version__ = '0.7.0'
__version__ = '0.7.1'
__author__ = 'Sean Scheetz'
__copyright__ = 'Copyright 2010, Etsy Inc.'
__license__ = 'GPL v3'
Expand Down