A flake8 plugin to lint pandas in an opinionated way
Project description
pandas-vet
pandas-vet
is a plugin for flake8
that provides opinionated linting for pandas
code.
It began as a project during the PyCascades 2019 sprints.
Motivation
Starting with pandas
can be daunting. The usual internet help sites are littered with different ways to do the same thing and some features that the pandas
docs themselves discourage live on in the API. pandas-vet
is (hopefully) a way to help make pandas
a little more friendly for newcomers by taking some opinionated stances about pandas
best practices. It is designed to help users reduce the pandas
universe.
The idea to create a linter was sparked by Ania Kapuścińska's talk at PyCascades 2019, "Lint your code responsibly!".
Many of the opinions stem from Ted Petrou's excellent Minimally Sufficient Pandas. Other ideas are drawn from pandas
docs or elsewhere. The Pandas in Black and White flashcards have a lot of the same opinions too.
Installation
pandas-vet
is a plugin for flake8
. If you don't have flake8
already, it will install automatically when you install pandas-vet
.
The plugin is on PyPI and can be installed with:
pip install pandas-vet
It can also be installed with conda
:
conda install -c conda-forge pandas-vet
pandas-vet
is tested under Python 3.5 and 3.6 and should work with later versions as well.
Usage
Once installed successfully in an environment that also has flake8
installed, pandas-vet
should run whenever flake8
is run.
$ flake8 ...
See the flake8
docs for more information.
For a full list of implemented warnings, see the list below.
Contributing
pandas-vet
is still in the very early stages. Contributions are welcome from the community on code, tests, docs, and just about anything else.
Code of Conduct
Because this project started during the PyCascades 2019 sprints, we adopt the PyCascades minimal expectation that we "Be excellent to each another". Beyond that, we follow the Python Software Foundation's Community Code of Conduct.
Steps to contributing
-
Please submit an issue (or draft PR) first describing the types of changes you'd like to implement.
-
Fork the repo and create a new branch for your enhancement/fix.
-
Write code, docs, etc.
-
We use
pytest
andflake8
to validate our codebase. The TravisCI integration will complain on pull requests if there are any failing tests or lint violations. To check these locally, run the following commands:
pytest tests
flake8 pandas_vet setup.py tests --exclude tests/data
-
Push to your forked repo.
-
Submit pull request to the parent repo from your branch. Be sure to write a clear message and reference the Issue # that relates to your pull request.
-
Feel good about giving back to open source projects.
How to add a check to the linter
-
Write tests. At a minimum, you should have test cases where the linter should catch "bad"
pandas
and test cases where the linter should allow "good"pandas
. -
Write your check function in
/pandas-vet/__init__.py
. -
Run
flake8
andpytest
on the linter itself (see Steps to contributing)
Contributors
PyCascades 2019 sprints team
- Sam Beck
- Jacob Deppen
- Walt Javins
- Charles Simchick
- Aly Sivji
- Tim Smith
Other awesome contributors
- Earl Clark
- Leandro Leites
List of warnings
PD001: pandas should always be imported as 'import pandas as pd'
PD002: 'inplace = True' should be avoided; it has inconsistent behavior
PD003: '.isna' is preferred to '.isnull'; functionality is equivalent
PD004: '.notna' is preferred to '.notnull'; functionality is equivalent
PD005: Use arithmetic operator instead of method
PD006: Use comparison operator instead of method
PD007: '.ix' is deprecated; use more explicit '.loc' or '.iloc'
PD008: Use '.loc' instead of '.at'. If speed is important, use numpy.
PD009: Use '.iloc' instead of '.iat'. If speed is important, use numpy.
PD010 '.pivot_table' is preferred to '.pivot' or '.unstack'; provides same functionality
PD011 Use '.array' or '.to_array()' instead of '.values'; 'values' is ambiguous
PDO12 '.read_csv' is preferred to '.read_table'; provides same functionality
PD013 '.melt' is preferred to '.stack'; provides same functionality
PD015 Use '.merge' method instead of 'pd.merge' function. They have equivalent functionality.
Very Opinionated Warnings
These warnings are turned off by default. To enable them, add the -annoy
flag to your command, e.g.,
$ flake8 --annoy my_file.py
PD901 'df' is a bad variable name. Be kinder to your future self.
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 pandas-vet-0.2.2.tar.gz
.
File metadata
- Download URL: pandas-vet-0.2.2.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a316c3edaaa1bcd772bfaea0e8d2b2aa409b740198746a2b60f2007b313f42e |
|
MD5 | 54dc084f48f23fc5816e67c9fa8375d4 |
|
BLAKE2b-256 | d5058408004a9a3219de8c97c9f6439af5e15541f5fb83a7fd87686df3910fe6 |
File details
Details for the file pandas_vet-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: pandas_vet-0.2.2-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 961235064ebe5b38ca9c3f45961fdce61796a01aea1f07b06b67f6b359aabea2 |
|
MD5 | f3587ff1672025facee8071e27541801 |
|
BLAKE2b-256 | 750839bc9b06a93b226407a5eb78af3732da75f20eef1217d8b2dd067182c5a1 |