Helps you add functionality missing from libclang Python bindings
Project description
Overview
Cymbal makes it easy to add functionality missing from libclang Python bindings
The Clang libclang python bindings use ctypes to invoke functions present in libclang dynamic library. In some cases, only a subset of the C functions are available, because the platform or version specific Python bindings omit functions. Cymbal simplfies the process of dynamically adding those methods to Types and Cursors.
Usage
Import Cymbal, monkeypatch any required functions, adding appropriate ctypes annotations as necessary.
import clang.cindex
from clang.cindex import *
import cymbal
from ctypes import *
# add functions omitted from the pip installable clang packages on OSX
cymbal.monkeypatch_type('get_template_argument_type',
'clang_Type_getTemplateArgumentAsType',
[Type, c_uint],
Type)
cymbal.monkeypatch_type('get_num_template_arguments',
'clang_Type_getNumTemplateArguments',
[Type],
c_int)
Requirements
The only requirements are libclang and the python bindings for libclang.
Contributing
If you experience problems with Cymbal, log them on GitHub. If you want to contribute code, please fork the code and submit a pull request.
Licensing
This project builds on the work of the LLVM team and the University of Illinois at Urbana-Champaign, but is no way affiliated with either group.
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
Built Distribution
File details
Details for the file cymbal-1.0.0.tar.gz
.
File metadata
- Download URL: cymbal-1.0.0.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c79a00190bc8646505392b904e6e76410e98018f96f247ff7d363365241e2e0 |
|
MD5 | 06c6012b865789a66dabfe4898424bdb |
|
BLAKE2b-256 | 43171c6a47859d59743941480d1709aa003a78fbbd8c0903b14ff4e7f9a775a7 |
File details
Details for the file cymbal-1.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: cymbal-1.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ff334e1be271ba895c9f4ed8c0bf6e4aff4f011cf6cbc61a5d9edf3319a4e86 |
|
MD5 | ad4d32d92449761432a934480d97591e |
|
BLAKE2b-256 | bac74eac7b0cb1f21938e69688c0b314f9691ad21aafabe186f9e8f0afbf9834 |