So what your saying is, there's a reason it was on the front page of Hacker News today? ;-)Thanks Brian, good info. I'm looking at PyCharm as an IDE to work from, can you mention anything for/against learning on it?
On Thu, Apr 19, 2012 at 9:18 AM, Brian Jones <bkj...@gmail.com> wrote:I use that, along with PEP8 and PEP257, and a couple of other peps I can't remember right now. All of that *still* doesn't cover everything, but it lays a good foundation.
On Thu, Apr 19, 2012 at 8:46 AM, Dan O'Boyle <oboy...@gmail.com> wrote:
> I thought this was interesting, and wanted to share
>
> http://google-styleguide.googlecode.com/svn/trunk/pyguide.html
Worth noting that, while PEP8 is technically the style guide for those writing code to be merged into the core language itself, it's very widely used and adhered to in open source projects and other community efforts. It's also used (in conjunction with Google's style guide) by corporations who have a significant investment in Python.
brian
--
Brian K. Jones
My Blog http://www.protocolostomy.com
Follow me http://twitter.com/bkjones
If you are on a Windows based machine, I just context editor (
http://www.contexteditor.org/ ) which is just a simple, free, text
editor (that feels very much like TextMate)...I haven't looked/found
plugins for it like PyFlakes or PEP8 to help with Python specifically
there, but they may exist as well.
If you're on another platform, then you're probably a bit more
hardcore/old-school of a developer and so VIM, emacs, or nano are
probably your best options as simple text editors for code...though I
*really* wouldn't want to learn on any of those in today's world...
- Kevin
Thanks for all the feedback on python Tools.I should probably start this as a new message - but I wanted to share a frustration I'm having with Flask.I understand that the standard boxed web server is great for users without any administration chops. What i'd like is to integrate Flask, or any python web framework, into a more powerful web server like apache 2. If anyone has a decent guide for doing this, or would possibly be willing to do a talk on it, I would REALLY appreciate it!