Bugfix maintenance only
pyqode.python adds python support to pyQode (code completion, calltips, ...).
- calltips mode (using Jedi)
- code completion provider (using Jedi)
- code folding mode
- auto indent mode
- on the fly code checkers (frosted (fork of PyFlakes), PEP8)
- a customisable python specific syntax highlighter
- a pre-configured QPythonCodeEdit (with the corresponding Qt Designer plugin)
pyQode is licensed under the MIT license.
pyqode.python depends on the following libraries:
- python 2.7 or python 3 (>= 3.2)
- pyqode.core
- jedi
- pep8
- frosted
- docutils
$ pip install pyqode.python --upgrade
pyqode.core has a test suite and measure its coverage.
To run the tests, just run python setup.py test
To measure coverage, run:
python setup.py test -a "--cov pyqode"
To check for PEP8 warnings, install pytest-pep8 and run:
python setup.py test -a "--pep8 -m pep8"
To run a single test, use -a "-- test_file_path.py::test_function"
, e.g.:
python setup.py test -a "-- test/test_api/test_code_edit.py::test_set_plain_text"
We test the following combinations on Travis-CI:
PyQt4 | PyQt5 | |
---|---|---|
GNU/Linux - Python 2.7 | yes | no |
GNU/Linux - Python 3.4 | yes | yes |