Metadata-Version: 2.4
Name: gphoto2-cffi
Version: 0.4.2
Summary: libgphoto2 bindings with an interface that strives to be idiomatic
Home-page: http://github.com/jbaiter/gphoto2-cffi.git
Author: Johannes Baiter
Author-email: johannes.baiter@gmail.com
License: LGPLv3
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
License-File: LICENSE
Requires-Dist: cffi>=1.4
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

gphoto2-cffi
============

Python bindings for `libgphoto2`_ with an interface that strives to be
idiomatic. In contrast to other bindings for Python, gphoto2-cffi hides most
of the lower-level abstractions and reduces the API surface while still
offering access to most of the library's features.

.. code:: python

    import gphoto2cffi as gp

    # List all attached cameras that are supported
    cams = gp.list_cameras()

    # Get a camera instance by specifying a USB bus and device number
    my_cam = gp.Camera(bus=4, device=1)

    # Get an instance for the first supported camera
    my_cam = gp.Camera()
    # or
    my_cam = next(gp.list_cameras())

    # Capture an image to the camera's RAM and get its data
    imgdata = my_cam.capture()

    # Grab a preview from the camera
    previewdata = my_cam.get_preview()

    # Get a list of files on the camera
    files = tuple(my_cam.list_all_files())

    # Iterate over a file's content
    with open("image.jpg", "wb") as fp:
        for chunk in my_cam.files[0].iter_data():
            fp.write(chunk)

    # Get a configuration value
    image_quality = my_cam.config['capturesettings']['imagequality'].value
    # Set a configuration value
    my_cam.config['capturesettings']['imagequality'].set("JPEG Fine")

Python 2.7 and 3.4 or newer (CPython and PyPy) are supported.

.. _libgphoto2: http://www.gphoto.org/proj/libgphoto2/
.. _PyPy: http://pypy.org/
.. _cffi: https://cffi.readthedocs.org/

Requirements
------------

* libgphoto2 with development headers
* A working C compiler
* cffi

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

From Source::

    $ pip install git+https://github.com/jbaiter/gphoto2-cffi.git

Similar projects
----------------

* `piggyphoto <https://github.com/alexdu/piggyphoto>`_: Uses ctypes
* `python-gphoto2 <https://github.com/jim-easterbrook/python-gphoto2>`_: Uses SWIG
