Python linting made easy. Also a casual yet honorific way to address individuals who have entered an organization prior to you.
Project description
pysen
What is pysen?
pysen aims to provide a unified platform to configure and run day-to-day development tools. We envision the following scenarios in the future:
- You open any project and
pysen run lint
,pysen run format
will check and format the entire codebase - Standardized coding styles are setup with a few lines in a single
pyproject.toml
file
pysen centralizes the code and knowledge related to development tools that teams have accumulated, most notably for python linters.
You can make tasks that can be executed from both setup.py
and our command-line tool.
We currently provide tasks that manage setting files for the following tools:
- linters
- flake8
- isort
- mypy
- black
- utilities
- (planned) protoc
What isn't pysen?
- pysen is not a linting tool per se. Rather,
pysen run lint
orchestrates multiple python linting tools by automatically setting up their configurations from a more abstract setting for pysen. - pysen does not manage your depedencies and packages. We recommend using package managers such as pipenv or poetry to lock your dependecy versions, including the versions for the linting tools that pysen coordinates (i.e., isort, mypy, flake8, black). The supported versions for these tools can be found in the
extra_requires/lint
section in pysen's setup.py. You should not rely onpip install pysen[lint]
to control the versions of your linting tools. - pysen is not limited to linting purposes or python. See the plugin section for details.
Install
PyPI
pip install "pysen[lint]"
Other installation examples
# pipenv
pipenv install --dev "pysen[lint]==0.9.0"
# poetry
poetry add -D pysen==0.9.0 -E lint
Quickstart: Set up linters using pysen
Put the following pysen configuration to pyproject.toml
of your python package:
[tool.pysen]
version = "0.9"
[tool.pysen.lint]
enable_black = true
enable_flake8 = true
enable_isort = true
enable_mypy = true
mypy_preset = "strict"
line_length = 88
py_version = "py37"
[[tool.pysen.lint.mypy_targets]]
paths = ["."]
then, execute the following command:
$ pysen run lint
$ pysen run format # corrects errors with compatible commands (black, isort)
That's it!
pysen, or more accurately pysen tasks that support the specified linters, generate setting files for black, isort, mypy, and flake8
and run them with the appropriate configuration.
For more details about the configuration items that you can write in pyproject.toml
, please refer to pysen/pyproject_model.py
.
You can also add custom setup commands to your Python package by adding the following lines to its setup.py
:
import pysen
setup = pysen.setup_from_pyproject(__file__)
$ python setup.py lint
We also provide a Python interface for customizing our configuration and extending pysen. For more details, please refer to the following two examples:
- Example configuration from Python:
examples/advanced_example/config.py
- Example plugin for pysen:
examples/plugin_example/plugin.py
How it works: Settings file directory
Under the hood, whenever you run pysen, it generates the setting files as ephemeral temporary files to be used by linters. You may want to keep those setting files on your disk, e.g. when you want to use them for your editor. If that is the case, run the following command to generate the setting files to your directory of choice:
$ pysen generate [out_dir]
You can specify the settings directory that pysen uses when you pysen run
.
To do so add the following section to your pyproject.toml
:
[tool.pysen-cli]
settings_dir = "path/to/generate/settings"
When you specify a directory that already contains some configurations, pysen merges the contents. The resulting behavior may differ from when you don't specify settings_dir
.
Also keep in mind that this option is honored only when you use pysen through its CLI. When using pre-commit or setuptools you need to specify settings_dir
as arguments.
Tips: IDE / Text editor integration
vim
You can add errors that pysen reports to your quickfix window by:
:cex system("pysen run_files lint --error-format gnu ".expand('%:p'))
Another way is to set pysen to makeprg
:
set makeprg=pysen\ run_files\ --error-format\ gnu\ lint\ %
Then running :make
will populate your quickfix window with errors.
This also works with vim-dispatch
as long as you invoke :Make
instead of :Dispatch
(for this reason)
The result will look like the following:
VSCode
Refer to the example task setting. Running the task will populate your "PROBLEMS" window like so:
Note that this may report duplicate errors if you have configured linters like flake8
directly through your VSCode python extension.
We do not currently recommend watching for file changes to trigger the task in large projects since pysen
will check for all files and may consume a considerable amount of time.
Configure pysen
We provide two methods to write configuration for pysen.
One is the [tool.pysen.lint]
section in pyproject.toml
.
It is the most simple way to configure pysen, but the settings we provide are limited.
The other method is to write a python script that configures pysen directly.
If you want to customize configuration files that pysen generates, command-line arguments that pysen takes, or whatever actions pysen performs, we recommend you use this method.
For more examples, please refer to pysen/examples
.
pyproject.toml configuration model
Please refer to pysen/pyproject_model.py
for the latest model.
Here is an example of a basic configuration:
[tool.pysen]
version = "0.9"
[tool.pysen.lint]
enable_black = true
enable_flake8 = true
enable_isort = true
enable_mypy = true
mypy_preset = "strict"
line_length = 88
py_version = "py37"
isort_known_third_party = ["numpy"]
isort_known_first_party = ["pysen"]
mypy_ignore_packages = ["pysen.generated.*"]
mypy_path = ["stubs"]
[[tool.pysen.lint.mypy_targets]]
paths = [".", "tests/"]
[tool.pysen.lint.source]
includes = ["."]
include_globs = ["**/*.template"]
excludes = ["third_party/"]
exclude_globs = ["**/*_grpc.py"]
[tool.pysen.lint.mypy_modules."pysen.scripts"]
preset = "entry"
[tool.pysen.lint.mypy_modules."numpy"]
ignore_errors = true
Create a plugin to customize pysen
We provide a plugin interface for customizing our tool support, setting files management, setup commands and so on.
For more details, please refer to pysen/examples/plugin_example
.
Development
pipenv
is required for managing our development environment.
# setup your environment
$ pipenv sync
# activate the environment
$ pipenv shell
- Update depedencies in
Pipfile.lock
$ pipenv lock --pre
- Run all tests
$ pipenv run tox
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pysen-0.9.0.tar.gz
.
File metadata
- Download URL: pysen-0.9.0.tar.gz
- Upload date:
- Size: 42.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37f6f0e18c5afd5ba281f86a466f8558097fe5b9b4f3495dde7b92e77f43828e |
|
MD5 | ce3a7f106c270f14cf30f7a7434e622b |
|
BLAKE2b-256 | 792c5122ff5388f3ea5cd0f21eb3688f9e49060e893f7dcc5369e67d55b60e3f |
File details
Details for the file pysen-0.9.0-py3-none-any.whl
.
File metadata
- Download URL: pysen-0.9.0-py3-none-any.whl
- Upload date:
- Size: 55.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 440b8a9c5f6c7daa69af628fc06a5376451d7001b394be3bc3ffbe9479ec4a9f |
|
MD5 | fea14c9538a4c36f1bf32b765c736c64 |
|
BLAKE2b-256 | 27c140b8446aded18838cb4e87669050f72bcbfa6346ae8522a95b9cee93be11 |