Metadata-Version: 2.1
Name: oqi
Version: 1.0.2
Summary: Open Qasm interpreter.
Home-page: https://github.com/mentesniker/OpenQasmInterpreter
Author: Luis Mtz.
Author-email: mentesniker@gmail.com
License: MIT
Download-URL: https://pypi.org/project/oqi/
Keywords: OpenQasm,QuantumComputing,QuantumSimulator
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: qiskit

# OpenQasmInterpreter (oqi)

This package interprets a .qasm file and then outputs the results to the console. All of the executions are made using the qasm simulator. Moreover you can specify different options to run your circuit. 

To just run your .qasm file you'll have to run:

```{r test-python, engine='bash'}
oqi filename
```

Additionally if you want to see and run your circuit you can execute:
```{r test-python, engine='bash'}
oqi filename d
```

Finally if you want to run your circuit **n** number of times you can specify the repetitions:
```{r test-python, engine='bash'}
oqi filename d n
```
or
```{r test-python, engine='bash'}
oqi filename n
```

In any case the output will include something of the form:
```{r test-python, engine='bash'}
The results are: {'bits': numberOfMeasurements, ...}
```

### v1.0.0
    * oqi now has the functionality to draw and run circuits especified in a .qasm file
### v1.0.1
    * Removed unused imports
### v1.0.2
    * Added config to run from command line

