I'm learning python + gtk3+ so I was looking for an IDE to help me. Is there any way to get code completion with PyGObject? I've really tried EVERYTHING I can think of. I have pycharm build 138.2401 where this bug: https://youtrack.jetbrains.com/issue/PY-6932 is supposed to be fixed but I can't get any code suggestions. This simple code would raise a warning (Gtk is not found):
#!/usr/bin/python3
from gi.repository import Gtk
Also, using fakegir doesn't work either (and it does work with WingIDE). Here is my project start script in case I'm doing something (horribly) wrong:
import sys; print('Python %s on %s' % (sys.version, sys.platform))
sys.path.extend([WORKING_DIR_AND_PYTHON_PATHS])
sys.path.append(self,"/home/obok/.cache/fakegir/")