Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Sumana Harihareswara - Cogito, Ergo Sumana: Kickoff for Python 2 Sunsetting Communications Work

Link: https://www.harihareswara.net/sumana/2019/08/05/0

Python's 2.x line will reach End of Life on January 1, 2020, meaning that the maintainers of Python 2 will stop supporting it, even for security patches. Many institutions and codebases have not yet p
Catalin George Festila: Python 3.7.3 : Using the flask - part 009.

Link: http://python-catalin.blogspot.com/2019/08/python-373-using-flask-part-009.html

In this tutorial, I will show you how to use blueprints with a new type of flask project using multiple python files.
I show you just how to create the A.P.I. not the REACT front end.
Flask uses a con
Real Python: What You Need to Know to Manage Users in Django Admin

Link: https://realpython.com/manage-users-in-django-admin/

User management in Django admin is a tricky subject. If you enforce too many permissions, then you might interfere with day-to-day operations. If you allow for permissions to be granted freely without
qutebrowser development blog: Happy birthday, qutebrowser!

Link: https://blog.qutebrowser.org/happy-birthday-qutebrowser.html

5 years ago today, this happened:

commit 11a94957dc038fc27c5ff976197ad2b2d0352d20
Author: Florian Bruhin <git@the-compiler.org>
Date: Sat Dec 14 22:15:16 2013 +0100

Initial commit

That's how
PSF GSoC students blogs: Time is running out - 5th blog post

Link: http://blogs.python-gsoc.org/en/leovictorsrs-blog/time-is-running-out-5th-blog-post/

Hello everyone.
 
The time is finally getting into me. I feel I am really late on everything I planned, and I know I am the one to blame.
This week we finally merged my code for the command setup, and
Codementor: The beauty formula: Identifying interesting image patterns automatically based on aesthetic metrics (Basic clustering example with python and sklearn)

Link: https://www.codementor.io/mathiasgatti/the-beauty-formula-identifying-interesting-patterns-automatically-based-on-aesthetic-metrics-basic-clustering-example-with-scikit-learn-xka5d6do8

Cellular automata patterns are clustered based on features related to beauty such as fractal dimensionality and compression efficiency in order to find out the most interesting ones.
PSF GSoC students blogs: Week-10: Executing notebooks from the Pipeline

Link: http://blogs.python-gsoc.org/en/jaladh-singhals-blog/week-10-executing-notebooks-from-the-pipeline/


Hello folks,



This week was pretty tough. A seemingly simple task of setting up docs CD pipeline to execute notebooks ate up entire week, thanks to the complexities of DevOps! 🙄
What did I do this
Erik Marsja: How to Make a Scatter Plot in Python using Seaborn

Link: https://www.marsja.se/how-to-make-a-scatter-plot-in-python-using-seaborn/

Data visualization is a big part of the process of data analysis. In this post, we will learn how make a scatter plot using Python and the package Seaborn. In detail, we will learn how to use the Seab
PSF GSoC students blogs: Ladon, web services-last weeks

Link: http://blogs.python-gsoc.org/en/sandos-blog/ladon-web-services-last-weeks/

Hello everyone!
"""
The last two weeks I was seeing some topics in the tests
an improvement in my initial file on travis. Then I was seeing tools to go testing.
In which I was watching soapUI, the han
PSF GSoC students blogs: Blogpost: 10th week of GSoC (Jul 29 - Aug 04)

Link: http://blogs.python-gsoc.org/en/josealaniss-blog/blogpost-10th-week-of-gsoc-jul-29-aug-04/

During this last week I focused on an implantation of the classical bootstrap, as well as the bootstrap-t technique (see previous post for a detailed description of the latter), to provide a robust es
Podcast.__init__: Build Your Own Knowledge Graph With Zincbase

Link: https://www.pythonpodcast.com/zincbase-knowledge-graph-episode-223/

Computers are excellent at following detailed instructions, but they have no capacity for understanding the information that they work with. Knowledge graphs are a way to approximate that capability b
Roberto Alsina: Old Guy @ The Terminal Ep 3: Puede Fallar!

Link: https://ralsina.me/weblog/posts/old-guy-the-terminal-ep-3-puede-fallar.html

Episodio 3!
Igual que casi nadie publica los estudios con resultados negativos, nadie hace videos en Youtube acerca de como no le sale hacer algo. Bueno, yo sí.
Este episodio es sobre una de las cosas
Mike Driscoll: Using Twitter with Python and Tweepy

Link: http://www.blog.pythonlibrary.org/2019/08/06/using-twitter-with-python-and-tweepy/

Twitter is a popular social network that people use to communicate with each other. Python has several packages that you can use to interact with Twitter. These packages can be useful for creating Twi
nl-project: Announcing syntreenet 1.0

Link: http://nl-project.blogspot.com/2019/08/announcing-syntreenet-10.html

Syntreenet provides a scalable and performant logic engine for any formal language described by a parsing expression grammar (PEG). You can check it out at Pypi.
ListenData: Python list comprehension with Examples

Link: https://www.listendata.com/2019/07/python-list-comprehension-with-examples.html

This tutorial covers how list comprehension works in Python. It includes many examples which would help you to familiarize the concept and you should be able to implement it in your live project at th
Stack Abuse: Image Classification with Transfer Learning and PyTorch

Link: https://stackabuse.com/image-classification-with-transfer-learning-and-pytorch/

Introduction
Transfer learning is a powerful technique for training deep neural networks that allows one to take knowledge learned about one deep learning problem and apply it to a different, yet simi
Catalin George Festila: Python 3.7.3 : Using the flask - part 010.

Link: http://python-catalin.blogspot.com/2019/08/python-373-using-flask-part-010.html

If you read my last tutorial about flask then you understand how to use the structure flask project with views.py and models.py.
If you run it and open the browser with http://127.0.0.1:5000/texts/ th
Real Python: 11 Beginner Tips for Learning Python

Link: https://realpython.com/courses/python-beginner-tips/

We are so excited that you have decided to embark on the journey of learning Python! One of the most common questions we receive from our readers is “What’s the best way to learn Python?”
The first st