• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

libraw/H09-Jul-2017-1,7421,436

rawkit/H09-Jul-2017-1,3931,128

rawkit.egg-info/H03-May-2022-6048

tests/H09-Jul-2017-553355

.coveragercH A D05-Jul-2015640 3427

.pre-commit-config.yamlH A D22-Aug-2015424 1514

LICENSEH A D18-Aug-20151.1 KiB2217

MANIFEST.inH A D04-Jul-2015141 98

MakefileH A D08-Jul-20171.6 KiB7758

PKG-INFOH A D09-Jul-20172.3 KiB6048

README.rstH A D08-Jul-20151.1 KiB3726

setup.cfgH A D09-Jul-201767 85

setup.pyH A D08-Jul-20171.3 KiB4034

tox.iniH A D08-Jul-2017291 1412

README.rst

1rawkit
2======
3
4.. image:: https://badge.fury.io/py/rawkit.svg?
5  :alt: Package Status
6  :target: https://pypi.python.org/pypi/rawkit
7
8.. image:: https://readthedocs.org/projects/rawkit/badge/?version=latest
9   :alt: Docs Status
10   :target: https://rawkit.readthedocs.org/en/latest/
11
12.. image:: https://secure.travis-ci.org/photoshell/rawkit.svg?branch=master
13   :alt: Build Status
14   :target: https://travis-ci.org/photoshell/rawkit
15
16.. image:: https://img.shields.io/coveralls/photoshell/rawkit.svg?style=flat
17   :alt: Test Coverage Status
18   :target: https://coveralls.io/r/photoshell/rawkit
19
20``rawkit`` (pronounced `rocket`) is a ctypes-based LibRaw_ binding for
21Python inspired by the Wand_ API.
22
23.. sourcecode:: python
24
25    from rawkit.raw import Raw
26    from rawkit.options import WhiteBalance
27
28    with Raw(filename='some/raw/image.CR2') as raw:
29      raw.options.white_balance = WhiteBalance(camera=False, auto=True)
30      raw.save(filename='some/destination/image.ppm')
31
32for more info, see the docs_
33
34.. _LibRaw: http://www.libraw.org/
35.. _Wand: http://docs.wand-py.org
36.. _docs: https://rawkit.readthedocs.org/en/latest/
37