FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

pycryptodome & readme updates by grctest · Pull Request #17 · bitshares/python-bitshares · GitHub

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .md  (1) .py  (2) .txt  (2) All 3 file types selected
Only manifest files
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
29 changes: 26 additions & 3 deletions README.md
This file contains hidden or 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,4 +1,27 @@
Python Library for BitShares
========================
# Python Library for BitShares

*placeholder*
---

## Documentation

Visit the [pybitshares website](http://docs.pybitshares.com/en/latest/) for in depth documentation on this Python library.

## Installation

### Install with pip:
```
$ sudo apt-get install libffi-dev libssl-dev python-dev python-dev3
$ pip3 install bitshares
```

### Manual installation:
```
$ git clone https://github.com/xeroc/python-bitshares/
$ cd python-bitshares
$ python3 setup.py install --user
```

### Upgrade
```
$ pip3 install --user --upgrade
```
2 changes: 1 addition & 1 deletion bitsharesbase/memo.py
This file contains hidden or 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
Expand Up @@ -4,7 +4,7 @@
try:
from Crypto.Cipher import AES
except ImportError:
raise ImportError("Missing dependency: pycrypto")
raise ImportError("Missing dependency: pycryptodome")
from .account import PrivateKey, PublicKey
import struct

Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
This file contains hidden or 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,5 +1,5 @@
graphenelib
bitshares
autobahn>=0.14
pycrypto==2.6.1
appdirs==1.4.0
pycryptodome==3.4.6
appdirs==1.4.0
4 changes: 2 additions & 2 deletions requirements-test.txt
This file contains hidden or 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 @@
graphenelib
pycrypto==2.6.1
pycryptodome==3.4.6
scrypt==0.7.1
Events==0.2.2
pyyaml
pytest
coverage
coverage
2 changes: 1 addition & 1 deletion setup.py
This file contains hidden or 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
Expand Up @@ -45,7 +45,7 @@
"appdirs",
"Events",
"scrypt",
"pycrypto", # for AES, installed through graphenelib already
"pycryptodome", # for AES, installed through graphenelib already
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
Expand Down

Back | FazBrowse Home | New Git URL