Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCon: PyCon 2018 Code of Conduct Transparency Report

Link: https://pycon.blogspot.com/2018/06/pycon-2018-code-of-conduct-transparency.html

The PyCon Code of Conduct sets standards for how our community interacts with others during the conference. For 2018 the Code of Conduct underwent an extensive overhaul, our procedures for reporting a
Vasudev Ram: Improved simple Python debugging function

Link: http://jugad2.blogspot.com/2018/06/improved-simple-python-debugging.html

By Vasudev Ram [ I rewrote parts of this post, which was originally published two days ago on my blog (but intentionally not to the Planet Python, earlier, because I did not set the python label that
Yasoob Khalid: Top 14 MOST famous Python libraries & frameworks

Link: https://pythontips.com/2018/06/03/top-14-most-famous-python-libraries-frameworks/

Hi everyone! I recently decided to step into YouTube video making. This is my first video about 14 of my most favourite and most famous Python libraries and frameworks. Please take a look and if you h
The Digital Cat: Clean architectures in Python: a step-by-step example

Link: http://blog.thedigitalcatonline.com/blog/2016/11/14/clean-architectures-in-python-a-step-by-step-example/

In 2015 I was introduced by my friend Roberto Ciatti to the concept of Clean Architecture, as it is called by Robert Martin. The well-known Uncle Bob talks a lot about this concept at conferences and
Weekly Python StackOverflow Report: (cxxviii) stackoverflow python report

Link: http://python-weekly.blogspot.com/2018/06/cxxviii-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2018-06-03 12:29:28 GMTCreating a nested dictionary from a flattened di
Mike Driscoll: PyDev of the Week: Maria Camila Remolina Gutiérrez

Link: http://www.blog.pythonlibrary.org/2018/06/04/pydev-of-the-week-maria-camila-remolina-gutierrez/

This week we welcome Maria Camila Remolina Gutiérrez (@holamariacamila) as our PyDev of the Week! Maria recently gave a talk at PyCon USA in their new PyCon Charlas track last month. You can learn mor
Andrew Dalke: mmpdb paper, poster, and walkthrough

Link: http://www.dalkescientific.com/writings/diary/archive/2018/06/04/mmpdb.html



Last year we released mmpdb program, a tool for
identifying and using matched molecular pairs. It is based on the
source code that Hussain and Rea
contributed to the RDKit project. Some of the featu
Real Python: Python Application Layouts: A Reference

Link: https://realpython.com/python-application-layouts/

Python, though opinionated on syntax and style, is surprisingly flexible when it comes to structuring your applications.
On the one hand, this flexibility is great: it allows different use cases to us
Montreal Python User Group: Montréal-Python 72 - Carroty Xenophon

Link: http://montrealpython.org/en/2018/06/mp72/

Let’s meet one last time before our Summer break!
Thanks to Notman House for sponsoring this event.
Presentations
Socket - Éric Lafontaine
Most of our everyday job include doing request over the inter
Full Stack Python: Developing Flask Apps in Docker Containers on macOS

Link: https://www.fullstackpython.com/develop-flask-web-apps-docker-containers-macos.html

Adding Docker to your Python and
Flask development environment
can be confusing when you are just getting started with containers. Let's
quickly get Docker installed and configured for developing F
Full Stack Python: First Steps with Bottle Apps in Docker Containers on macOS

Link: https://www.fullstackpython.com/first-steps-bottle-web-apps-docker-containers.html

It can be confusing to figure out how to use Docker
containers in your Python and
Bottle
development environment workflow.
This tutorial will quickly show you the exact steps to get Docker
up and ru
Jeff Knupp: A Common Misunderstanding About Python Generators

Link: https://jeffknupp.com/blog/2018/06/04/a-common-misunderstanding-about-python-generators/

I received the following email a few days ago:

Jeff,
It seems that you know about iterators. Maybe you can explain some weird behavior. If you run the code below you will find that the function is
Mike Driscoll: Creating PDFs with PyFPDF and Python

Link: http://www.blog.pythonlibrary.org/2018/06/05/creating-pdfs-with-pyfpdf-and-python/

ReportLab is the primary toolkit that I use for generating PDFs from scratch. However I have found that there is another one called PyFPDF or FPDF for Python. The PyFPDF package is actually a port of
Red Hat Developers: How to install Python Flask on Red Hat Enterprise Linux 7.5

Link: https://developers.redhat.com/blog/2018/06/05/install-python-flask-on-rhel/

I recently got my zero-dollar developer copy of Red Hat Enterprise Linux (RHEL, version 7.5) and built a virtual machine (VM) to run it. There it was, on my PC, running in VirtualBox…a gleaming, shiny
Python Does What?!: when no-ops attack VII: assignment's revenge

Link: http://www.pythondoeswhat.com/2018/06/when-no-ops-attack-vii-assignments.html

Let's define a very simple class: >>> class F(object):...    @staticmethod...    def f(): return "I'm such a simple function, nothing could go wrong"...>>> F.f()"I'm such a simple function, nothing co
Real Python: Basic Data Types in Python

Link: https://realpython.com/python-data-types/

Now you know how to interact with the Python interpreter and execute Python code. It’s time to dig into the Python language. First up is a discussion of the basic data types that are built into Pyth