https://github.com/storborg/sonypy
Python module for Sony Camera Remote API
https://github.com/storborg/sonypy
Last synced: 7 months ago
JSON representation
Python module for Sony Camera Remote API
- Host: GitHub
- URL: https://github.com/storborg/sonypy
- Owner: storborg
- License: other
- Created: 2013-12-24T01:11:10.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-12-24T01:16:13.000Z (over 12 years ago)
- Last Synced: 2025-04-11T13:54:12.884Z (about 1 year ago)
- Language: Python
- Size: 105 KB
- Stars: 61
- Watchers: 11
- Forks: 26
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES
- License: LICENSE
Awesome Lists containing this project
- awesome-OpenSourcePhotography - SonyPy - Python module for Sony Camera Remote API. (Libraries / Sony)
README
SonyPy - Implements the Sony Camera Remote API
==============================================
Scott Torborg - `Cart Logic `_
Installation
============
Install with pip::
$ pip install sonypy
Quick Start
===========
1. Install ``sonypy``.
2. Enable remote control over Wifi on your camera.
3. Connect your computer to the wifi network hosted by the camera.
4. Open a Python shell.
Now you can start playing::
>>> from sonypy import Discoverer, Camera
First try to connect to a camera::
>>> discoverer = Discoverer()
>>> cameras = discoverer.discover()
>>> cameras
[, ]
Take a shot with current settings::
>>> cam = cameras[0]
>>> cam.act_take_picture()
License
=======
SonyPy is licensed under an MIT license. Please see the LICENSE file for more
information.