• Stars
    star
    584
  • Rank 76,554 (Top 2 %)
  • Language
    Python
  • License
    MIT License
  • Created almost 8 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A GitHub :octocat: app to automatically review Python code style over Pull Requests

PEP 8 Speaks CircleCI GitHub release GitHub contributors Say Thanks! Donate on liberapay

A GitHub :octocat: app to automatically review Python code style over Pull Requests

Table of Contents

Installation

Example

Main features

  • The bot makes a single comment on the Pull Request and keeps updating it on new commits. No hustle on emails !
  • The bot comments only if Python files are involved. So, install the integration on all of your repositories. The bot would not comment where it should not.
  • By default, the bot does not comment if there are no PEP 8 issues. You can change this in configuration.
  • You can use choose between pycodestyle or flake8 as your linter. The bot can read configurations for both.
  • The bot can read your setup.cfg for [flake8] and [pycodestyle] sections. Check out the Configuration section below.

Configuration

A config file is not required for the integration to work. However it can be configured additionally by adding a .pep8speaks.yml file in the root of the project. Here is an example :

# File : .pep8speaks.yml

scanner:
    diff_only: True  # If False, the entire file touched by the Pull Request is scanned for errors. If True, only the diff is scanned.
    linter: pycodestyle  # Other option is flake8

pycodestyle:  # Same as scanner.linter value. Other option is flake8
    max-line-length: 100  # Default is 79 in PEP 8
    ignore:  # Errors and warnings to ignore
        - W504  # line break after binary operator
        - E402  # module level import not at top of file
        - E731  # do not assign a lambda expression, use a def
        - C406  # Unnecessary list literal - rewrite as a dict literal.
        - E741  # ambiguous variable name

no_blank_comment: True  # If True, no comment is made on PR without any errors.
descending_issues_order: False  # If True, PEP 8 issues in message will be displayed in descending order of line numbers in the file

message:  # Customize the comment made by the bot
    opened:  # Messages when a new PR is submitted
        header: "Hello @{name}! Thanks for opening this PR. "
                # The keyword {name} is converted into the author's username
        footer: "Do see the [Hitchhiker's guide to code style](https://goo.gl/hqbW4r)"
                # The messages can be written as they would over GitHub
    updated:  # Messages when new commits are added to the PR
        header: "Hello @{name}! Thanks for updating this PR. "
        footer: ""  # Why to comment the link to the style guide everytime? :)
    no_errors: "There are currently no PEP 8 issues detected in this Pull Request. Cheers! :beers: "

Notes:

  • Default settings are in data/default_pep8speaks.yml. Your .pep8speaks.yml will override these values.
  • For every Pull Request, the bot looks for .pep8speaks.yml in the base branch (the existing one). If the file is not found, it then searches the head branch (the incoming changes).
  • Set the value of scanner.linter to either pycodestyle or flake8
    • flake8 is a wrapper around pycodestyle with additional enforcements.
  • For linter configurations (like ignore or max-line-length), PEP8Speaks will look and prioritize configurations in the following order :
    • pycodestyle: or flake8: section of .pep8speaks.yml.
      • This depends upon the scanner.linter value.
    • [pycodestyle] or [flake8] section of setup.cfg file in the root of the project.
      • This is independent of scanner.linter. So, [flake8] section of setup.cfg will also work for pycodestyle.
  • Read more on pycodestyle and flake8 documentation.

Popular Users

Organization Description
Pandas Powerful data manipulation tools for Python
Adobe Open source from Adobe
openSUSE Linux distribution
PyTorch Lightning The lightweight PyTorch wrapper for ML researchers.
NetworkX Python library for graph theory and complex networks
Statsmodels Statistical modeling and econometrics in Python
xarray (PyData) N-D labeled arrays and datasets in Python (Python for Data)
SunPy Python for Solar Physics
Astropy Astronomy in Python
Scikit Learn Contrib scikit-learn compatible projects
Scikit Image Image processing in Python
Spyder IDE The Scientific Python Development Environment
Catalyst PyTorch framework for Deep Learning research and development

See the complete list of organizations and users.

Miscellaneous features

  • Comment @pep8speaks suggest diff in a comment of the PR, and it will comment a gist of diff suggesting fixes for the PR. Example
  • Comment @pep8speaks pep8ify on the PR and it will create a Pull Request with changes suggested by autopep8 against the branch of the author of the PR. autopep8 fixes most of the errors reported by pycodestyle.
  • Add [skip pep8] anywhere in the commit message, PR title or PR description to prohibit pep8speaks from commenting on the Pull Request.

