This repository has been archived by the owner on Mar 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
While still not done made some progress on cleaning things up * use logging module * moved things into packages * dropped the git version getting madness * raise exception instead of setting an is_error * minimum python version is v2.6 (using `with` and removed the check on json import which was needed in 2.5)
- Loading branch information
1 parent
c3b16a3
commit 17e8cfc
Showing
6 changed files
with
77 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# vim: set fileencoding=utf-8 : | ||
from __future__ import (division, absolute_import, print_function, | ||
unicode_literals) | ||
from .simplenote import * | ||
|
||
|
||
# Versioning currently follows sn.py | ||
#__version__ = '0.1.0' | ||
__all__ = ['simplenote', 'exceptions'] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# vim: set fileencoding=utf-8 : | ||
from __future__ import (division, absolute_import, print_function, | ||
unicode_literals) | ||
|
||
|
||
__all__ = ['SimplenoteError'] | ||
|
||
|
||
class SimplenoteError(Exception): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# vim: set fileencoding=utf-8 : | ||
from __future__ import (division, absolute_import, print_function, | ||
unicode_literals) | ||
|
||
|
||
__all__ = ['progress_bar'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters