├── .bumpversion.cfg ├── .flake8 ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── cqc ├── MessageHandler.py ├── Protocol.py ├── __init__.py ├── cqcHeader.py ├── entInfoHeader.py ├── hostConfig.py ├── pythonLib │ ├── __init__.py │ ├── cqc_connection.py │ ├── cqc_handler.py │ ├── cqc_mix.py │ ├── cqc_to_file.py │ ├── qubit.py │ └── util.py ├── pythonLib_protocols │ ├── __init__.py │ ├── coinflip_leader.py │ ├── measurements.py │ └── wstate.py └── util.py ├── docs ├── CQCToFile.rst ├── Makefile ├── README.md ├── Using CQCMix.rst ├── api.rst ├── classical_communication.rst ├── conf.py ├── examples.rst ├── extend_ghz.rst ├── figs │ ├── bfc_circuit.png │ └── servers.png ├── index.rst ├── installation.rst ├── interface.rst ├── make.bat ├── modules │ ├── MessageHandler.rst │ ├── Protocol.rst │ ├── cqcHeader.rst │ ├── entInfoHeader.rst │ ├── hostConfig.rst │ └── pythonLib.rst ├── qber.rst ├── requirements.txt ├── teleport.rst ├── usage.rst └── useful_commands.rst ├── examples ├── python │ └── hello_noLib │ │ ├── README.txt │ │ ├── aliceTest.py │ │ └── run.sh └── pythonLib │ ├── QBER │ ├── README.txt │ ├── aliceTest.py │ ├── bobTest.py │ └── run.sh │ ├── butterfly │ ├── node_R1.py │ ├── node_R2.py │ ├── node_S1.py │ ├── node_S2.py │ ├── node_T1.py │ ├── node_T2.py │ └── run.sh │ ├── coinflipLeader │ ├── README.txt │ ├── fourPartyCoinFlip.py │ └── nPartyCoinFlip.py │ ├── corrRNG │ ├── README.txt │ ├── aliceTest.py │ ├── bobTest.py │ └── run.sh │ ├── extendGHZ │ ├── README.txt │ ├── aliceTest.py │ ├── bobTest.py │ ├── charlieTest.py │ └── run.sh │ ├── hello │ ├── README.txt │ ├── aliceTest.py │ └── run.sh │ ├── programming_q_network │ ├── README.txt │ ├── aliceTest.py │ ├── bobTest.py │ ├── eveTest.py │ └── run_example.sh │ ├── quantum_number_generation │ ├── README.md │ └── quantum_number_generation.py │ ├── teleport │ ├── README.txt │ ├── aliceTest.py │ ├── bobTest.py │ └── run.sh │ └── wstate │ ├── README.txt │ ├── additional_functions.py │ ├── default_Wstate_receiver.py │ ├── default_Wstate_transmitter.py │ └── run.sh ├── requirements.txt ├── setup.py ├── test_requirements.txt └── tests ├── conftest.py ├── test_CQCToFile.py ├── test_cases_cqcconnection ├── cqc_mix.py └── flush.py ├── test_cqcconnection.py └── utilities.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include requirements.txt 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/README.md -------------------------------------------------------------------------------- /cqc/MessageHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/MessageHandler.py -------------------------------------------------------------------------------- /cqc/Protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/Protocol.py -------------------------------------------------------------------------------- /cqc/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.2.3' 2 | -------------------------------------------------------------------------------- /cqc/cqcHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/cqcHeader.py -------------------------------------------------------------------------------- /cqc/entInfoHeader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/entInfoHeader.py -------------------------------------------------------------------------------- /cqc/hostConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/hostConfig.py -------------------------------------------------------------------------------- /cqc/pythonLib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/pythonLib/__init__.py -------------------------------------------------------------------------------- /cqc/pythonLib/cqc_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/pythonLib/cqc_connection.py -------------------------------------------------------------------------------- /cqc/pythonLib/cqc_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/pythonLib/cqc_handler.py -------------------------------------------------------------------------------- /cqc/pythonLib/cqc_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/pythonLib/cqc_mix.py -------------------------------------------------------------------------------- /cqc/pythonLib/cqc_to_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/pythonLib/cqc_to_file.py -------------------------------------------------------------------------------- /cqc/pythonLib/qubit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/pythonLib/qubit.py -------------------------------------------------------------------------------- /cqc/pythonLib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/pythonLib/util.py -------------------------------------------------------------------------------- /cqc/pythonLib_protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cqc/pythonLib_protocols/coinflip_leader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/pythonLib_protocols/coinflip_leader.py -------------------------------------------------------------------------------- /cqc/pythonLib_protocols/measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/pythonLib_protocols/measurements.py -------------------------------------------------------------------------------- /cqc/pythonLib_protocols/wstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/pythonLib_protocols/wstate.py -------------------------------------------------------------------------------- /cqc/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/cqc/util.py -------------------------------------------------------------------------------- /docs/CQCToFile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/CQCToFile.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Using CQCMix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/Using CQCMix.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/classical_communication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/classical_communication.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/extend_ghz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/extend_ghz.rst -------------------------------------------------------------------------------- /docs/figs/bfc_circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/figs/bfc_circuit.png -------------------------------------------------------------------------------- /docs/figs/servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/figs/servers.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/interface.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules/MessageHandler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/modules/MessageHandler.rst -------------------------------------------------------------------------------- /docs/modules/Protocol.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/modules/Protocol.rst -------------------------------------------------------------------------------- /docs/modules/cqcHeader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/modules/cqcHeader.rst -------------------------------------------------------------------------------- /docs/modules/entInfoHeader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/modules/entInfoHeader.rst -------------------------------------------------------------------------------- /docs/modules/hostConfig.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/modules/hostConfig.rst -------------------------------------------------------------------------------- /docs/modules/pythonLib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/modules/pythonLib.rst -------------------------------------------------------------------------------- /docs/qber.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/qber.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/teleport.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/teleport.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /docs/useful_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/docs/useful_commands.rst -------------------------------------------------------------------------------- /examples/python/hello_noLib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/python/hello_noLib/README.txt -------------------------------------------------------------------------------- /examples/python/hello_noLib/aliceTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/python/hello_noLib/aliceTest.py -------------------------------------------------------------------------------- /examples/python/hello_noLib/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | python3 aliceTest.py & 4 | -------------------------------------------------------------------------------- /examples/pythonLib/QBER/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/QBER/README.txt -------------------------------------------------------------------------------- /examples/pythonLib/QBER/aliceTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/QBER/aliceTest.py -------------------------------------------------------------------------------- /examples/pythonLib/QBER/bobTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/QBER/bobTest.py -------------------------------------------------------------------------------- /examples/pythonLib/QBER/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/QBER/run.sh -------------------------------------------------------------------------------- /examples/pythonLib/butterfly/node_R1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/butterfly/node_R1.py -------------------------------------------------------------------------------- /examples/pythonLib/butterfly/node_R2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/butterfly/node_R2.py -------------------------------------------------------------------------------- /examples/pythonLib/butterfly/node_S1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/butterfly/node_S1.py -------------------------------------------------------------------------------- /examples/pythonLib/butterfly/node_S2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/butterfly/node_S2.py -------------------------------------------------------------------------------- /examples/pythonLib/butterfly/node_T1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/butterfly/node_T1.py -------------------------------------------------------------------------------- /examples/pythonLib/butterfly/node_T2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/butterfly/node_T2.py -------------------------------------------------------------------------------- /examples/pythonLib/butterfly/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/butterfly/run.sh -------------------------------------------------------------------------------- /examples/pythonLib/coinflipLeader/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/coinflipLeader/README.txt -------------------------------------------------------------------------------- /examples/pythonLib/coinflipLeader/fourPartyCoinFlip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/coinflipLeader/fourPartyCoinFlip.py -------------------------------------------------------------------------------- /examples/pythonLib/coinflipLeader/nPartyCoinFlip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/coinflipLeader/nPartyCoinFlip.py -------------------------------------------------------------------------------- /examples/pythonLib/corrRNG/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/corrRNG/README.txt -------------------------------------------------------------------------------- /examples/pythonLib/corrRNG/aliceTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/corrRNG/aliceTest.py -------------------------------------------------------------------------------- /examples/pythonLib/corrRNG/bobTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/corrRNG/bobTest.py -------------------------------------------------------------------------------- /examples/pythonLib/corrRNG/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/corrRNG/run.sh -------------------------------------------------------------------------------- /examples/pythonLib/extendGHZ/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/extendGHZ/README.txt -------------------------------------------------------------------------------- /examples/pythonLib/extendGHZ/aliceTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/extendGHZ/aliceTest.py -------------------------------------------------------------------------------- /examples/pythonLib/extendGHZ/bobTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/extendGHZ/bobTest.py -------------------------------------------------------------------------------- /examples/pythonLib/extendGHZ/charlieTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/extendGHZ/charlieTest.py -------------------------------------------------------------------------------- /examples/pythonLib/extendGHZ/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/extendGHZ/run.sh -------------------------------------------------------------------------------- /examples/pythonLib/hello/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/hello/README.txt -------------------------------------------------------------------------------- /examples/pythonLib/hello/aliceTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/hello/aliceTest.py -------------------------------------------------------------------------------- /examples/pythonLib/hello/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | python3 aliceTest.py & 4 | -------------------------------------------------------------------------------- /examples/pythonLib/programming_q_network/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/programming_q_network/README.txt -------------------------------------------------------------------------------- /examples/pythonLib/programming_q_network/aliceTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/programming_q_network/aliceTest.py -------------------------------------------------------------------------------- /examples/pythonLib/programming_q_network/bobTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/programming_q_network/bobTest.py -------------------------------------------------------------------------------- /examples/pythonLib/programming_q_network/eveTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/programming_q_network/eveTest.py -------------------------------------------------------------------------------- /examples/pythonLib/programming_q_network/run_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/programming_q_network/run_example.sh -------------------------------------------------------------------------------- /examples/pythonLib/quantum_number_generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/quantum_number_generation/README.md -------------------------------------------------------------------------------- /examples/pythonLib/quantum_number_generation/quantum_number_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/quantum_number_generation/quantum_number_generation.py -------------------------------------------------------------------------------- /examples/pythonLib/teleport/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/teleport/README.txt -------------------------------------------------------------------------------- /examples/pythonLib/teleport/aliceTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/teleport/aliceTest.py -------------------------------------------------------------------------------- /examples/pythonLib/teleport/bobTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/teleport/bobTest.py -------------------------------------------------------------------------------- /examples/pythonLib/teleport/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/teleport/run.sh -------------------------------------------------------------------------------- /examples/pythonLib/wstate/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/wstate/README.txt -------------------------------------------------------------------------------- /examples/pythonLib/wstate/additional_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/wstate/additional_functions.py -------------------------------------------------------------------------------- /examples/pythonLib/wstate/default_Wstate_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/wstate/default_Wstate_receiver.py -------------------------------------------------------------------------------- /examples/pythonLib/wstate/default_Wstate_transmitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/wstate/default_Wstate_transmitter.py -------------------------------------------------------------------------------- /examples/pythonLib/wstate/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/examples/pythonLib/wstate/run.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/setup.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/test_requirements.txt -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_CQCToFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/tests/test_CQCToFile.py -------------------------------------------------------------------------------- /tests/test_cases_cqcconnection/cqc_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/tests/test_cases_cqcconnection/cqc_mix.py -------------------------------------------------------------------------------- /tests/test_cases_cqcconnection/flush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/tests/test_cases_cqcconnection/flush.py -------------------------------------------------------------------------------- /tests/test_cqcconnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/tests/test_cqcconnection.py -------------------------------------------------------------------------------- /tests/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareQuTech/CQC-Python/HEAD/tests/utilities.py --------------------------------------------------------------------------------