Jump to content

trongus

Citizen
  • Posts

    2
  • Joined

  • Last visited

Everything posted by trongus

  1. Manipulating VFS via MO interface won't be necessary. I don't plan to use C++ side code other than what is exposed already. If you're referring to a codebase something other than MO, it is surely possible to load pyd modules inside the embedded python so it can "import" them. In fact, it is quite trivial to install most of pip modules into embedded python, whether it be distributed in pure python or not. It seems that you're correct on that I should forget about debuggers since they seem to be mostly incompatible with embedded python. However I believe that REPL can be initiated if a decent GUI is provided as a terminal. (Technically, it should be done by just popping win32console.AllocConsole() then launching code.interact() within the console. It is just not as useful as other good REPLs.) Yes, I have read that doc before. The first thing I've decided upon reading it is that the first plugin I should write is to bootstrap the dev environment so that I can do some experiments in it. I don't want to do cumbersome dir-or-pprint-and-run-check routines every time when trying to inspect an object. That's where REPL should kick in. Yes, I've never worked with PyQt5. I have avoided that since I believe it is a special case: Qt is linked against MO, which embeds python, which again refers to Qt from original MO via PyQt5 interface. Considering that standard distribution of PyQt5 ships Qt binaries by itself, I suspected that it should be used as standalone mode for default build. Anyway, you're probably right on that it must be built manually. It would be great to clarify things before getting hand into it. 1) The screenshot says about the version of Qt, not PyQt5. Are you suggesting that the version string of PyQt5 matches to that of Qt? 2) Would PyQt5 integrate with already Qt application via embedded python?
  2. Concerning the half-dead status of SASTEP, I've been motivated to write some plugins for MO to contribute on the topic. However I'm having troubles on just setting a decent environment for developing plugins via PythonProxy. Currently my goal is to establish a development environment. To do that, I need MO connected with a decent Python debugger, or at least a responsive REPL for interactive introspection on plugin APIs. What would you suggest? [spoiler=What had been tried so far...] I've been trying in two ways to achieve that: one is to remote debugging via existing Python IDE, and the other is to directly attaching a REPL module onto the MO. But neither have been successful so far. 1. Remote debugger I've tried with PTVS, my favorite IDE. There are two ways to initiate connections from MO to PTVS: via "Attach to Process" menu or via ptvsd module. However the former failed to pause execution of MO which renders it useless. It works perfectly normal if you attach to an ordinary python process, so I suspect that PTVS failed to hook into the debuggee for some reason. The latter worked with a bit of trick (replacing python27.dll to stock 2.7.5 binary, adding _socket.pyd onto PYTHONPATH, etc...) but it still did not work correctly; I was able to attach into the process and see the code, but within a short time the debugger REPL becomes disconnected along with the rest of PTVS functionalities. 2. Launching REPL from MO I've given a try on Spyder. However it seems to require full-featured PyQt5, which is not available in MO (it contains only three PYD modules and SIP). I did not dare to replace PyQt5 to full package for three reasons: - MO itself is built upon Qt. It would be dangerous to attach a full package of PyQt5 which ships its own Qt binaries on the same process. - I have no idea which version of PyQt5 is deployed with MO, so I can't find a compatible package of PyQt5. Github repo of MO does not tell me anything as they are shipped with binaries only. - Weirdly enough, googling PyQt5 for Python 2.7 32 bit does not show anything. PyPI refuses to show older version of PyQt5 which makes hard to find a compatible version to work with MO. There are other Qt-based IDEs (such as Jupyter and so on), but it would show similar result. So I'm stuck here.
×
×
  • Create New...

Important Information

By using this site, you agree to our Guidelines, Privacy Policy, and Terms of Use.