Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Patrick Kennedy: Monkeypatching with pytest

Link: http://www.patricksoftwareblog.com/monkeypatching-with-pytest/

Introduction
I was really excited when I figured out how to use the monkeypatch fixture in pytest, so I wanted to write a blog post about how it works.  This blog post describes what monkeypatching is
gamingdirectional: Complete rewrites of the level manager class

Link: http://gamingdirectional.com/blog/2019/01/05/complete-rewrites-of-the-level-manager-class/

In this chapter, we will rewrite the level manager class by deleting old functions and adding new functions into it. Besides that, we will also use the pickle file to replace the text file then save t
Filipe Saraiva: LaKademy 2018

Link: http://blog.filipesaraiva.info/?p=2042

Past October 2018, Florianópolis hosted the 6th edition of LaKademy, the Latin-American KDE sprint. That moment is an opportunity to put together several KDE developers – both veterans and newcomers –
Weekly Python StackOverflow Report: (clix) stackoverflow python report

Link: http://python-weekly.blogspot.com/2019/01/clix-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-01-05 22:23:15 GMTWhy does `if None.__eq__("a")` evaluate to True?
codingdirectional: Count the words within a string with python

Link: http://codingdirectional.info/2019/01/06/count-the-words-within-a-string-with-python/

Hello and nice to meet you all again. In this article, we will continue to solve the problem on the py.checkio.org website. This website has provided a great opportunity for those python programmers t
gamingdirectional: Increase the speed of the enemy ship

Link: http://gamingdirectional.com/blog/2019/01/06/increase-the-speed-of-the-enemy-ship/

Hello friend, I wish you all have a nice day. After near to a month of continuing to develop this latest pygame project, today I have finally completely finished all three stages of the game and fixed
Ofosos: Integrating Sphinx doctests with Travis

Link: https://ofosos.org/2019/01/06/doctest-travis/

If you want to run Sphinx doc tests in Travis you will need to jump through some hoops. Fortunately it isn't that complicated, I've created some sample code on Github/doctest-travis for you to follow
Roberto Alsina: Coding in anger: not-gitbook

Link: https://ralsina.me/weblog/posts/coding-in-anger-not-gitbook.html

I have, intermitently, for the past few months, been writing a book. You can see it here and I am fairly happy with how it's going.
I am not so happy with the tooling.
When I started writing it, I did
codingdirectional: Resize the video with python program

Link: http://codingdirectional.info/2019/01/07/resize-the-video-with-python-program/

Hallo mein Freund, Jetzt ist es Zeit für ein weiteres tutorial, lasst uns beginnen! If you are following this website then you should know that recently I am exploring py.checkio.org which is supposed
Mike Driscoll: PyDev of the Week: Kushal Das

Link: http://www.blog.pythonlibrary.org/2019/01/07/pydev-of-the-week-kushal-das/

This week we welcome Kushal Das (@kushaldas) as our PyDev of the Week! Kushal is a core developer of the Python programming language and a co-author of PEP 582. You can learn more about Kushal by chec
eGenix.com: Python Meeting Düsseldorf - 2019-01-09

Link: https://www.egenix.com/company/news/Python-Meeting-Duesseldorf-2019-01-09

The following text is in German, since we're announcing a regional user group meeting in Düsseldorf, Germany.

Ankündigung
Das nächste Python Meeting Düsseldorf findet an folgendem Termin statt:

09.0
codingdirectional: Encrypt the text with python

Link: http://codingdirectional.info/2019/01/07/encrypt-the-text-with-python/

Hello again, today let us continue to explore the question on the previous website which allows us to develop a game with python. In this chapter, we are going to create a function which will encrypt
Chris Moffitt: Using The Pandas Category Data Type

Link: http://pbpython.com/pandas_dtypes_cat.html


Introduction
In my previous article, I wrote about pandas data types; what they are
and how to convert data to the appropriate type. This article will focus on the pandas
categorical data type and so
gamingdirectional: A sneak preview at the next python pygame project

Link: http://gamingdirectional.com/blog/2019/01/07/a-sneak-preview-at-the-next-python-pygame-project/

Hello, it is nice to be back again. After the final touch up of the previous pygame project, we are now ready to start the next pygame project. We will continue to develop that previous pygame project
Real Python: The Ultimate Guide to Python Type Checking

Link: https://realpython.com/python-type-checking/

In this guide, you will get a look into Python type checking. Traditionally, types have been handled by the Python interpreter in a flexible but implicit way. Recent versions of Python allow you to sp