Metadata-Version: 1.0
Name: PySpotCam
Version: 1.0.1
Summary: Interface to the SpotCam driver.
Home-page: http://packages.python.org/PySpotCam/
Author: Pierre Cladé
Author-email: pierre.clade@spectro.jussieu.fr
License: This software can be used under one of the following two licenses: (1) The BSD license. (2) Any other license, as long as it is obtained from the original author.
Description: Overview
        ========
        
        This module provides a Python interface to the SpotCam driver from `SPOT Imaging Solutions`_
        
        Installation
        ============
        
        You need to install the driver from `SPOT Imaging Solutions`_.
        
        To install PySpotCam, download the `package`_ and run the command ::
        
           python setup.py install
        
        You can also directly **move** the `PySpotCam` directory to a location
        that Python can import from (directory in which scripts 
        using `PySpotCam` are run, etc.)
        
        Usage
        =====
        
        Here is a small example ::
        
            from PySpotCam.spot import SpotClass
        
            Spot = SpotClass()
        
            Spot.BitDepth = max(Spot.BitDepths) # Set the BitDepth to the max value
            Spot.ExternalTriggerMode = 1
            Spot.SetExposure(gain=1, time=2)
        
            image = Spot.GetImage()
        
            print Spot.VersionInfo2
        
        Almost all the functions described in the SPOTCam API are implemented.
        
        History
        =======
        
        1.0.0 : Initial release
        1.0.1 : Error in the SetExposure method corrected
        
        Contact
        =======
        
        Please send bug reports or feedback to `Pierre Cladé`_.
        
        .. _SPOT Imaging Solutions: http://www.spotimaging.com/
        .. _package: http://pypi.python.org/pypi/PySpotCam/
        .. _Pierre Cladé: mailto:pierre.clade@spectro.jussieu.fr
        
Keywords: SpotCam,SPOT Imaging Solutions,Camera
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
