Metadata-Version: 2.1
Name: pyjano
Version: 1.1.0
Summary: Python JANA2 Orchestrator
Author: Dmitry Romanov
Author-email: romanovda@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

:# 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. 

**Install**

```bash
python3 -m pip install pyjano    # use --user for user level install
```

Simple configuration

```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()
```

Custom executable

