├── LICENSE ├── README.md ├── examples ├── Batch_Example.ipynb ├── generic_batch.py ├── generic_batch_file.py ├── mm_interactive.py ├── mti_interactive.py ├── sr_interactive.py └── sr_interactive_file.py ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── src └── skr_web_api ├── __init__.py └── casauth.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/README.md -------------------------------------------------------------------------------- /examples/Batch_Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/examples/Batch_Example.ipynb -------------------------------------------------------------------------------- /examples/generic_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/examples/generic_batch.py -------------------------------------------------------------------------------- /examples/generic_batch_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/examples/generic_batch_file.py -------------------------------------------------------------------------------- /examples/mm_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/examples/mm_interactive.py -------------------------------------------------------------------------------- /examples/mti_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/examples/mti_interactive.py -------------------------------------------------------------------------------- /examples/sr_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/examples/sr_interactive.py -------------------------------------------------------------------------------- /examples/sr_interactive_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/examples/sr_interactive_file.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/skr_web_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/src/skr_web_api/__init__.py -------------------------------------------------------------------------------- /src/skr_web_api/casauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LHNCBC/skr_web_python_api/HEAD/src/skr_web_api/casauth.py --------------------------------------------------------------------------------