This package interprets a .qasm 2.0 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:
oqi filename
Additionally if you want to see and run your circuit you can execute:
oqi filename d
Finally if you want to run your circuit n number of times you can specify the repetitions:
oqi filename d n
or
oqi filename n
In any case the output will include something of the form:
The results are: {'bits': numberOfMeasurements, ...}
Install it with the pip package manager:
pip install oqi
Custom errors:
Draw and run your circuits:
The token analyser and many other things needed in order to run the interpreter came from the qiskit repo. My contribution was to create the pip package and some wrapping in order to run their interpreter.