%PDF-1.4 %Óëéá 1 0 obj <> endobj 3 0 obj <> endobj 4 0 obj <
| Server IP : 212.252.79.165 / Your IP : 216.73.216.45 [ Web Server : Apache System : Linux 212-252-79-165.cprapid.com 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64 User : cehaburo ( 1001) PHP Version : 8.1.33 Disable Function : exec,passthru,shell_exec,system Domains : 48 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/python3/dist-packages/cairo/ |
Upload File : |
from ._cairo import * # noqa: F401,F403
def get_include():
"""Returns a path to the directory containing the C header files"""
import os
def is_ok(path):
return os.path.exists(path) and os.path.isdir(path)
package_path = os.path.dirname(os.path.realpath(__file__))
install_path = os.path.join(package_path, "include")
# in case we are installed
if is_ok(install_path):
return install_path
# in case we are running from source
if is_ok(package_path):
return package_path
# in case we are in an .egg
import pkg_resources
return pkg_resources.resource_filename(__name__, "include")