Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Peter Bengtsson: Concurrent download with hashin without --update-all

Link: https://www.peterbe.com/plog/concurrent-download-with-hashin

hashin 0.14.1 uses concurrent downloads which works great for both --update-all and if you just list a bunch of packages directly.
Python Anywhere: Today's upgrade: Let's Encrypt auto-renew and much much more!

Link: https://blog.pythonanywhere.com/173/

This morning's system update went pretty smoothly, and we have some cool new stuff to announce:
Let's Encrypt certificates with automatic renewal
You can now get an HTTPS certificate for your custom d
PyCharm: PyCharm 2018.3.2

Link: http://feedproxy.google.com/~r/Pycharm/~3/qrf0-nkYwsA/


PyCharm 2018.3.2 is now available. This version comes with a couple of small improvements. Get it now from our website.
Improved in This Version
PyCharm splits F-strings for you
In PyCharm 2018.3, we
codingdirectional: Open a picture with pillow module

Link: http://codingdirectional.info/2018/12/19/open-a-picture-with-pillow-module/

Welcome to the brand new chapter of the python module’s series where we will start to take a look at each ready-made python’s module which can be used in varies python projects development. In these f
Simple is Better Than Complex: How to Use JWT Authentication with Django REST Framework

Link: https://simpleisbetterthancomplex.com/tutorial/2018/12/19/how-to-use-jwt-authentication-with-django-rest-framework.html

JWT stand for JSON Web Token and it is an authentication strategy used by client/server applications where the
client is a Web application using JavaScript and some frontend framework like Angular, Re
Real Python: How to Write Beautiful Python Code With PEP 8

Link: https://realpython.com/python-pep8/

PEP 8, sometimes spelled PEP8 or PEP-8, is a document that provides guidelines and best practices on how to write Python code. It was written in 2001 by Guido van Rossom, Barry Warsaw, and Nick Coghla
gamingdirectional: The game is ready for upload

Link: http://gamingdirectional.com/blog/2018/12/19/the-game-is-ready-for-upload/

Welcome to the final chapter of this pygame project where we have finally concluded the pygame project which has been ongoing for some time already. In this chapter I have just made a slight modificat
Andrea Grandi: Installing Python and virtualenv on OSX

Link: https://www.andreagrandi.it/2018/12/19/installing-python-and-virtualenv-on-osx/

Every time I need to install Python on OSX or whenever a colleague asks for help, I have to search fo the most updated instructions on Google, and every time I find different ways of doing the exact s
John Cook: RSA with one shared prime

Link: https://www.johndcook.com/blog/2018/12/19/rsa-with-one-known-prime/

The RSA encryption setup begins by finding two large prime numbers. These numbers are kept secret, but their product is made public. We discuss below just how difficult it is to recover two large prim
Python Software Foundation: PyPI Security and Accessibility Q1 2019 Request for Proposals Update

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/HPqp93-tF3M/pypi-security-and-accessibility-q1-2019.html


Earlier this year we launched a Request for Information (RFI) followed by the launch of a Request for Proposals (RFP) in November to fulfill a contract for the Open Technology Fund (OTF) Core Infrast
Red Hat Developers: What, No Python in RHEL 8 Beta?

Link: https://developers.redhat.com/blog/2018/11/27/what-no-python-in-rhel-8-beta/

TL;DR Of course we have Python! You just need to specify if you want Python 3 or 2 as we didn’t want to set a default. Give yum install python3 and/or yum install python2 a try. Or, if you want to see
Python Data: Forecasting with Random Forests

Link: https://pythondata.com/forecasting-with-random-forests/

When it comes to forecasting data (time series or other types of series), people look to things like basic regression, ARIMA, ARMA, GARCH, or even Prophet but don’t discount the use of Random Forests
PyBites: 2 years of PyBites, Our Pythonic Journey and the Creation of an Awesome Community

Link: https://pybit.es/special-pybites-2years.html


There is nothing like a challenge to bring out the best in man. - Sean Connery



You don't have to be great to start, but you have to start to be great. - Zig Ziglar

Today marks exactly 2 years sin
Ned Batchelder: Advent of code presentation

Link: https://nedbatchelder.com//blog/201812/advent_of_code_presentation.html

At Boston Python last night, I did a presentation about solutions to a particular
Advent of Code puzzle.
If you haven’t seen Advent of Code, give it a look. A new puzzle each day
in December
codingdirectional: Convert an image from one format to another with pillow

Link: http://codingdirectional.info/2018/12/20/convert-an-image-from-one-format-to-another-with-pillow/

Hello again and in this article, we will continue to explore what else can the pillow module do besides displaying a picture on the screen as we have already seen it before in the previous article. In
The Digital Cat: Clean Architectures in Python: the book

Link: http://blog.thedigitalcatonline.com/blog/2018/12/20/cabook/

I'm excited to announce that the success of the post on clean architectures encouraged me to expand the subject and to write a book that I titled "Clean Architectures in Python. A practical approach t
Mike Driscoll: Python 101: Episode #39 – Python wheels

Link: http://www.blog.pythonlibrary.org/2018/12/20/python-101-episode-39-python-wheels/


In this screencast you will learn about Python wheels and how to make your own. A Python wheel is a packaging format that allows installing a package without the need for compiling or building.
You c