Metadata-Version: 2.1
Name: spcm_core
Version: 1.0.1
Summary: Low-level Python API Package for Spectrum Instrumentation GmbH cards
Author-email: Spectrum Instrumentation GmbH <info@spec.de>
Project-URL: Homepage, https://spectrum-instrumentation.com/
Project-URL: API, https://spectruminstrumentation.github.io/spcm-core/spcm_core.html
Project-URL: Repository, https://github.com/SpectrumInstrumentation/spcm-core
Project-URL: Examples, https://github.com/SpectrumInstrumentation/spcm-core/tree/master/src/examples
Project-URL: Knowledge Base, https://spectrum-instrumentation.com/support/knowledgebase/index.php
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: System :: Hardware
Requires-Python: >=2.6
Description-Content-Type: text/markdown
License-File: LICENSE

<div style="margin-bottom: 20px; text-align: center">
<a href="https://spectrum-instrumentation.com">
    <img src="https://spectrum-instrumentation.com/img/logo-complete.png"  width=400 />
</a>
</div>

# spcm_core
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![PyPI - Version](https://img.shields.io/pypi/v/spcm-core)](https://pypi.org/project/spcm-core)
[![PyPi Downloads](https://img.shields.io/pypi/dm/spcm-core?label=downloads%20%7C%20pip&logo=PyPI)](https://pypi.org/project/spcm-core)
[![Follow](https://img.shields.io/twitter/follow/SpecInstruments.svg?style=social&style=flat&logo=twitter&label=Follow&color=blue)](https://twitter.com/SpecInstruments/)
![GitHub followers](https://img.shields.io/github/followers/SpectrumInstrumentation)

A low-level, Python API package for interfacing with Spectrum Instrumentation GmbH devices.

`spcm_core` can handle individual cards, StarHubs, groups of cards and Netboxes.

# Supported devices

See the [SUPPORTED_DEVICES.md](https://github.com/SpectrumInstrumentation/spcm-core/blob/master/src/spcm_-_core/SUPPORTED_DEVICES.md) file for a list of supported devices.

# Requirements
[![Static Badge](https://img.shields.io/badge/Python-2.6+-blue)](https://www.python.org/)

`spcm_core` requires the Spectrum Instrumentation [driver](https://spectrum-instrumentation.com/support/downloads.php) which is available for Windows and Linux. 
Please have a look in the manual of your product for more information about installing the driver on the different plattforms.

# Installation and dependencies
[![Pip Package](https://img.shields.io/pypi/v/spcm_core?logo=PyPI)](https://pypi.org/project/spcm_core)
[![Publish to PyPI](https://github.com/SpectrumInstrumentation/spcm-core/actions/workflows/spcm-publish-to-pypi.yml/badge.svg)](https://github.com/SpectrumInstrumentation/spcm-core/actions/workflows/spcm-publish-to-pypi.yml)

Start by installing Python 2.6 or higher. We recommend using the latest version. You can download Python from [https://www.python.org/](https://www.python.org/).

You would probably also like to install and use a virtual environment, although it's not strictly necessary. See the examples [README.md](https://github.com/SpectrumInstrumentation/spcm_core/blob/master/src/examples/README.md) for a more detailed explanation on how to use `spcm_core` in a virtual environment.

To install the latest release using `pip`:
```bash
$ pip install spcm_core
```
Note that: this will automatically install all the dependencies.

# Documentation
[![Documentation](https://img.shields.io/badge/api-reference-blue.svg)](https://spectruminstrumentation.github.io/spcm-core/spcm-core.html)
[![Build docs](https://github.com/SpectrumInstrumentation/spcm-core/actions/workflows/spcm-docs-pages.yml/badge.svg)](https://github.com/SpectrumInstrumentation/spcm-core/actions/workflows/spcm-docs-pages.yml)
[![Publish docs](https://github.com/SpectrumInstrumentation/spcm-core/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/SpectrumInstrumentation/spcm-core/actions/workflows/pages/pages-build-deployment)

The API documentation for the latest [stable release](https://spectruminstrumentation.github.io/spcm-core/spcm_core.html) is available for reading on GitHub pages.

Please also see the hardware user manual for your specific card for more information about the available functionality.

# Using spcm_core

The `spcm_core` package is a low-level programming API library for controlling Spectrum Instrumentation devices.

## Examples
For detailed examples see the `src\examples` directory. You can find the most recent examples on [GitHub](https://github.com/SpectrumInstrumentation/spcm-core/tree/master/src/examples).
