BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
etsy-python
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
etsy-python
Commits
8efaf857
Commit
8efaf857
authored
May 31, 2010
by
Dan McKinley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
documentation re: configuration, adding a section about performance
parent
2dc099eb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
README.md
README.md
+25
-0
No files found.
README.md
View file @
8efaf857
...
...
@@ -61,6 +61,31 @@ on Code as Craft.
## Configuration
For convenience, the package supports local configuration. You can manage your
API keys in a file called $HOME/etsy/keys (or the equivalent on Windows) with
the following format:
<pre>
v1 = 'Etsy API version 1 key goes here'
v2 = 'Etsy API version 2 key goes here'
</pre>
Alternatively, you can specify a different key file when creating an API object.
<pre>
from etsy import Etsy
api = Etsy(key_file='/usr/share/etsy/keys')
</pre>
## Future Work
Currently, the API objects download the method tables from etsy.com upon module load.
While this is fine for persistent or long-running applications, it is not ideal for
short-lived programs where the cost of such an operation becomes very significant.
There will be enhancements in the future to address this problem in a number of ways.
## Version History
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment