Metadata-Version: 2.1
Name: qclient
Version: 1.0.3
Summary: Client for executing quantum applications on qserver instances
Home-page: https://github.com/ax1/qclient_py
Author: ax1
Author-email: 
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/ax1/qclient_py/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# qclient

## Install

```sh
pip install qclient
```

## Usage

```python
import qclient
from sys import argv

#qclient.configure({ 'server': 'http://localhost:8080' })
token = 'YOUR_TOKEN' if len(argv) < 2 else argv[1]
qclient.configure({'token': token, 'server': 'http://localhost:8080'})

# [optional] display file to be executed
print(qclient.get('bell'))  # default extension
# print(qclient.get('bell.qasm')) # explicit extension

# execute and return
print('Executing...')
print(qclient.execute('bell'))
```

