Metadata-Version: 2.1
Name: oqi
Version: 1.0.3
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/
Description: # OpenQasmInterpreter (oqi)
        
        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:
        
        ```{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, ...}
        ```
        
        ## Installation
        Install it with the pip package manager:
        ```{r test-python, engine='bash'}
        pip install oqi
        ```
        
        ## Acknowledgements
        
        The token analyser as well as many other things needed in order to run the interpreter came from the [qiskit repo](https://github.com/Qiskit). My contribution was to create the pip package and some wrapping in order to run the interpreter.
        
        
        ### 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
        ### v1.0.3
            * Added qiskit requirement due to compatibility problems
Keywords: OpenQasm,QuantumComputing,QuantumSimulator
Platform: UNKNOWN
Description-Content-Type: text/markdown
