Skip to content
This repository was archived by the owner on Oct 2, 2023. It is now read-only.
Merged
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@ Icon

### Added by etg
setenv

### Added by ndm
venv
.idea
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ ToopherPython is a Toopher API library that simplifies the task of interfacing w
focus on just using the API.

### Python Version
* 2.6
* 2.7
* 3.6

### Documentation
Make sure you visit [https://dev.toopher.com](https://dev.toopher.com) to get acquainted with the Toopher API fundamentals. The documentation there will tell you the details about the operations this API wrapper library provides.
Expand Down Expand Up @@ -102,4 +101,4 @@ $ nosetests test
```

## License
ToopherPython is licensed under the MIT License. See LICENSE.txt for the full text.
ToopherPython is licensed under the MIT License. See LICENSE.txt for the full text.
4 changes: 2 additions & 2 deletions toopher/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from toopher_api import *
from toopher_iframe import *
from .toopher_api import *
from .toopher_iframe import *
4 changes: 2 additions & 2 deletions toopher/toopher_iframe.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from oauthlib import oauth1
import urllib
import urlparse
from urllib.parse import urlparse
import hashlib
import hmac
import base64
import time
import logging
from toopher_api import *
from .toopher_api import *

DEFAULT_BASE_URL = 'https://api.toopher.com/v1'
DEFAULT_IFRAME_TTL = 300
Expand Down