>>>> import ctypes.util
>>>> libical = ffi.dlopen(ctypes.util.find_library('ical'))
>>>> libical.ical_set_unknown_token_handling_setting(libical.ICAL_ASSUME_IANA_TOKEN)
Hi Roshan,
On Tue, Sep 15, 2015 at 8:02 AM, Maciej Fijalkowski <fijall@gmail.com> wrote:
> ffi.dlopen does not require a C compiler, ffi.verify does (which we
> strongly encourage to use). Note that since cffi 1.0 you only require
> C compiler to create extensions, you can distribute them without a
> compiler. See documentation for details
I added more emphasis about that to the documentation's Overview page.
You can see it at https://bitbucket.org/cffi/cffi/wiki/overview (grep
for "C compiler").
A bientôt,
Armin.