Skip to content

AlexanderWells-diamond/epicscorelibs

 
 

Repository files navigation

epicscorelibs

Not an end user library.

This repository contains the source used to build

https://pypi.org/project/epicscorelibs/

pip install epicscorelibs

If you plan to use this for local compilation then it is will be necessary to skip the pre-built wheel binaries.

pip install --no-binary :all: epicscorelibs

Please report issues first to https://github.com/mdavidsaver/epicscorelibs/issues before code.launchpad.net or EPICS mailing lists.

CI builds

https://travis-ci.org/mdavidsaver/epicscorelibs/builds

https://ci.appveyor.com/project/mdavidsaver/epicscorelibs

Python API

See src/python/epicscorelibs.

Finding paths to included headers and libraries.

from epicscorelibs.path import include_path, lib_path, get_lib
print(include_path) # use with eg. -I
print(lib_path)     # use with eg. -L
print(get_lib('ca'))# full path of named library
# lib names are: 'Com', 'ca', 'dbCore', 'dbRecStd', 'pvData', 'pvAccess', 'pvAccessCA'

Using with pyepics and/or cothread.

It is advisable to avoid loading more than one version of any of the epics library into a single process. To facilitate this several helpers are provided for common libca wrappers.

DLS cothread

pip install epicscorelibs cothread
try:
    import epicscorelibs.path.cothread
except ImportError:
    pass
from cothread.catools import caget    

pyepics

try:
    import epicscorelibs.path.pyepics
except ImportError:
    pass
import epics

Building against epicscorelibs

from epicscorelibs.config import get_config_var, get_config_vars

get_config_vars() and get_config_var(name) function like the similarly named sysconfig.get_config_vars and sysconfig.get_config_var(name).

Valid keys include EPICS_HOST_ARCH, CFLAGS, etc.

from epicscorelibs.version import version, base_version, abi_requires

About

EPICS core libraries packaged as a "python" module

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 69.0%
  • C++ 19.3%
  • Perl 4.0%
  • HTML 3.3%
  • Makefile 1.4%
  • Python 1.1%
  • Other 1.9%