Metadata-Version: 2.0
Name: gazu
Version: 0.6.0
Summary: Gazu is a client for Zou, the API to store the data of your CG production.
Home-page: https://gazu.cg-wire.com/
Author: CG Wire
Author-email: frank@cg-wire.com
License: GNU Library or Lesser General Public License (LGPL)
Description-Content-Type: UNKNOWN
Keywords: cg,production,asset manager,asset,shot,tasks,tracking
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Multimedia :: Graphics
Requires-Dist: requests (==2.19.1)
Requires-Dist: deprecated (==1.1.0)
Provides-Extra: dev
Requires-Dist: wheel; extra == 'dev'
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: requests-mock; extra == 'test'

.. figure:: https://gazu.cg-wire.com/gazu.png
   :alt: Gazu Logo


Gazu, steroïds for your CG tools
================================

Gazu is a Python client that allows to fetch data easily from your CG
production environment (tasks, shots, assets, casting and dependencies).
More than giving access to data, it allows to perform operations like
generating file paths, marking a task as started, setting a thumbnail on
a shot and many more. To make it short, it will boost your pipeline
tools!

It is made to be used with the `Zou API <https://zou.cg-wire.com>`__. It
requires an up and running instance of Zou to run properly.

|Build status|

|Slackin badge|

Quickstart
----------

Install Gazu in your application environment via pip:

.. code:: bash

    pip install gazu

The client requires a few extra configuration before being used. It
needs to know where is located the API server and to log in:

.. code:: python

    import gazu

    gazu.set_host("https://zou-server-url")
    gazu.log_in("user@yourdomain.com", "password")

Let's finish with an example. Fetch all the open projects:

::

    projects = gazu.projects.open_projects()

Then jump to the `documentation <https://gazu.cg-wire.com>`__ to see
what features are available!

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

Documentation is available on a dedicated website:

`https://gazu.cg-wire.com/ <https://gazu.cg-wire.com>`__

Contributions
-------------

All contributions are welcome as long as they respect the `C4
contract <https://rfc.zeromq.org/spec:42/C4>`__.

Code must follow the pep8 convention.

Sponsors
~~~~~~~~

|Unit Image Logo|
|Les Fées Spéciales Logo|

About authors
-------------

Gazu is written by CG Wire, a company based in France. We help small to
midsize CG studios to manage their production and build pipeline
efficiently.

We apply software craftmanship principles as much as possible. We love
coding and consider that strong quality and good developer experience
matter a lot. Our extensive experience allows studios to get better at
doing software and focus more on the artistic work.

Visit `cg-wire.com <https://cg-wire.com>`__ for more information.

|CGWire Logo|

.. |Build status| image:: https://api.travis-ci.org/cgwire/gazu.svg?branch=master
   :target: https://travis-ci.org/cgwire/gazu
.. |Slackin badge| image:: https://slack.cg-wire.com/badge.svg
   :target: https://slack.cg-wire.com
.. |CGWire Logo| image:: https://gazu.cg-wire.com/cgwire.png
   :target: https://cg-wire.com
.. |Unit Image Logo| image:: https://www.cg-wire.com/images/logo-unit-image.png
   :target: https://www.unit-image.fr
.. |Les Fées Spéciales Logo| image:: https://www.cg-wire.com/images/logo-les-fees-speciales.png


