Metadata-Version: 2.1
Name: brim_cloud_client
Version: 1.0.0
Summary: BRIM cloud client
Author-email: Lance1o7 <10292888+Lance1o7@users.noreply.github.com>
Project-URL: Homepage, https://github.com/Lance1o7/brim-cloud-client
Project-URL: Bug Tracker, https://github.com/Lance1o7/brim-cloud-client/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# brim-cloud-client

BRIM Cloud Client is a minimal implementation of the REST interface used
to communicate with BRIM servers.

## Quick start

### Installation

```bash
pip install brim-cloud-client
```

### Usage - Solve a CNF file

```python
from BRIM import TMB


tmb_client = TMB(cm=0.9, cb=0.6, p='tmb', Rc=31000, C=49e-15, anneal=0.00011, seed=0)
tmb_client.print_neofetch() # print remote server information provided by neofetch
state, status, results = tmb_client.solve('../example/cust-u500-01.cnf')
print(state, status, results)

```
