Planet Python RSS
213 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
gamingdirectional: Pause the gameplay

Link: http://gamingdirectional.com/blog/2019/03/08/pause-the-gameplay/

In this chapter, we will continue to tidy up the game interface of our latest pygame project by creating a pause mechanism to pause the game when the user presses on the p key on the keyboard. In orde
Anatoly Techtonik: Please protect the right to create public domain works

Link: http://techtonik.rainforce.org/2019/03/please-protect-right-to-create-public.html

snap is a package format for faster release cycle on Ubuntu. Recently its snapcraft.yml description file has got license field:# License for the snap content, based on SPDX license expressions.licens
gamingdirectional: The screenshot mechanism

Link: http://gamingdirectional.com/blog/2019/03/09/the-screenshot-mechanism/

I have just completed the screenshot mechanism for this latest pygame project. Basically, we will need to edit a few files in order to implement that mechanism. The first file we need to edit is the s
codingdirectional: Return a list of divisible numbers

Link: http://codingdirectional.info/2019/03/09/return-a-list-of-divisible-numbers/

It seems like I am still thinking about what is the new application to create for the next project so I think I will solve a few more easy questions from the Codewars website. All the questions that I
Weekly Python StackOverflow Report: (clxviii) stackoverflow python report

Link: http://python-weekly.blogspot.com/2019/03/clxviii-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2019-03-09 13:28:16 GMTJupyter notebook: No connection to server becaus
Talk Python to Me: #202 Building a software business

Link: https://talkpython.fm/episodes/show/202/building-a-software-business

One core question around open source is how do you fund it? Well, there is always that PayPal donate button. But that's been a tremendous failure for many projects. Often the go-to answer is consultin
Techiediaries - Django: CORS in Django REST Framework

Link: https://www.techiediaries.com/django-cors/

CORS stands for Cross Origin Resource Sharing. If you are building applications with Django and modern front-end/JavaScript technologies such as Angular, React or Vue, chances are that you are using t
Techiediaries - Django: Multiple Image/File Upload with Django, Ionic 4 and FormData

Link: https://www.techiediaries.com/ionic-formdata-multiple-file-upload-tutorial/

In this tutorial, you'll learn to implement multiple file upload with Ionic 4, Django and FormData.
In a previous tutorial, we've created a django RESTful application for uploading files using Django
Django Weekly: #73 - Djangochat podcast, Django Recommended Reading and more

Link: http://djangoweekly.com/blog/post/73-djangochat-podcast-django-recommended-reading-and-more

Worthy ReadDjangochat podcastI ’ve spent weeks working new podcast called DjangoChat The episode launched listen Django: recommended readingAt Caktus, we believe in continued learning (and teaching).
Techiediaries - Django: Post Multipart Form Data in Python with Requests: Flask File Upload Example

Link: https://www.techiediaries.com/python-requests-upload-file-post-multipart-form-data/

In this tutorial we'll demonstrate how to upload a file from a Python server to another server by sending a POST request with multipart/form-data using the Python requests library.
We'll be using two
Zato Blog: Working with LDAP and Active Directory

Link: https://zato.io/blog/posts/ldap-active-directory.html

A feature new in
Zato
3.1 is the ability to connect to LDAP servers, including Active Directory instances, and this article covers basic administration as programming tasks involved in their usage fro
Mike Driscoll: PyDev of the Week: Maria Khalusova

Link: http://www.blog.pythonlibrary.org/2019/03/11/pydev-of-the-week-maria-khalusova/

This week we welcome Maria Khalusova ( @mariakhalusova) as our PyDev of the Week! Maria works for JetBrains and will be speaking at AnacondaCON this April. If you’d like to catch up with her, you can
Programiz: Python RegEx

Link: https://www.programiz.com/python-programming/regex

In this tutorial, you will learn about regular expressions (RegEx), and use Python's re module to work with RegEx (with the help of examples).
Podcast.__init__: The Past, Present, and Future of Deep Learning In PyTorch

Link: https://www.pythonpodcast.com/pytorch-deep-learning-epsiode-202/

The current buzz in data science and big data is around the promise of deep learning, especially when working with unstructured data. One of the most popular frameworks for building deep learning appl
gamingdirectional: Create the level/score page

Link: http://gamingdirectional.com/blog/2019/03/11/create-the-level-score-page/

In this chapter, we will create a level/score page for our new pygame project. We need to edit four files in order to create the level/score page. The first file is the level manager class which will
Real Python: Managing Multiple Python Versions With pyenv

Link: https://realpython.com/intro-to-pyenv/

Have you ever wanted to contribute to a project that supports multiple versions of Python but aren’t sure how you would easily test all the versions? Are you ever curious about the latest and greatest
Continuum Analytics Blog: End of Life (EOL) for Python 2.7 is coming. Are you ready?

Link: https://www.anaconda.com/end-of-life-eol-for-python-2-7-is-coming-are-you-ready/

End of Life (EOL) for Python 2.7 is coming. Are you ready? We all knew it was coming. Back in 2014 when Guido van Rossum, Python’s creator and principal author, made the announcement, January 1,…
The
Continuum Analytics Blog: Understanding and Improving Conda’s performance

Link: https://www.anaconda.com/understanding-and-improving-condas-performance/

Lately, we have been responding to issues about Conda’s speed.  We’re working on it and we wanted to explain a few of the facets that we’re looking at to solve the problem.   TL;DR: make…
The post Und