feat: renamed Crx to crx. Added proxy support. Minor code improvements.

This commit is contained in:
Rick Rongen
2022-07-01 11:28:27 +02:00
parent 25bee5ee07
commit 305c1c9b31
10 changed files with 33 additions and 19 deletions

7
crx/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
from .connection import Connection, CrxException, CrxNodeNotFound, CrxCantDeleteAsset
from .simplenode import SimpleNode
from .util import get_simple_con
__version__ = (1, 0, 0, 0)
__all__ = ["Connection", "CrxException", "CrxNodeNotFound", "SimpleNode", "get_simple_con", "CrxCantDeleteAsset"]