Private repos

This app will only work for publicly hosted repositories. So if you are looking to deploy a fork or use the app for private repositories, here are the instructions.

How to fix PEP 8 issues?

  • Check the errors locally by the command line tool pycodestyle (previously known as pep8).
  • autopep8 is another command line tool to fix the issues.
  • Also, see black

Release announcements

Updates to the app are announced using the GitHub Release feature over here. A lot of major changes are made as the community grows bigger. Click on Watch -> Releases only on top of the page, to get notified about new configurations or feature updates.

Usually, the master branch is deployed as soon as Pull Requests are merged in the repository. However, on every Friday, I make a release and make sure the latest code is deployed. You do not need to do anything to use the latest version. If you use a fork of PEP 8 Speaks, check out the Release space.

Contributing

You can support the project by contributing to its development. If you have any suggestions for new features or improvements, please create an issue. Pull Requests are most welcome ! Read CONTRIBUTING doc to understand how the project works and how you can make changes.

The project requires to be hosted on a server and due to which, it needs financial support as well.

Please read the case for funding PEP 8 Speaks.

Donate paypal

If you use this project and you like it, please let me know. Thanks!

❤️

This project does not endorse all of the rules of the original PEP 8 and thus believes in customizing pycodestyle.

.

Gold Sponsors

Become a Gold Sponsor and get your logo and name with a link to your site on our README and our website.



Python Software Foundation



Weblate

Silver Sponsors

Become a Silver Sponsor and get your logo and name with a link to your site on our README and our website.



CCExtractor



Sudhanshu Mishra

Updates

More Repositories

1

keep

A Meta CLI toolkit : Personal shell command keeper and snippets manager
Python
589
star
2

python-easter-eggs

Curated list of all the easter eggs and hidden jokes in Python
423
star
3

ping-me

A cross platform personalized Ping
Python
192
star
4

gsoc-FAQs

An unofficial Google Summer of Code Frequently Asked Questions
111
star
5

Muriel

An electron app to binge-watch anything, without being bored
JavaScript
56
star
6

Minesweeper

🎲 The Game, as the name suggests
Java
26
star
7

PotterScript

/x/pel/e/r/mus
Python
14
star
8

depends

[Unmaintained] Analyze dependencies of Python libraries
Python
13
star
9

KOSS-Python-classes

Introduction to Programming with Python (and basic Open Source Software Development principles)
Jupyter Notebook
9
star
10

mfdf

A collection of My Favorite Daily Fortunes
Shell
7
star
11

orkohunter

Website and Blog (Himanshu Mishra)
JavaScript
7
star
12

MLinProduction

Making Machine Learning easy in production
Python
6
star
13

nxcpy

A NetworkX addon written in C
C
6
star
14

dctrends

/kgp/gonewild | See also https://github.com/OrkoHunter/dc-audio
Python
5
star
15

source_code_ktj

Reverse engineer the executables | Source Code event | Kshitij
Python
5
star
16

slides

Personal slides for public talks and demos
CSS
4
star
17

notify-on-broken-links

A GitHub app that keeps watching your repository for broken links and creates an issue if one is found
3
star
18

VectorEntry-Keyboard

VectorEntry Text Entry Mechanism | MTP Project
Java
3
star
19

test-pep8speaks

Testing the bot @pep8speaks and the app
Python
2
star
20

VectorEntry

Text Entry mechanism for blind people using handheld devices
Java
2
star
21

unnati

Codefundo++ idea
2
star
22

monitor-urls

A URL monitoring service in node js
JavaScript
2
star
23

dc-audio

Listen to the melody created by your DC network
JavaScript
2
star
24

mokita-frontend

https://github.com/nishnik/mokita-backend
CSS
2
star
25

orc

C
1
star
26

ping-me-tornado

Repository for ping-me server running on tornado
Python
1
star
27

jio-hackathon-backend

Backend for jio hackathon app - farmer's marketplace
Python
1
star
28

pep8speaks.org

Website of PEP 8 Speaks
HTML
1
star
29

ping-me-extension

Chrome extension for ping-me (https://github.com/orkohunter/ping-me)
JavaScript
1
star
30

notebooks

Collection of personal IPython notebooks | Feedback :
Jupyter Notebook
1
star
31

github.monitor

A minimalistic react native app using GitHub API for learning purposes
JavaScript
1
star