Metadata-Version: 2.1
Name: cuesdk
Version: 0.2.4
Summary: Ctypes-based CUE SDK binding for Python
Home-page: https://github.com/CorsairOfficial/cue-sdk-python
Author: Corsair Memory, Inc.
License: UNKNOWN
Platform: win
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: System :: Hardware
Requires-Python: >=3.3
Description-Content-Type: text/markdown

cue-sdk-python
==============

[![PyPI license](https://img.shields.io/pypi/l/cuesdk.svg)](https://pypi.org/project/cuesdk)
[![PyPI version info](https://img.shields.io/pypi/v/cuesdk.svg)](https://pypi.org/project/cuesdk)
[![PyPI supported Python versions](https://img.shields.io/pypi/pyversions/cuesdk.svg)](https://pypi.org/project/cuesdk)

# Intro

This repository is dedicated for a `cuesdk` package on [PyPI](https://pypi.org/)

`cuesdk` package is a `ctypes`-based CUE SDK binding for Python 3

# Prerequisites

- `cuesdk` works on Windows platform only.
- Python 3.3 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported.
- Microsoft Visual C++ Redistributable for Visual Studio 2017.
  - x86 https://aka.ms/vs/15/release/VC_redist.x86.exe
  - x64 https://aka.ms/vs/15/release/VC_redist.x64.exe 

# Installing

You can install the package from PyPI:

```sh
   # Windows
   $ py -3 -m pip install -U cuesdk
```

# Usage

```python
from cuesdk import CueSdk

sdk = CueSdk()
sdk.connect()

print(sdk.protocol_details)

print(sdk.get_devices())

```


