Metadata-Version: 2.1
Name: pyjano
Version: 0.3.5
Summary: JANA2 api and control through python
Home-page: https://gitlab.com/eic/janapy
Author: Dmitry Romanov
Author-email: romanov@jlab.org
License: MIT
Description: # pyjano
        
        
        ![Pyjano](logo.png) 
        
        Pyjano stands for **Py**thon **Jan**a **O**rchestrator. Python wrapper over 
        [jana2](https://github.com/JeffersonLab/JANA2) framework to make configuration
         and running convenient. 
        
        
        ```bash
        pip install pyjano
        ```
        
        Usage:
        
        ```python
        from pyjano.jana import Jana
        jana = Jana()
        
        # Plugins configuration 
        jana.plugin('beagle_reader')\
            .plugin('vmeson')\
            .plugin('event_writer')\
            .plugin('jana', nevents=10000, output='beagle.root')\
            .source('../data/beagle_eD.txt')
        
        # Run
        jana.run()
        ```
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
