Metadata-Version: 2.1
Name: blueqat-cloud
Version: 0.0.2
Summary: Blueqat cloud API
Home-page: UNKNOWN
Author: gyu-don
Author-email: kato@blueqat.com
License: Apache-2.0
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: blueqat (>=0.4.2)
Requires-Dist: braket-backend-blueqat (>=0.0.3)
Requires-Dist: amazon-braket-sdk (>=1.5.13)

# Blueqat cloud SDK (bqcloud)
Client SDK for Blueqat cloud.

# Handling API key
## Register API
```py
import bqcloud
api = bqcloud.register_api("Your API key here")
```

Your API key is stored to `$HOME/.bqcloud/api_key`.
If you don't want to save API key, use insteads following codes.

```py
import bqcloud
api = bqcloud.api.Api("Your API key here")
```

## Load API
Once API key is saved, the key can be loaded from file.

```py
import bqcloud
api = bqcloud.load_api()
```

# Annealing
```py
import bqcloud
api = bqcloud.load_api()
api.annealing([[-1, 0], [0, 0.5]], 5, 10)
```


