Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
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
PyPy Development: A second life for the Sandbox

Link: http://feedproxy.google.com/~r/PyPyStatusBlog/~3/LOsHj8mNF9Q/a-second-life-for-sandbox.html

Hi all,

Anvil is a UK-based company sponsoring one month of work to revive PyPy's
"sandbox" mode and upgrade it to PyPy3. Thanks to them, sandboxing will be
given a second life!

The sandboxed PyPy
Dataquest: 5 Steps to Learning Python the Right Way

Link: https://www.dataquest.io/blog/learn-python-the-right-way/

Learn Python online in 5 steps, with hands-on missions that can take you from zero experience to data scientist quicker than you think!
The post 5 Steps to Learning Python the Right Way appeared first
Learn PyQt: PyQt5 Widgets Overview

Link: https://www.learnpyqt.com/courses/start/basic-widgets/


In Qt (and most User Interfaces) ‘widget’ is the name given to a component of the UI that the user can interact with. User interfaces are made up of multiple widgets, arranged within the window.
Qt c
Kogan Dev: Making Heroku Subdirectories Easier

Link: https://devblog.kogan.com/blog/making-heroku-subdirectories-easier

To keep your codebase clean, it helps to have a separation of concerns. Splitting your codebase into a backend and frontend directory a great way to do this.Unfortunately Heroku buildpacks do not dete
Kogan Dev

Link:

To keep your codebase clean, it helps to have a separation of concerns. But
how do we do this for Heroku applications?
Moshe Zadka: Designing Interfaces

Link: https://orbifold.xyz/designing-interfaces.html

One of the items of feedback I got from the article about
interface immutability
is that it did not give any
concrete
feedback for how to design interfaces.
Given that they are forever,
it would be go