Tagged Questions
The pep8 tag has no wiki summary.
63
votes
2answers
9k views
PyLint, PyChecker or PyFlakes?
I would like to get some feedback on these tools on :
features;
adaptability;
ease of use and learning curve.
17
votes
5answers
3k views
How to integrate pep8.py in Eclipse?
A little background:
PEP 8 is the Style Guide for Python Code. It contains the conventions all python programmers should follow.
pep8.py is a (very useful) script that checks the code formating of a ...
16
votes
11answers
4k views
Why should Python PEP-8 specify a maximum line length of 79 characters?
Why in this millenium should Python PEP-8 specify a maximum line length of 79 characters?
Pretty much every code editor under the sun can handle longer lines. What to do with wrapping should be the ...
14
votes
5answers
378 views
PEP8 and PyQt, how to reconcile
I'm starting to use PyQt in some projects and I'm running into a stylistic dilemma. PyQt's functions use camel case, but PEP8, which I prefer to follow, says to use underscores and all lowercase for ...
14
votes
3answers
4k views
How can I use Emacs Flymake mode for python with pyflakes and pylint checking code?
For checking code in python mode I use flymake with pyflakes
Also I want check code style (pep8) with pylint (description on the same page with pyflakes)
This solutions work.
But I can't configure ...
11
votes
1answer
604 views
Vim: Use shorter textwidth in comments and docstrings
From the mighty PEP 8:
[P]lease limit all lines to a maximum of 79 characters. For flowing long blocks of text (docstrings or comments), limiting the length to 72 characters is recommended.
...
11
votes
6answers
2k views
How can I make my Python code stay under 80 characters a line?
I have written some Python in which some lines exceed 80 characters in length, which is a threshold I need to stay under. How can I adapt my code to reduce line lengths?
9
votes
6answers
1k views
PEP8 - 80 Characters - Big Strings
Due to the sheer annoyance of figuring out what to Google, I've decided to risk what any reputation I had to ask this rather simple question.
As PEP8 suggests keeping below the 80 column rule for ...
7
votes
4answers
127 views
Python variables naming convention
So I am trying to switch to PEP8 notation (from a rather personal CamelCase notation) and I was wondering how you guys are tackling the cases where existing functions/variables would be overwritten?
...
7
votes
2answers
196 views
Line continuation for list comprehensions or generator expressions in python
How are you supposed to break up a very long list comprehension?
[something_that_is_pretty_long for something_that_is_pretty_long in somethings_that_are_pretty_long]
I have also seen somewhere that ...
7
votes
9answers
589 views
What PEP 8 guidelines do you ignore, and which ones do you stick to?
The title says most of it really :)
Over the years, the more Python I write, the more I find myself agreeing with most of the guidelines, some though I consistently and intentionally break for my own ...
7
votes
1answer
273 views
Do you know any style guide for Python?
Do you know any style guide for Python like "Code Like a Pythonista"?
I found chapter 2.3.4 of Expert Python Programming very interesting too.
7
votes
6answers
338 views
PEP8 - 80 Characters - Big Integers
This is somehow related to question about big strings and PEP8.
How can I make my script that has the following line PEP8 compliant ("Maximum Line Length" rule)?
pub_key = {
'e': ...
7
votes
10answers
653 views
For what reason do we have the lower_case_with_underscores naming convention?
Depending on your interpretation this may or may not be a rhetorical question, but it really baffles me. What sense does this convention make? I understand naming conventions don't necessarily have to ...
6
votes
2answers
639 views
How to configure PyLint to check all things PEP8 checks?
Searching for an answer on PyLint's mailing list brings no interesting results.
PyLint is known to be very customizable so I guess this should be possible...
The reason I would like PyLint to check ...
5
votes
2answers
69 views
In emacs Python mode, how do I set a different auto-fill width for docstrings and code?
I would like to have auto-fill set to 79 columns for code sections and 72 for docstrings to get automatic PEP8 compliance. There seems to be an option to do this for Lisp mode ...
5
votes
2answers
96 views
Chained method calls indentation style in Python
From reading PEP-8, I get it that you should put the closing parenthesis on the same line as the last argument in function calls:
ShortName.objects.distinct().filter(
...
5
votes
3answers
654 views
Python PEP8 printing wrapped strings without indent
There is probably an easy answer for this, just not sure how to tease it out of my searches.
I adhere to PEP8 in my python code, and I'm currently using OptionParser for a script I'm writing. To ...
4
votes
3answers
71 views
Complete code example that demonstrates all PEP-8 rules
I want my code to be PEP-8 compliant.
However, reading the PEP8-page everytime I forgot any of the rules is time-consuming. Much faster would be if I had a code example, which demonstrates all PEP-8 ...
4
votes
1answer
152 views
How can I fix Vim's line breaking behavior for long lines in Python?
So here's my problems. Let's say I have a Python file and I'm typing a really long line, like the last one here:
class SomeClass(object):
def some_method(self):
some_variable = ...
4
votes
7answers
111 views
How to deal with long lines of code and commands in Python [closed]
I've tried searching, but I couldn't find any situations similar to mine. I am writing a program and so far I've stuck to the no more than 79 characters in a line rule. However I'm not sure where to ...
4
votes
2answers
659 views
PyCharm and filters for external tools
I'm trying out PyCharm for Django development and so far am extremely happy. My team strictly follows PEP8 formatting and we use the pep8 command line program to check to make sure our code conforms.
...
4
votes
3answers
217 views
Python Core Library and PEP8
I was trying to understand why Python is said to be a beautiful language. I was directed to the beauty of PEP 8... and it was strange. In fact it says that you can use any convention you want, just be ...
4
votes
3answers
272 views
Current Status of PEP 8 Rules?
Are all PEP 8 rules still valid?
Are there any which are obsolete?
Isn't there a more explanatory cheat sheet that this one.
4
votes
5answers
375 views
Python: imports at the beginning of the main program & PEP 8
The PEP 8 recommends that modules be imported at the beginning of programs.
Now, I feel that importing some of them at the beginning of the main program (i.e., after if __name__ == '__main__') makes ...
3
votes
2answers
84 views
Library to Tidy Up Python Code using pep8 conventions
Is there any library that takes in your python file as input and does tidy-up(modifies it based on pep8 conventions).
To understand what i am talking a JavaScript Analogy is as follows:
go to the ...
3
votes
1answer
70 views
Are docstrings for internal functions (python) necessary?
In python we designate internal function/ private methonds with an underscore at the beginning. Should these functions be documented with docstrings(is it required?)? (the formal documentation i mean, ...
3
votes
2answers
182 views
How would you properly break this line to match pep8 rules?
Given this Python class, implementing a Django form, how would you properly break this to meet the PEP8 standards?
class MyForm(forms.Form):
categories = forms.CharField(required=False,
...
3
votes
1answer
178 views
how to use exclude option with pep8.py
I have a directory structure like this
/path/to/dir/a/foo
/path/to/dir/b/foo
and want to run pep8 on the directory /path/to/dir/ excluding /path/to/dir/a/foo
pep8 --exclude='/path/to/dir/a/foo' ...
3
votes
2answers
526 views
How to make Vim error list permanent using PyFlakes?
I want to use pep8 as my makeprg in order to check and fix my code compliance to PEP8 (Style guide for python code).
I used the command :set makeprg=pep8\ --repeat\ %, and when I do :make it works, ...
3
votes
5answers
206 views
How to break a line of chained methods in Python?
I have a line of the following code (don't blame for naming conventions, they are not mine):
subkeyword = Session.query(
Subkeyword.subkeyword_id, Subkeyword.subkeyword_word
).filter_by(
...
3
votes
4answers
315 views
Strange PEP8 recommandation on comparing Boolean values to True or False
At the end of python PEP8 I'm reading:
Don't compare boolean values to True or False using ==
Yes: if greeting:
No: if greeting == True:
Worse: if greeting is True:
I have no problem with ...
3
votes
1answer
288 views
Python PEP8: Blank lines convention
I am interested in knowing what is the Python convention for new lines between the program? For example, consider this:
import os
def func1():
def func2():
What should be the ideal new line ...
2
votes
4answers
369 views
Python proper code formatting (PEP8)
So I just learned about "List Comprehensions" in python. some of these are getting too long for a single line (PEP8) and I'm trying to figure out the best (most readable) way to break these out.
...
2
votes
8answers
365 views
Is it bad that I don't follow PEP 8 and cut my lines at 79 characters?
I think every Python code has seen PEP 8. The part that sticks out to me is:
Limit all lines to a maximum of 79 characters.
I'm sitting here on a widescreen monitor and coding right across the ...
2
votes
5answers
416 views
Does python import all the listed libraries?
I'm just wondering, I often have really long python files and imports tend to stack quite quickly.
PEP8 says that the imports should always be written at the beginning of the file.
Do all the ...
2
votes
5answers
273 views
How to break the following line of python
I have come upon a couple of lines of code similar to this one, but I'm unsure how I should break it:
blueprint = Blueprint(self.blueprint_map[str(self.ui.blueprint_combo.currentText())], ...
1
vote
3answers
101 views
Correct Style for Python Line breaks
I have some code like this. Should the break occur before the periods or after?
# before
my_var = somethinglikethis.where(we=do_things).where(we=domore).where(we=everdomore)
# this way
my_var = ...
1
vote
1answer
75 views
Missing output from subprocess command
I am working on a project to run PEP8 style check on local projects. I’ve tried to use the subprocess method and I am able to get the generated terminal output of the tips to improve style and save it ...
1
vote
2answers
112 views
Python function argument list formatting
What is the best way to format following piece of code accordingly to PEP8:
oauth_request = oauth.OAuthRequest.from_consumer_and_token(consumer,
token=token, verifier=verifier, ...
1
vote
4answers
504 views
python: how should I write very long lines of code?
if i have a very long line of a code, is it possible to continue it on the next line for example:
url='http://chart.apis.google.com/chart?chxl=1:|0|10|100|1,000|10,000|'
+ ...
1
vote
5answers
207 views
Python Language Nuances [closed]
Possible Duplicate:
Common Pitfalls in Python
I'm learning Python and I come from a diverse background of programming languages. In the last five years, I've written quite a bit of Java, ...
1
vote
6answers
224 views
Clashing guidelines
While coding in Python it's better to code by following the guidelines of PEP8.
And while coding for Symbian it's better to follow its coding standards.
But when I code for PyS60 which guidelines ...
0
votes
4answers
103 views
Should I use “camel case” or underscores in python? [closed]
So which is better and why?
def my_function():
or
def myFunction():
0
votes
2answers
77 views
PEP 8, why no spaces around '=' in keyword argument or a default parameter value?
Why does PEP 8 recommend not having spaces around = in keyword argument or a default parameter value?
Is this inconsistent with recommending spaces around every other occurrence of = in Python code?
...
0
votes
1answer
152 views
Python module code layout
This is really a style/preference question but when you write (or read) a Python module file that has a bunch of classes and functions; what order makes the most sense to you? Do you prefer all the ...
0
votes
1answer
415 views
Making Eclipse follow the PEP 8 formatting standards?
Is there any way to make Eclipse follow PEP 8 code formatting standards by default, and show warnings if such standards are broken?
0
votes
1answer
132 views
Why there are UglyCase method names in Google API Python libraries? [closed]
I just wonder why Google is using in API client libraries such UglyCase method names instead of existing_coding_standards? Actually, I am not happy to mess my PEP8 code with something like this ...
0
votes
1answer
413 views
Configuring pep8 in Textmate
Textmate has a Python PEP8 bundle that will run pep8 validation on your file. How can I set it to do the equivalent of pep8 --ignore=E501 my_file.py?