CASP Python Libraries
This documentation primarily focuses on the usage of functions from 'casp', 'casp_be', 'casp_gpio' and 'casp_udio' namespaces.
Loading...
Searching...
No Matches
casp_paths.py
1"""! This module defines list of CASP directory paths corresponding to current CASP installation. These path variables are used by various classes and functions from other modules.
2User can also use these variables in their code instead of referring to absolute paths. This module is updated when user installs CASP Python Libraries from CASP main window interface.
3If this file is modified by user, ensure it is reloaded for changes to take effect.
4"""
5
6casp_deploy_path = "C:/CASP"
7casp_exe_path = "C:/CASP/bin_win"
8casp_blks_path = "C:/CASP/blocks"
9casp_hwd_path = "C:/CASP/hardware"
10casp_src_path = "C:/CASP/source"
11casp_data_path = "C:/CASP/data"
12casp_py_path = "C:/Users/AL/Documents/casp_user_data/pycasp"