cppyy wrapper for Lyncs
Project description
cppyy wrapper for Lyncs
In this package we provide some additional features to cppyy.
Installation
The package can be installed via pip
:
pip install [--user] lyncs_cppyy
Documentation
The main documentation of cppyy is available at https://cppyy.readthedocs.io/en/latest/.
cppyy is an automatic, run-time, Python-C++ bindings generator, for calling C++ from Python [...]
Lyncs_cppyy is an additional layer between cppyy and the interfaces to libraries provided by Lyncs. In the following we give an overview of the additional functionalities.
Lib class
In cppyy, libraries are loaded and used as follow:
>>> import cppyy
>>> cppyy.include('zlib.h') # bring in C++ definitions
>>> cppyy.load_library('libz') # load linker symbols
>>> cppyy.gbl.zlibVersion() # use a zlib API
'1.2.11'
>>>
In lyncs_cppyy we have define the class Lib for holding the information on a library. It is used as follow
>>> from lyncs_cppyy import Lib
>>> zlib = Lib(header = 'zlib.h', library = 'libz')
>>> zlib.zlibVersion()
'1.2.11'
>>>
Lib returns a variable that represents the library.
The library is loaded at the first usage of the variable.
In most of the cases, accessing attributes of the variable is like accessing attributed of cppyy.gbl
.
Exceptions are made for
- macros defined in the headers, e.g.
zlib.ZLIB_VERSION -> '1.2.11'
- functions defined under a namespace which can be directly accessed specifying a namespace
- and the following attributes of Lib, e.g.
zlib.header -> ['zlib.h']
.
The list of attributes and initialization options of Lib
are:
-
header
: string(or list) of the header(s) to be included. -
library
: string(or list) of the shared library(ies) to be loaded. A library can also be an instance of theLib
class. -
c_include
: if the library is a c library (True
) or a c++ library (False
, default) -
namespace
: in case of a c++ library, a string(or list) of the namespace(s) to be used. Equivalent tousing namespace ...
in c++. Without, symbols should be access aslib.namespace.*
. -
path
: string(or list) of the path(s) to the base directory of the library. Headers will be searched inPATH/include
and libraries inPATH/lib
. -
include
: string(or list) of the directory(ies) to include. Equivalent to-I
used at compile time. -
defined
: dictionary of aliases that act as defined macros.
Other functions
loaded_libraries()
: Returns the list of loaded librariesto_pointer(ptr, ctype="void *")
: Converts an integer (ptr) to cppyy pointerCppType(ctype)
: Generates a base class that allows for automatic type conversion calling the look-up method__cppyy__
. See its doc for more details.array_to_pointers(arr)
: Creates a c-style array of pointers to be used for accessing the elements of a numpy-like array.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file lyncs_cppyy-0.2.0.tar.gz
.
File metadata
- Download URL: lyncs_cppyy-0.2.0.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5563d1f4cd046274f284dd20183d4b0066b91422a1de4d60910e17a9a37004f7 |
|
MD5 | e68c7a8032393ff1c9f87f776ff549ec |
|
BLAKE2b-256 | d3be2dd6b70d842bfc50febaafe1fa101edfc8c70b21589c41d6e4e70acf42f1 |