Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Stack Abuse: Datetime Arithmetic, Alteration and Truncation with Python's Delorean

Link: https://stackabuse.com/datetime-arithmetic-alteration-and-truncation-with-pythons-delorean

Introduction
Working with datetime can be a bit daunting and challenging, and handling datetime in Python is no exception. Python's built-in datetime module introduced us to several classes - date, d
Python for Beginners: Implement Queue in Python

Link: https://www.pythonforbeginners.com/queue/implement-queue-in-python

Queue is a data structure which follows first in first out (FIFO) order for accessing the elements. In a queue, we can only access the element which was added first of all the present element. queues
Quansight Labs Blog: Introducing PyTorch-Ignite's Code Generator v0.2.0

Link: https://labs.quansight.org/blog/2021/07/introducing-code-generator-v020/


Authors: Jeff Yang, Taras Savchyn, Priyansi, Victor Fomin
Along with the PyTorch-Ignite 0.4.5 release, we are excited to announce the new release of the web application for generating PyTorch-Ignite
Łukasz Langa: Weekly Report 2021, July 12 - 18

Link: https://lukasz.langa.pl/1c78554f-f81d-43d0-9c89-a602cafc4c5a/

First week of work done. While there are bigger overarching goals for the role, this week I decided to dive right into PR review which looking at our growing open PR numbers needs more help.
Weekly Python StackOverflow Report: (cclxxxiv) stackoverflow python report

Link: http://python-weekly.blogspot.com/2021/07/cclxxxiv-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-07-17 17:41:09 GMTNumpyic way to sort an ndarray clockwise? - [12/
Low Kian Seong: Time here is ending ?

Link: https://blog.lowkster.com/2021/07/time-here-is-ending.html

    Time here with my team after so long (coming to 3 years), looks like is inevitably coming to an end. Am I pissed ? Damn right I am. We are kind of paying the price of someone's insecurities, he fe
Kushal Das: A few bytes of curl

Link: https://kushaldas.in/posts/a-few-bytes-of-curl.html


curl is most probably the highest used software in the
world. I generally use it daily (directly) in the various scripts at the
SecureDrop, starting from inside of Dockerfiles, to
Ansible roles or in
death and gravity: reader 2.0 released

Link: https://death.andgravity.com/reader-2-0

Hi there!
I'm happy to announce version 2.0 of reader, a Python feed reader library.
This release brings you a cleaner API,
more consistently named methods and attributes,
timezone-aware datetimes,
an
Mike Driscoll: PyDev of the Week: Susan Shu Chang

Link: https://www.blog.pythonlibrary.org/2021/07/19/pydev-of-the-week-susan-shu-chang/

This week we welcome Susan Shu Chang (@susan_shuc) as our PyDev of the Week! Susan is a game developer and speaker as well as a data scientist. She regularly gives talks at multiple conferences. You c
Paolo Melchiorre: Maps with Django (part 2): GeoDjango, PostGIS and Leaflet

Link: https://www.paulox.net/2021/07/19/maps-with-django-part-2-geodjango-postgis-and-leaflet/

A quickstart guide to create a web map with the Python-based web framework Django using its module GeoDjango, the PostgreSQL database with its spatial extension PostGIS and Leaflet, a JavaScript libra
Matt Layman: Episode 14 - Going Live

Link: https://www.mattlayman.com/django-riffs/14-go-live-deployment/

On this episode, we will look at what it takes to go live and how to prepare your Django project for the internet.
Listen at djangoriffs.com or with the player below.
Last Episode On the last episod
Python Circle: Django-Admin commands cheat sheet

Link: https://pythoncircle.com/post/751/django-admin-commands-cheat-sheet/

A complete list of Django-Admin commands with a brief description, Django-admin commands list, Cheatsheet Django Admin commands,
Low Kian Seong: Some things to stop doing

Link: https://blog.lowkster.com/2021/07/some-things-to-stop-doing.html

 Here are a. few things that I am going to try my best to stop doing:How some relationships can stand in the way of success or goals no matter how much the person that is allowing it to happen says it
Real Python: Python Community Interview With Dustin Ingram

Link: https://realpython.com/interview-dustin-ingram/

Today I’m joined by Dustin Ingram, a developer advocate at Google focused on supporting the Python community on Google Cloud. He is also a director of the Python Software Foundation (PSF) and a mainta
death and gravity: Dataclasses without type annotations

Link: https://death.andgravity.com/dataclasses

The dataclasses standard library module
reduces the boilerplate of writing classes
by generating special methods like __init__ and __repr__.
I've noticed a small (but vocal) minority of people that:
Python for Beginners: Implement Stack in Python

Link: https://www.pythonforbeginners.com/data-types/implement-stack-in-python

Stack is a data structure which follows last in first out (LIFO) order for accessing the elements. In a stack, we can only access the most recently added element. Stacks have many uses in applications