Metadata-Version: 2.1
Name: rawkit
Version: 0.6.0
Summary: CTypes based LibRaw bindings
Home-page: https://rawkit.readthedocs.org
Author: Cameron Paul, Sam Whited
Author-email: cpaul37@gmail.com
Maintainer: Cameron Paul, Sam Whited
Maintainer-email: sam@samwhited.com
Keywords: encoding,images,photography,libraw,raw,photos
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides-Extra: doc
License-File: LICENSE

rawkit
======

.. image:: https://badge.fury.io/py/rawkit.svg?
  :alt: Package Status
  :target: https://pypi.python.org/pypi/rawkit

.. image:: https://readthedocs.org/projects/rawkit/badge/?version=latest
   :alt: Docs Status
   :target: https://rawkit.readthedocs.org/en/latest/

.. image:: https://secure.travis-ci.org/photoshell/rawkit.svg?branch=master
   :alt: Build Status
   :target: https://travis-ci.org/photoshell/rawkit

.. image:: https://img.shields.io/coveralls/photoshell/rawkit.svg?style=flat
   :alt: Test Coverage Status
   :target: https://coveralls.io/r/photoshell/rawkit

``rawkit`` (pronounced `rocket`) is a ctypes-based LibRaw_ binding for
Python inspired by the Wand_ API.

.. sourcecode:: python

    from rawkit.raw import Raw
    from rawkit.options import WhiteBalance

    with Raw(filename='some/raw/image.CR2') as raw:
      raw.options.white_balance = WhiteBalance(camera=False, auto=True)
      raw.save(filename='some/destination/image.ppm')

for more info, see the docs_

.. _LibRaw: http://www.libraw.org/
.. _Wand: http://docs.wand-py.org
.. _docs: https://rawkit.readthedocs.org/en/latest/
