Metadata-Version: 2.1
Name: leicacam
Version: 0.3.0
Summary: Control Leica microscopes with python
Home-page: https://github.com/arve0/leicacam
Author: Arve Seljebu
Author-email: arve.seljebu@gmail.com
License: MIT
Description: # leicacam
        
        [![build-status-image]][travis]
        [![pypi-version]][pypi]
        [![wheel]][pypi]
        
        ## Overview
        
        Control Leica microscopes with python
        
        ## Installation
        
        Install using `pip`:
        
        ```bash
        pip install leicacam
        ```
        Install version using asyncio. This requires Python 3.5+:
        ```bash
        pip3 install leicacam[asyncio]
        ```
        
        ## Example
        
        **communicate with microscope**
        ```python
        from leicacam import CAM
        
        cam = CAM()   # initiate and connect, default localhost:8895
        
        # some commands are created as short hands
        # start matrix scan
        response = cam.start_scan()
        print(response)
        
        # but you could also create your own command with a list of tuples
        command = [('cmd', 'enableall'),
                   ('value', 'true')]
        response = cam.send(command)
        print(response)
        
        # or even send it as a bytes string (note the b)
        command = b'/cmd:enableall /value:true'
        response = cam.send(command)
        print(response)
        ```
        
        ## Documentation
        
        See available commands in the API reference: http://leicacam.rtfd.org.
        
        ## Development
        Install dependencies and link development version of leicacam to pip:
        ```bash
        pip install -r requirements_dev.txt
        ```
        
        ### Testing
        ```bash
        tox
        ```
        
        ### Build documentation locally
        To build the documentation:
        ```bash
        pip install -r docs/requirements.txt
        make docs
        ```
        
        
        
        [build-status-image]: https://secure.travis-ci.org/arve0/leicacam.png?branch=master
        [travis]: http://travis-ci.org/arve0/leicacam?branch=master
        [pypi-version]: https://img.shields.io/pypi/v/leicacam.svg
        [pypi]: https://pypi.python.org/pypi/leicacam
        [wheel]: https://img.shields.io/pypi/wheel/leicacam.svg
        
Keywords: leicacam
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
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
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Provides-Extra: asyncio
