├── .github └── workflows │ ├── make_wheel.yml │ └── validate.yml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS ├── LICENSE ├── README.md ├── doc-ima └── sn.png ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── conf.py │ ├── e3dc.rst │ └── index.rst ├── e3dc ├── _RSCPEncryptDecrypt.py ├── __init__.py ├── _e3dc.py ├── _e3dc_rscp_local.py ├── _e3dc_rscp_web.py ├── _rscpLib.py ├── _rscpTags.py └── py.typed ├── pyproject.toml └── tools ├── README.md ├── convert_rscp_tags.py ├── testcontainers.py ├── tests.py └── validate.sh /.github/workflows/make_wheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/.github/workflows/make_wheel.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/README.md -------------------------------------------------------------------------------- /doc-ima/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/doc-ima/sn.png -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/e3dc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/docs/source/e3dc.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /e3dc/_RSCPEncryptDecrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/e3dc/_RSCPEncryptDecrypt.py -------------------------------------------------------------------------------- /e3dc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/e3dc/__init__.py -------------------------------------------------------------------------------- /e3dc/_e3dc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/e3dc/_e3dc.py -------------------------------------------------------------------------------- /e3dc/_e3dc_rscp_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/e3dc/_e3dc_rscp_local.py -------------------------------------------------------------------------------- /e3dc/_e3dc_rscp_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/e3dc/_e3dc_rscp_web.py -------------------------------------------------------------------------------- /e3dc/_rscpLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/e3dc/_rscpLib.py -------------------------------------------------------------------------------- /e3dc/_rscpTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/e3dc/_rscpTags.py -------------------------------------------------------------------------------- /e3dc/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/convert_rscp_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/tools/convert_rscp_tags.py -------------------------------------------------------------------------------- /tools/testcontainers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/tools/testcontainers.py -------------------------------------------------------------------------------- /tools/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/tools/tests.py -------------------------------------------------------------------------------- /tools/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsantini/python-e3dc/HEAD/tools/validate.sh --------------------------------------------------------------------------------