• Home
Name Date Size #Lines LOC

..--

c/03-May-2024-20,74316,929

cffi/03-May-2024-9,1587,340

demo/03-May-2024-3,0372,288

doc/03-May-2024-5,8704,300

testing/03-May-2024-17,23915,017

AUTHORSD03-May-2024208 95

Android.bpD03-May-2024987 3229

LICENSED03-May-20241.3 KiB2720

MANIFEST.inD03-May-2024280 76

METADATAD03-May-2024348 1816

MODULE_LICENSE_MITD03-May-20240

README.mdD03-May-2024779 3121

requirements.txtD03-May-202417 32

setup.cfgD03-May-202434 32

setup.pyD03-May-20248.9 KiB251197

setup_base.pyD03-May-2024913 2318

README.md

1CFFI
2====
3
4Foreign Function Interface for Python calling C code.
5Please see the [Documentation](http://cffi.readthedocs.org/) or uncompiled
6in the doc/ subdirectory.
7
8Download
9--------
10
11[Download page](https://bitbucket.org/cffi/cffi/downloads)
12
13Contact
14-------
15
16[Mailing list](https://groups.google.com/forum/#!forum/python-cffi)
17
18Testing/development tips
19------------------------
20
21To run tests under CPython, run::
22
23    pip install pytest     # if you don't have py.test already
24    pip install pycparser
25    python setup.py build_ext -f -i
26    py.test c/ testing/
27
28If you run in another directory (either the tests or another program),
29you should use the environment variable ``PYTHONPATH=/path`` to point
30to the location that contains the ``_cffi_backend.so`` just compiled.
31