Skip to content

Commit 6d74b69

Browse files
committed
Update docs
1 parent fcc2da8 commit 6d74b69

File tree

7 files changed

+20
-2
lines changed

7 files changed

+20
-2
lines changed

docs/requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ babel==2.10.3 ; python_version >= "3.7" and python_version < "4.0"
55
black==22.8.0 ; python_version >= "3.7" and python_version < "4.0"
66
blockfrost-python==0.5.1 ; python_version >= "3.7" and python_version < "4"
77
cbor2==5.4.3 ; python_version >= "3.7" and python_version < "4.0"
8-
certifi==2022.6.15.2 ; python_version >= "3.7" and python_version < "4"
8+
certifi==2022.9.14 ; python_version >= "3.7" and python_version < "4"
99
certvalidator==0.11.1 ; python_version >= "3.7" and python_version < "4.0"
1010
cffi==1.15.1 ; python_version >= "3.7" and python_version < "4.0"
1111
charset-normalizer==2.1.1 ; python_version >= "3.7" and python_version < "4"
@@ -17,6 +17,7 @@ cryptography==38.0.1 ; python_version >= "3.7" and python_version < "4.0"
1717
decorator==5.1.1 ; python_version >= "3.7" and python_version < "4.0"
1818
docutils==0.17.1 ; python_version >= "3.7" and python_version < "4.0"
1919
ecdsa==0.18.0 ; python_version >= "3.7" and python_version < "4.0"
20+
ecpy==1.2.5 ; python_version >= "3.7" and python_version < "4.0"
2021
execnet==1.9.0 ; python_version >= "3.7" and python_version < "4.0"
2122
flake8==4.0.1 ; python_version >= "3.7" and python_version < "4.0"
2223
flask==2.2.2 ; python_version >= "3.7" and python_version < "4.0"
@@ -29,6 +30,7 @@ itsdangerous==2.1.2 ; python_version >= "3.7" and python_version < "4.0"
2930
jinja2==3.1.2 ; python_version >= "3.7" and python_version < "4.0"
3031
markupsafe==2.1.1 ; python_version >= "3.7" and python_version < "4.0"
3132
mccabe==0.6.1 ; python_version >= "3.7" and python_version < "4.0"
33+
mnemonic==0.20 ; python_version >= "3.7" and python_version < "4.0"
3234
mypy-extensions==0.4.3 ; python_version >= "3.7" and python_version < "4.0"
3335
oscrypto==1.3.0 ; python_version >= "3.7" and python_version < "4.0"
3436
packaging==21.3 ; python_version >= "3.7" and python_version < "4.0"
@@ -50,7 +52,6 @@ pytest==7.1.3 ; python_version >= "3.7" and python_version < "4.0"
5052
pytz==2022.2.1 ; python_version >= "3.7" and python_version < "4.0"
5153
requests==2.28.1 ; python_version >= "3.7" and python_version < "4"
5254
retry==0.9.2 ; python_version >= "3.7" and python_version < "4.0"
53-
setuptools==65.3.0 ; python_version >= "3.7" and python_version < "4.0"
5455
six==1.16.0 ; python_version >= "3.7" and python_version < "4.0"
5556
snowballstemmer==2.2.0 ; python_version >= "3.7" and python_version < "4.0"
5657
sphinx-copybutton==0.5.0 ; python_version >= "3.7" and python_version < "4.0"

docs/source/api/pycardano.cip.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
CIP
22
=====================
33

4+
Implementation of Cardano Improvement Proposals (CIPs)
5+
46
.. automodule:: pycardano.cip.cip8
57
:members:
68
:undoc-members:

docs/source/api/pycardano.crypto.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Crypto
2+
=============================
3+
A module that contains cryptographic functions.
4+
5+
.. automodule:: pycardano.crypto.bip32
6+
:members:
7+
:undoc-members:
8+
:show-inheritance:

docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ making it a light-weight library that is easy and fast to set up in all kinds of
3535
api/pycardano.backend.base
3636
api/pycardano.certificate
3737
api/pycardano.cip
38+
api/pycardano.crypto
3839
api/pycardano.coinselection
3940
api/pycardano.exception
4041
api/pycardano.hash

pycardano/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from .certificate import *
66
from .cip import *
77
from .coinselection import *
8+
from .crypto import *
89
from .exception import *
910
from .hash import *
1011
from .key import *

pycardano/crypto/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# flake8: noqa
2+
3+
from .bip32 import *

pycardano/crypto/bip32.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
from mnemonic import Mnemonic
1717
from nacl import bindings
1818

19+
__all__ = ["BIP32ED25519PrivateKey", "BIP32ED25519PublicKey", "HDWallet"]
20+
1921

2022
class BIP32ED25519PrivateKey:
2123
def __init__(self, private_key: bytes, chain_code: bytes):

0 commit comments

Comments
 (0)