pylsp-rope VS pyright

Compare pylsp-rope vs pyright and see what are their differences.

pylsp-rope

Extended refactoring capabilities for python-lsp-server using Rope (by python-rope)

pyright

Static Type Checker for Python (by microsoft)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
pylsp-rope pyright
12 135
101 12,055
6.9% 1.5%
8.3 9.8
about 1 month ago 6 days ago
Python Python
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

pylsp-rope

Posts with mentions or reviews of pylsp-rope. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-21.
  • How to test lsp performance
    4 projects | /r/neovim | 21 Jun 2023
    pylsp-rope is actually an external plugin project, it implements advanced refactoring functionalities using code action (extract method/variable, function inlining, converting local variables to instance variables, organise import, etc). Unless you have explicitly installed pylsp-rope at some point, it's unlikely you already have it in your system. I'm the author of pylsp-rope, btw.
  • Open Source Python libraries/projects that need contributions?
    5 projects | /r/Python | 11 Dec 2022
    If you're also a user of rope, which is a Python refactoring library, my python-lsp-server plugin pylsp-rope would also welcome contributions. They have a fairly small codebase, and so they would be relatively easy to pick up.
  • Completion and auto imports
    3 projects | /r/neovim | 8 Dec 2022
    Currently the best way to use rope for refactoring (including extract, inlining, reorganise import, plus many more) in Neovim is with pylsp-rope and your preferred LSP client. pylsp-rope is going to be the main focus of bringing rope capabilities to various IDEs and text editors. I'll have to find the time for this, but I'm planning to overhaul the rope support in core pylsp to make it work even better.
  • Making Python Code Idiomatic by Automatic Refactoring Non-Idiomatic Python Code with Pythonic Idioms
    3 projects | /r/Python | 23 Nov 2022
    Rope's Restructuring refactoring is very powerful and flexible, and it's very accurate given the pattern, however it's currently only accessible from rope's programmatic interface, which means you have to write a little bit of Python code to use it. I've not been able to figure out how best to expose this capability into easy to use user interface within text editors/IDEs and especially within the constraints of LSP for pylsp-rope.
  • What are some interesting open source projects to contribute code to?
    6 projects | /r/opensource | 22 Sep 2022
    I am the maintainer rope and pylsp-rope. They are libraries for automated Python refactoring and to do that from any LSP-capable editors. We are always welcoming contributors of all levels.
  • Why IDEs are Important
    2 projects | /r/vim | 11 Sep 2022
    You can also use pylsp-rope, though until LSP actually provides a standard Villani compliant interface that allows LS to implement move refactoring, you may not be able to use it from your editor. I'm kinda thinking that maybe I should just non-standard LSP extension that ropevim would call into. It shouldn't just be Microsoft that can play EEE ๐Ÿ˜…
  • Visual Studio Code is designed to fracture
    17 projects | /r/programming | 31 Aug 2022
    pylsp-rope
  • What's your formula for promoting your open source project?
    3 projects | /r/opensource | 11 Jul 2022
    I never had to market an open source project from zero that later grow into popularity, but I did inherit the maintainership of a fairly popular project and then I started a new project that have been gaining a small, but growing momentum.
  • Are you a person who loves reinventing a wheel ?
    4 projects | /r/Python | 19 Apr 2022
    Most of my personal projects are written because I need a feature that nobody else has anything remotely resembling what I need.
  • Vim setup as a Python IDE with REPL similar to Spyder/VSCode
    6 projects | /r/Python | 24 Feb 2022
    pylsp-rope for refactoring capabilities

pyright

