# qhyccd-python **Repository Path**: wz1010/qhyccd-python ## Basic Information - **Project Name**: qhyccd-python - **Description**: No description available - **Primary Language**: Python - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-07-09 - **Last Updated**: 2024-07-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # qhyccd-python The QHYCCD SDK wrapper in Python. This project still is under construction for laboratory usage, but you can find the most fundamental thing in the Jupyter Notebook. Then you can make you own python wrapper and have a good day. These scripts only test on Linux, but should run in windows and OS X with little modification. QHYCCD SDK should be installed on you system. `libqhyccd.so` should be found on `/usr/local/lib/libqhyccd/so`, or you need to update pathway in `qhyccd.py`. ## Usage ```python import qhyccd # import qhyccd wrapper import numpy as np qc = qhyccd.qhyccd() # create qhyccd object qc.SetExposure(1000) # set exposure to 1000ms image = qc.GetSingleFrame() # return image ```