Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
beem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
beem
Commits
b19aae1a
Commit
b19aae1a
authored
7 years ago
by
grcgrc
Browse files
Options
Downloads
Patches
Plain Diff
pycryptodome & readme updates
pycrypto has been depreciated & replaced with pycryptodome.
parent
617959f2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
README.md
+26
-3
26 additions, 3 deletions
README.md
bitsharesbase/memo.py
+1
-1
1 addition, 1 deletion
bitsharesbase/memo.py
docs/requirements.txt
+2
-2
2 additions, 2 deletions
docs/requirements.txt
requirements-test.txt
+2
-2
2 additions, 2 deletions
requirements-test.txt
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
32 additions
and
9 deletions
README.md
+
26
−
3
View file @
b19aae1a
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
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
bitsharesbase/memo.py
+
1
−
1
View file @
b19aae1a
...
...
@@ -4,7 +4,7 @@ from binascii import hexlify, unhexlify
try
:
from
Crypto.Cipher
import
AES
except
ImportError
:
raise
ImportError
(
"
Missing dependency: pycrypto
"
)
raise
ImportError
(
"
Missing dependency: pycrypto
dome
"
)
from
.account
import
PrivateKey
,
PublicKey
import
struct
...
...
This diff is collapsed.
Click to expand it.
docs/requirements.txt
+
2
−
2
View file @
b19aae1a
graphenelib
bitshares
autobahn>=0.14
pycrypto
==2.6.1
appdirs==1.4.0
pycrypto
dome==3.4.6
appdirs==1.4.0
\ No newline at end of file
This diff is collapsed.
Click to expand it.
requirements-test.txt
+
2
−
2
View file @
b19aae1a
graphenelib
pycrypto
==2.6.1
pycrypto
dome==3.4.6
scrypt==0.7.1
Events==0.2.2
pyyaml
pytest
coverage
coverage
\ No newline at end of file
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
b19aae1a
...
...
@@ -45,7 +45,7 @@ setup(
"
appdirs
"
,
"
Events
"
,
"
scrypt
"
,
"
pycrypto
"
,
# for AES, installed through graphenelib already
"
pycrypto
dome
"
,
# for AES, installed through graphenelib already
],
setup_requires
=
[
'
pytest-runner
'
],
tests_require
=
[
'
pytest
'
],
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment