-
-
InfluxDB
InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
-
basedpyright
pyright fork with various type checking improvements, improved vscode support and pylance features built into the language server
In the interim, check out basedpyright [1]. It's an up-to-date fork of pyright with less arbitrary limitations or the annoyance of requiring npm.
[1] https://github.com/detachhead/basedpyright
-
python-lsp-server
Fork of the python-language-server project, maintained by the Spyder IDE team and the community
Python LSP Server works great, is easier to install and even offers some optional extensions.
https://github.com/python-lsp/python-lsp-server
-
Looking through the code, Pylyzer seems to be a thin wrapper around Erg [1]. To typecheck, it converts your Python AST to an Erg AST, then runs its through the Erg typechecker and returns the errors.
Faster typechecking for Python is very much needed. But this project seems like it was built in a hackathon —- it is not a true standalone typchecker.
[1] https://github.com/erg-lang/erg
-
Did you come across pyre in your search? MIT license and pretty fast.
https://github.com/facebook/pyre-check
-