-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There are problems to install pycrypto on some machines. Switches to pyaes who is a pure python package. It's slower than pycrypto/pycryptodome but it's okay. It's only needed on load/save credentials.
- Loading branch information
Showing
4 changed files
with
22 additions
and
21 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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
__title__ = 'audible' | ||
__description__ = 'A(Sync) Interface for internal Audible API written in pure Python.' | ||
__url__ = 'https://github.com/mkb79/audible' | ||
__version__ = '0.2.1a2' | ||
__version__ = '0.2.1a3' | ||
__author__ = 'mkb79' | ||
__author_email__ = '[email protected]' | ||
__license__ = 'AGPL' | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ aiohttp | |
beautifulsoup4 | ||
pbkdf2 | ||
Pillow | ||
pycrypto | ||
pyaes | ||
python-box | ||
requests | ||
rsa |