Server IP : 184.154.167.98 / Your IP : 18.118.208.127 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib64/python3.6/site-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")