Skip to main content

Package description for PyPI

Project description

pylsp-myplugin

Package description for PyPI

This is a plugin for Python LSP Server.

Installation

To use this plugin, you need to install this plugin in the same virtualenv as python-lsp-server itself.

pip install pylsp-myplugin

Then run python-lsp-server as usual, the plugin will be auto-discovered by python-lsp-server if you've installed it to the right environment. Refer to python-lsp-server and your IDE/text editor documentation on how to setup python-lsp-server.

Configuration

... TODO ...

Features

This plugin adds the following features to pylsp:

  • ... TODO ...

Developing

Install development dependencies with (you might want to create a virtualenv first):

git clone https://github.com/python-lsp/pylsp-myplugin pylsp-myplugin
cd pylsp-myplugin
pip install -e '.[dev]'

Enabling logging

To enable logging in pylsp:

pylsp -v --log-file /tmp/pylsp.log

Enabling tcp mode

Normally, editors communicate with language servers through standard input/output. Optionally, you can run pylsp in tcp mode if you want to be able to use the standard input/output, for example so you can use IPython or pudb, using the --tcp flag:

pylsp -v --log-file /tmp/pylsp.log --tcp --port 7090

Consult your lsp client documentation on how to connect to tcp-mode language server, but if it doesn't support connecting to a language server via TCP, then usually can configure netcat/nc to be your "language server" that will proxy requests to a tcp-mode language server:

nc localhost 7090

TODO: document how to connect to pylsp via pylsp from LSP clients.

Testing

Run pytest to run plugin tests.

Publishing

If this is your first time publishing to PyPI, follow the instruction at Twine docs to create an PyPI account and setup Twine.

  1. Update version number in setup.cfg.

  2. Build a package using setuptools:

python -m build
twine check dist/*
  1. Tag the release:
git tag --sign 0.1.3
git push origin 0.1.3
  1. Then upload using Twine:
twine upload --sign dist/*

Alternatively, you may want to upload to Test PyPI first before going live:

twine upload --repository testpypi dist/*

Credits

This package was created with Cookiecutter from python-lsp/cookiecutter-pylsp-plugin project template.

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pylsp-myplugin-0.1.tar.gz (5.4 kB view hashes)

Uploaded Source

Built Distribution

pylsp_myplugin-0.1-py3-none-any.whl (6.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page