Skip to main content

SamplePluginPython

Full plugin download SamplePluginPython Includes: │ plugin.json │ SamplePluginPython.vcxproj │ └───src │ data.json │ sa...

Updated over 2 months ago

Full plugin download SamplePluginPython

Includes:

│   plugin.json
│   SamplePluginPython.vcxproj
│
└───src
    │   data.json
    │   sample.py
    │   __init__.py
    │
    └───pysrc
        │   .project
        │   .pydevproject
        │   .travis.yml
        │   .travis_install_jython_deps.sh
        │   .travis_install_python_deps.sh
        │   appveyor.yml
        │   build.cmd
        │   conftest.py
        │   interpreterInfo.py
        │   LICENSE
        │   MANIFEST.in
        │   pycompletionserver.py
        │   pydevconsole.py
        │   pydevd.py
        │   pydevd_file_utils.py
        │   pydevd_tracing.py
        │   pydev_app_engine_debug_startup.py
        │   pydev_coverage.py
        │   pydev_pysrc.py
        │   pydev_run_in_console.py
        │   pytest.ini
        │   README.rst
        │   runfiles.py
        │   setup.py
        │   setup_cython.py
        │
        ├───.settings
        │       org.eclipse.core.resources.prefs
        │
        ├───build_tools
        │       build.py
        │       build_binaries_windows.py
        │       generate_code.py
        │       names_to_rename.py
        │       rename_pep8.py
        │
        ├───pydevd_attach_to_process
        │   │   add_code_to_python_process.py
        │   │   attach_amd64.dll
        │   │   attach_linux_amd64.so
        │   │   attach_linux_x86.so
        │   │   attach_pydevd.py
        │   │   attach_script.py
        │   │   attach_x86.dll
        │   │   attach_x86.dylib
        │   │   attach_x86_64.dylib
        │   │   README.txt
        │   │   _always_live_program.py
        │   │   _check.py
        │   │   _test_attach_to_process.py
        │   │   _test_attach_to_process_linux.py
        │   │
        │   ├───dll
        │   │       attach.cpp
        │   │       attach.h
        │   │       compile_dll.bat
        │   │       python.h
        │   │       stdafx.cpp
        │   │       stdafx.h
        │   │       targetver.h
        │   │
        │   ├───linux
        │   │       attach_linux.c
        │   │       compile_mac.sh
        │   │       compile_so.sh
        │   │       gdb_threads_settrace.py
        │   │       lldb_prepare.py
        │   │       lldb_threads_settrace.py
        │   │       Makefile
        │   │       python.h
        │   │
        │   └───winappdbg
        │       │   breakpoint.py
        │       │   compat.py
        │       │   crash.py
        │       │   debug.py
        │       │   disasm.py
        │       │   event.py
        │       │   interactive.py
        │       │   module.py
        │       │   process.py
        │       │   registry.py
        │       │   search.py
        │       │   sql.py
        │       │   system.py
        │       │   textio.py
        │       │   thread.py
        │       │   util.py
        │       │   window.py
        │       │   __init__.py
        │       │
        │       ├───plugins
        │       │       do_example.py
        │       │       do_exchain.py
        │       │       do_exploitable.py
        │       │       do_symfix.py
        │       │       README
        │       │       __init__.py
        │       │
        │       └───win32
        │               advapi32.py
        │               context_amd64.py
        │               context_i386.py
        │               dbghelp.py
        │               defines.py
        │               gdi32.py
        │               kernel32.py
        │               ntdll.py
        │               peb_teb.py
        │               psapi.py
        │               shell32.py
        │               shlwapi.py
        │               user32.py
        │               version.py
        │               wtsapi32.py
        │               __init__.py
        │
        ├───pydevd_concurrency_analyser
        │       pydevd_concurrency_logger.py
        │       pydevd_thread_wrappers.py
        │       __init__.py
        │
        ├───pydevd_plugins
        │       django_debug.py
        │       jinja2_debug.py
        │       __init__.py
        │
        ├───pydev_ipython
        │       inputhook.py
        │       inputhookglut.py
        │       inputhookgtk.py
        │       inputhookgtk3.py
        │       inputhookpyglet.py
        │       inputhookqt4.py
        │       inputhookqt5.py
        │       inputhooktk.py
        │       inputhookwx.py
        │       matplotlibtools.py
        │       qt.py
        │       qt_for_kernel.py
        │       qt_loaders.py
        │       README
        │       version.py
        │       __init__.py
        │
        ├───pydev_sitecustomize
        │       sitecustomize.py
        │       __not_in_default_pythonpath.txt
        │
        ├───stubs
        │       pycompletion.py
        │       _django_manager_body.py
        │       _get_tips.py
        │
        ├───third_party
        │   ├───pep8
        │   │   │   autopep8.py
        │   │   │   pycodestyle.py
        │   │   │
        │   │   └───lib2to3
        │   │       └───lib2to3
        │   │           │   btm_matcher.py
        │   │           │   btm_utils.py
        │   │           │   fixer_base.py
        │   │           │   fixer_util.py
        │   │           │   Grammar.txt
        │   │           │   main.py
        │   │           │   patcomp.py
        │   │           │   PatternGrammar.txt
        │   │           │   pygram.py
        │   │           │   pytree.py
        │   │           │   refactor.py
        │   │           │   __init__.py
        │   │           │   __main__.py
        │   │           │
        │   │           ├───fixes
        │   │           │       fix_apply.py
        │   │           │       fix_basestring.py
        │   │           │       fix_buffer.py
        │   │           │       fix_callable.py
        │   │           │       fix_dict.py
        │   │           │       fix_except.py
        │   │           │       fix_exec.py
        │   │           │       fix_execfile.py
        │   │           │       fix_exitfunc.py
        │   │           │       fix_filter.py
        │   │           │       fix_funcattrs.py
        │   │           │       fix_future.py
        │   │           │       fix_getcwdu.py
        │   │           │       fix_has_key.py
        │   │           │       fix_idioms.py
        │   │           │       fix_import.py
        │   │           │       fix_imports.py
        │   │           │       fix_imports2.py
        │   │           │       fix_input.py
        │   │           │       fix_intern.py
        │   │           │       fix_isinstance.py
        │   │           │       fix_itertools.py
        │   │           │       fix_itertools_imports.py
        │   │           │       fix_long.py
        │   │           │       fix_map.py
        │   │           │       fix_metaclass.py
        │   │           │       fix_methodattrs.py
        │   │           │       fix_ne.py
        │   │           │       fix_next.py
        │   │           │       fix_nonzero.py
        │   │           │       fix_numliterals.py
        │   │           │       fix_operator.py
        │   │           │       fix_paren.py
        │   │           │       fix_print.py
        │   │           │       fix_raise.py
        │   │           │       fix_raw_input.py
        │   │           │       fix_reduce.py
        │   │           │       fix_renames.py
        │   │           │       fix_repr.py
        │   │           │       fix_set_literal.py
        │   │           │       fix_standarderror.py
        │   │           │       fix_sys_exc.py
        │   │           │       fix_throw.py
        │   │           │       fix_tuple_params.py
        │   │           │       fix_types.py
        │   │           │       fix_unicode.py
        │   │           │       fix_urllib.py
        │   │           │       fix_ws_comma.py
        │   │           │       fix_xrange.py
        │   │           │       fix_xreadlines.py
        │   │           │       fix_zip.py
        │   │           │       __init__.py
        │   │           │
        │   │           └───pgen2
        │   │                   conv.py
        │   │                   driver.py
        │   │                   grammar.py
        │   │                   literals.py
        │   │                   parse.py
        │   │                   pgen.py
        │   │                   token.py
        │   │                   tokenize.py
        │   │                   __init__.py
        │   │
        │   └───wrapped_for_pydev
        │       │   not_in_default_pythonpath.txt
        │       │
        │       └───ctypes
        │           │   ctypes-README.txt
        │           │   util.py
        │           │   wintypes.py
        │           │   _ctypes.dll
        │           │   _endian.py
        │           │   __init__.py
        │           │
        │           └───macholib
        │                   dyld.py
        │                   dylib.py
        │                   framework.py
        │                   __init__.py
        │
        ├───_pydevd_bundle
        │       pydevconsole_code_for_ironpython.py
        │       pydevd_additional_thread_info.py
        │       pydevd_additional_thread_info_regular.py
        │       pydevd_breakpoints.py
        │       pydevd_comm.py
        │       pydevd_command_line_handling.py
        │       pydevd_console.py
        │       pydevd_constants.py
        │       pydevd_custom_frames.py
        │       pydevd_cython.c
        │       pydevd_cython.pyx
        │       pydevd_cython_win32_27_32.pyd
        │       pydevd_cython_win32_27_64.pyd
        │       pydevd_cython_win32_34_32.pyd
        │       pydevd_cython_win32_34_64.pyd
        │       pydevd_cython_win32_35_32.cp35-win32.pyd
        │       pydevd_cython_win32_35_64.cp35-win_amd64.pyd
        │       pydevd_cython_win32_36_32.cp36-win32.pyd
        │       pydevd_cython_win32_36_64.cp36-win_amd64.pyd
        │       pydevd_cython_wrapper.py
        │       pydevd_dont_trace.py
        │       pydevd_dont_trace_files.py
        │       pydevd_exec.py
        │       pydevd_exec2.py
        │       pydevd_frame.py
        │       pydevd_frame_utils.py
        │       pydevd_import_class.py
        │       pydevd_io.py
        │       pydevd_kill_all_pydevd_threads.py
        │       pydevd_plugin_utils.py
        │       pydevd_process_net_command.py
        │       pydevd_referrers.py
        │       pydevd_reload.py
        │       pydevd_resolver.py
        │       pydevd_save_locals.py
        │       pydevd_signature.py
        │       pydevd_stackless.py
        │       pydevd_traceproperty.py
        │       pydevd_trace_api.py
        │       pydevd_trace_dispatch.py
        │       pydevd_trace_dispatch_regular.py
        │       pydevd_utils.py
        │       pydevd_vars.py
        │       pydevd_vm_type.py
        │       pydevd_xml.py
        │       __init__.py
        │
        ├───_pydev_bundle
        │       fix_getpass.py
        │       pydev_console_utils.py
        │       pydev_imports.py
        │       pydev_import_hook.py
        │       pydev_ipython_console.py
        │       pydev_ipython_console_011.py
        │       pydev_is_thread_alive.py
        │       pydev_localhost.py
        │       pydev_log.py
        │       pydev_monkey.py
        │       pydev_monkey_qt.py
        │       pydev_override.py
        │       pydev_umd.py
        │       pydev_versioncheck.py
        │       _pydev_calltip_util.py
        │       _pydev_completer.py
        │       _pydev_filesystem_encoding.py
        │       _pydev_getopt.py
        │       _pydev_imports_tipper.py
        │       _pydev_jy_imports_tipper.py
        │       _pydev_log.py
        │       _pydev_tipper_common.py
        │       __init__.py
        │
        ├───_pydev_imps
        │       _pydev_BaseHTTPServer.py
        │       _pydev_execfile.py
        │       _pydev_inspect.py
        │       _pydev_pkgutil_old.py
        │       _pydev_saved_modules.py
        │       _pydev_SimpleXMLRPCServer.py
        │       _pydev_SocketServer.py
        │       _pydev_sys_patch.py
        │       _pydev_uuid_old.py
        │       _pydev_xmlrpclib.py
        │       __init__.py
        │
        └───_pydev_runfiles
                pydev_runfiles.py
                pydev_runfiles_coverage.py
                pydev_runfiles_nose.py
                pydev_runfiles_parallel.py
                pydev_runfiles_parallel_client.py
                pydev_runfiles_pytest2.py
                pydev_runfiles_unittest.py
                pydev_runfiles_xml_rpc.py
                __init__.py
Did this answer your question?