Metadata-Version: 2.2
Name: revl
Version: 0.2.0
Summary: Helps to benchmark code for Autodesk Maya
Home-page: https://github.com/christophercrouzet/revl
Author: Christopher Crouzet
Author-email: christopher.crouzet@gmail.com
License: MIT
Keywords: Autodesk Maya API benchmark test
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: coverage; extra == "dev"
Requires-Dist: sphinx>=1.3; extra == "dev"
Provides-Extra: docs
Requires-Dist: sphinx>=1.3; extra == "docs"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: provides-extra
Dynamic: summary

Revl
====

.. image:: https://img.shields.io/pypi/v/revl.svg
   :target: https://pypi.python.org/pypi/revl
   :alt: PyPI latest version

.. image:: https://readthedocs.org/projects/revl/badge/?version=latest
   :target: https://revl.readthedocs.io
   :alt: Documentation status

.. image:: https://img.shields.io/pypi/l/revl.svg
   :target: https://pypi.python.org/pypi/revl
   :alt: License


Revl is a Python library that helps to benchmark code for `Autodesk Maya`_.

Upon writing a piece of code for Maya, it might be interesting to know how it
performs **under different conditions**, such as within scenes that are large
or small, that define a deep DAG hiearchy or a flat one, that use many node
types or only a few, and so on.

Following sets of user-provided commands, Revl can **pseudo-randomly generate
Maya scenes** with different properties against which the behaviour of a piece
of code can be observed.

The random nature of the process can also help revealing potential bugs by
exposing edge cases that were not thought of, thus making it also a good tool
for **unit testing**. See `Wikipedia's Fuzzing page`_.

Note that Revl does *not* provide any sort of profiling tool to measure
performances. The built-in |timeit|_ module as well as other open-source
packages can be used for this purpose.


Features
--------

* generates scenes by running commands a given total number of times.
* fine control over the probability distribution for each command.
* scene generations are reproducible using a fixed seed.
* extensible with custom commands.
* allows for fuzz testing.
* fast (using Maya's API, not the command layer).


Usage
-----

.. code-block:: python

   >>> import revl
   >>> commands = [
   ...     (4.0, revl.createTransform,),
   ...     (1.0, revl.createPrimitive, (), {'parent': True}),
   ... ]
   >>> count = 100
   >>> revl.run(commands, count, seed=1.23)


In this example, Revl invokes a total of 100 evaluations inequally shared
between the two distinct commands provided, leading to create approximatively
80% of transforms, and 20% of primitives (plus their associated transforms).
Also, the primitive type is picked randomly, and each primitive's transform is
randomly parented under another transform from the scene, possibly creating a
scene with a deep DAG hierarchy.

See the `Tutorial`_ section from the documentation for more detailed examples
and explanations on how to use Revl.


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

Read the documentation online at `revl.readthedocs.io`_ or check its source in
the ``doc`` directory.


Out There
---------

Projects using Revl include:

* `bana <https://github.com/christophercrouzet/bana>`_


Author
------

Christopher Crouzet
<`christophercrouzet.com <https://christophercrouzet.com>`_>


.. |timeit| replace:: ``timeit``

.. _Autodesk Maya: http://www.autodesk.com/products/maya
.. _revl.readthedocs.io: https://revl.readthedocs.io
.. _timeit: https://docs.python.org/library/timeit.html
.. _Tutorial: https://revl.readthedocs.io/en/latest/tutorial.html
.. _Wikipedia's Fuzzing page: https://en.wikipedia.org/wiki/Fuzzing