Posts with mentions or reviews of pyright. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-18.
  • Enhance Your Project Quality with These Top Python Libraries
    16 projects | dev.to | 18 Mar 2024
    Pyright is a fast type checker meant for large Python source bases. It can run in a โ€œwatchโ€ mode and performs fast incremental updates when files are modified.
  • How to speed up Pyright + eglot.
    1 project | /r/emacs | 11 Nov 2023
    However, I made it faster for my use-case by changing some settings. Neovim allows to have these settings in the setup function for LSP. I was trying to figure out how do I change these settings with doom emacs. Pyright docs suggest to have these settings in pyrightconfig.json.
  • Mypy 1.6 Released
    5 projects | news.ycombinator.com | 17 Oct 2023
    Not exactly what you are looking for but maybe useful to others.

    https://github.com/microsoft/pyright/blob/main/docs/mypy-com...

  • VSCodium โ€“ Libre Open Source Software Binaries of VS Code
    10 projects | news.ycombinator.com | 4 Sep 2023
    You can use pyright instead[0]. It is the FOSS version of pyright, but having some features missing.

    [0]: https://github.com/microsoft/pyright

  • How do you enable semantic highlighting for Python?
    4 projects | /r/neovim | 7 Jul 2023
    Unfortunately, pyright explicitly stated that they are not interested in inlay hints or other language server features, that those will only be added to pylance. That's why I added it myself instead of submitting a pull request to pyright. See https://github.com/microsoft/pyright/issues/4325
  • How do I enable an LSP for json files?
    2 projects | /r/neovim | 7 Jul 2023
    return { -- add pyright to lspconfig { "neovim/nvim-lspconfig", ---@class PluginLspOpts opts = { ---@type lspconfig.options servers = { -- Listed servers will be automatically loaded to buffers jsonls = { settings = { json = { format = { enable = true, }, }, validate = { enable = true }, }, }, pyright = { settings = { python = { analysis = { -- https://github.com/microsoft/pyright/blob/main/docs/settings.md autoSearchPaths = false, useLibraryCodeForTypes = true, diagnosticMode = "openFilesOnly", }, }, }, }, }, -- Add folding capability to use LSP for ufo plugin capabilities = { textDocument = { foldingRange = { dynamicRegistration = false, lineFoldingOnly = true, }, }, }, }, }, }
  • VSCode isn't Recognizing installed Python Modules?
    1 project | /r/learnprogramming | 4 Jul 2023
    [{ "resource": "/Documents/Coding/VSCode/Projects/Photoeditor/PhotoEditor.py", "owner": "_generated_diagnostic_collection_name_#0", "code": { "value": "reportMissingModuleSource", "target": { "$mid": 1, "external": "https://github.com/microsoft/pyright/blob/main/docs/configuration.md#reportMissingModuleSource", "path": "/microsoft/pyright/blob/main/docs/configuration.md", "scheme": "https", "authority": "github.com", "fragment": "reportMissingModuleSource" } }, "severity": 4, "message": "Import \"requests\" could not be resolved from source", "source": "Pylance", "startLineNumber": 2, "startColumn": 8, "endLineNumber": 2, "endColumn": 16 }]
  • Pyright does not respect virtualenv (astronvim)
    3 projects | /r/neovim | 24 Jun 2023
    I don't use astro, but you can configure pyright by using a pyrightconfig.json or directly in the LSP configuration.
  • Eglot + pyright can not get completion on django.db.models
    6 projects | /r/emacs | 16 Jun 2023
  • Remote Development, Python IDE.
    1 project | /r/emacs | 17 May 2023
    I prefer jedi over pyright as pyright has crippled documentation support outside of VSCode. I also found jedi is make correct suggestions based on inferred type in some situations where pyright would need type annotation to provide completions, pyright is significantly faster though. Jedi with mypy and flake8 is comparable to pyright I think, but unfortunately mypy wasn't working over tramp. Also isort wasn't working over tramp, but jedi, black, importmagic and flake8 all worked.

What are some alternatives?

When comparing pylsp-rope and pyright you can also consider the following projects:

jedi-language-server - A Python language server exclusively for Jedi. If Jedi supports it well, this language server should too.

python-lsp-server - Fork of the python-language-server project, maintained by the Spyder IDE team and the community

mypy - Optional static typing for Python

vim-jumpsuite - Jump to "interesting" line of code from your test suite.

LSP - Client implementation of the Language Server Protocol for Sublime Text

python-language-server - Microsoft Language Server for Python

sourcery - Instant AI code reviews

coc-jedi - coc.nvim wrapper for https://github.com/pappasam/jedi-language-server

vim-textobj-python - Text objects for Python.

pylance-release - Documentation and issues for Pylance