Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
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
TechBeamers Python: Python to Find Difference Between Two Lists

Link: https://www.techbeamers.com/python-difference-between-two-lists/

In this tutorial, we’ll discover two Pythonic ways to find the Difference Between Two Lists. One of the methods is using the Python Set. It first converts the lists into sets and then gets the unique
PyCoder’s Weekly: Issue #380 (Aug. 6, 2019)

Link: https://pycoders.com/issues/380

#380 – AUGUST 6, 2019 View in Browser » What You Need to Know to Manage Users in Django Admin Learn what you need to know to manage users in Django admin. Out of the box, Django admin doesn’t en
Python Insider: Python 3.8.0b3 is now available for testing

Link: http://feedproxy.google.com/~r/PythonInsider/~3/0XCbz6INDL8/python-380b3-is-now-available-for.html


It's time for a new Python preview:
https://www.python.org/downloads/release/python-380b3/ 



This
release is the third of four planned beta release previews. Beta
release previews are intended t
Python Engineering at Microsoft: Python in Visual Studio Code – August 2019 Release

Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-august-2019-release/

We are pleased to announce that the August 2019 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the Marketplace, or install it direc
Real Python: Inheritance and Composition: A Python Guide

Link: https://realpython.com/inheritance-composition-python/

In this article, you’ll explore inheritance and composition in Python. Inheritance and composition are two important concepts in object oriented programming that model the relationship between two cla
Stéphane Wirtel: PyCon Ireland 2019: Call for proposals

Link: https://wirtel.be/post/2019/08/07/pycon-ireland-2019-call-for-proposals/

PyCon Ireland 2019 Python Ireland is the Irish organisation representing the various chapters of Python users. We organise meet ups and events for software developers, students, academics and anyone w
PyCharm: PyCharm 2019.2.1 Preview

Link: http://feedproxy.google.com/~r/Pycharm/~3/_pz3nkNga-w/

PyCharm 2019.2.1 Preview is now available!
Fixed in this Version

The PyCharm debugger got some fixes:

The issue causing the debugger to hang when a syntax error was encountered was resolved.
When cl
Catalin George Festila: Python 3.7.3 : Using the flask - part 011.

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

The tutorial for today is focused on the email issue.
I will start with the new python module for flask named flask_mail.
Let's install it:
C:\Python373>cd Scripts

C:\Python373\Scripts>pip3 install f
ListenData: Python : Complete Guide to Date and Time Functions

Link: https://www.listendata.com/2019/07/how-to-use-datetime-in-python.html

In this tutorial, we will cover python datetime module and how it is used to handle date, time and datetime formatted columns (variables). It includes various practical examples which would help you t