PATH: //opt/cloudlinux/venv/lib/python3.11/site-packages/lxml
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 ElementInclude.py
↓
X
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 _elementpath.cpython-311-x86_64-linux-gnu.so
↓
X
📄 _elementpath.py
↓
X
📄 apihelpers.pxi
↓
X
📄 builder.cpython-311-x86_64-linux-gnu.so
↓
X
📄 builder.py
↓
X
📄 classlookup.pxi
↓
X
📄 cleanup.pxi
↓
X
📄 cssselect.py
↓
X
📄 debug.pxi
↓
X
📄 docloader.pxi
↓
X
📄 doctestcompare.py
↓
X
📄 dtd.pxi
↓
X
📄 etree.cpython-311-x86_64-linux-gnu.so
↓
X
📄 etree.h
↓
X
📄 etree.pyx
↓
X
📄 etree_api.h
↓
X
📄 extensions.pxi
↓
X
📁 html/
X
📁 includes/
X
📁 isoschematron/
X
📄 iterparse.pxi
↓
X
📄 lxml.etree.h
↓
X
📄 lxml.etree_api.h
↓
X
📄 nsclasses.pxi
↓
X
📄 objectify.cpython-311-x86_64-linux-gnu.so
↓
X
📄 objectify.pyx
↓
X
📄 objectpath.pxi
↓
X
📄 parser.pxi
↓
X
📄 parsertarget.pxi
↓
X
📄 proxy.pxi
↓
X
📄 public-api.pxi
↓
X
📄 pyclasslookup.py
↓
X
📄 readonlytree.pxi
↓
X
📄 relaxng.pxi
↓
X
📄 sax.cpython-311-x86_64-linux-gnu.so
↓
X
📄 sax.py
↓
X
📄 saxparser.pxi
↓
X
📄 schematron.pxi
↓
X
📄 serializer.pxi
↓
X
📄 usedoctest.py
↓
X
📄 xinclude.pxi
↓
X
📄 xmlerror.pxi
↓
X
📄 xmlid.pxi
↓
X
📄 xmlschema.pxi
↓
X
📄 xpath.pxi
↓
X
📄 xslt.pxi
↓
X
📄 xsltext.pxi
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: __init__.py
# this is a package __version__ = "4.9.2" def get_include(): """ Returns a list of header include paths (for lxml itself, libxml2 and libxslt) needed to compile C code against lxml if it was built with statically linked libraries. """ import os lxml_path = __path__[0] include_path = os.path.join(lxml_path, 'includes') includes = [include_path, lxml_path] for name in os.listdir(include_path): path = os.path.join(include_path, name) if os.path.isdir(path): includes.append(path) return includes
SIMPAN PERUBAHAN