/opt/cloudlinux/venv/bin
NameSizeModeActions
activate16890644editdlrm
activate.csh9130644editdlrm
activate.fish21930644editdlrm
Activate.ps190330644editdlrm
alembic2290755editdlrm
chardetect2370755editdlrm
clcpapi38390755editdlrm
cl_sysctl47290755editdlrm
coverage2310755editdlrm
coverage-3.112310755editdlrm
coverage32310755editdlrm
cpanel-dbmapping39250755editdlrm
cygdb2360755editdlrm
cython2570755editdlrm
cythonize2370755editdlrm
da_suid_caller.py7640644editdlrm
detect-requirements2380755editdlrm
dodgy2240755editdlrm
epylint2350755editdlrm
f2py2320755editdlrm
f2py32320755editdlrm
f2py3.112320755editdlrm
flake82300755editdlrm
futurize2310755editdlrm
get_objgraph16670755editdlrm
isort2250755editdlrm
isort-identify-imports2590755editdlrm
jsonschema2290755editdlrm
lvestats_config_reader.py12230644editdlrm
mako-render2290755editdlrm
normalizer2600755editdlrm
pasteurize2330755editdlrm
pip2370755editdlrm
pip32370755editdlrm
pip3.112370755editdlrm
plesk_suid_caller.py9830644editdlrm
prospector2290755editdlrm
py.test2370755editdlrm
pycodestyle2280755editdlrm
pydocstyle2290755editdlrm
pyflakes2270755editdlrm
pylint2330755editdlrm
pylint-config2490755editdlrm
pyreverse2390755editdlrm
pysemver2250755editdlrm
pytest2370755editdlrm
python61440755editdlrm
python361440755editdlrm
python3.1161440755editdlrm
raven2350755editdlrm
symilar2350755editdlrm
tap2230755editdlrm
tappy2230755editdlrm
undill6030755editdlrm
virtualenv2540755editdlrm
wheel2240755editdlrm
Edit: /opt/cloudlinux/venv/bin/get_objgraph (1667B)
#!/opt/cloudlinux/venv/bin/python3 # # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) # Copyright (c) 2008-2016 California Institute of Technology. # Copyright (c) 2016-2022 The Uncertainty Quantification Foundation. # License: 3-clause BSD. The full license text is available at: # - https://github.com/uqfoundation/dill/blob/master/LICENSE """ display the reference paths for objects in ``dill.types`` or a .pkl file Notes: the generated image is useful in showing the pointer references in objects that are or can be pickled. Any object in ``dill.objects`` listed in ``dill.load_types(picklable=True, unpicklable=True)`` works. Examples:: $ get_objgraph FrameType Image generated as FrameType.png """ import dill as pickle #pickle.debug.trace(True) #import pickle # get all objects for testing from dill import load_types load_types(pickleable=True,unpickleable=True) from dill import objects if __name__ == "__main__": import sys if len(sys.argv) != 2: print ("Please provide exactly one file or type name (e.g. 'IntType')") msg = "\n" for objtype in list(objects.keys())[:40]: msg += objtype + ', ' print (msg + "...") else: objtype = str(sys.argv[-1]) try: obj = objects[objtype] except KeyError: obj = pickle.load(open(objtype,'rb')) import os objtype = os.path.splitext(objtype)[0] try: import objgraph objgraph.show_refs(obj, filename=objtype+'.png') except ImportError: print ("Please install 'objgraph' to view object graphs") # EOF