Metadata-Version: 2.1
Name: ganga
Version: 8.5.4
Summary: Job management tool
Home-page: https://github.com/ganga-devs/ganga
Author: Ganga Developers
Author-email: project-ganga-developers@cern.ch
License: GPL v2
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Programming Language :: Python :: 3.6
Provides-Extra: dev
Provides-Extra: profiler
Provides-Extra: LHCb
License-File: LICENSE_GPL

Ganga
=====

Ganga is a tool to compose, run and track computing jobs across a variety of backends and application types.

Installation
------------

Ganga can be installed using the standard Python tool ``pip`` with

.. code-block:: bash

    pip install ganga

Usage
-----

Ganga primarily runs as a command-line tool so can be started by just running

.. code-block:: bash

    ganga

Which will load an interactive IPython prompt at which you can type

.. code-block:: python

    j = Job()
    j.submit()
    j.peek('stdout')

to create a simple local job which runs an executable which simply prints some text to the stdout.

Documentation
-------------

[User guide and developer documentation](https://ganga.readthedocs.io/en/latest/index.html)


