Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Chris Moffitt: Updated: Using Pandas To Create an Excel Diff

Link: http://pbpython.com/excel-diff-pandas-update.html


Introduction
Several years ago, I wrote an article about using pandas to creating a diff
of two excel files. Over the years, the pandas API has changed and the diff script
no longer works with the la
Continuum Analytics Blog: Conda 4.6 Release

Link: https://www.anaconda.com/blog/developer-blog/conda-4-6-release/

The latest set of major Conda improvements are here, with version 4.6.  This release has been stewing for a while and has the feature list to show for it.  Let’s walk through some of the major ones. A
Vasudev Ram: Daily Coding Problem #69: A functional programming solution

Link: http://jugad2.blogspot.com/2019/01/daily-coding-problem-69-functional.html

- By Vasudev Ram - Online Python training / SQL training / Linux trainingStock reduction image attributionHi, readers,I subscribed to the mailing list of the Daily Coding Problem site site a while ago
codingdirectional: Given a list of dictionary objects, return a string

Link: http://codingdirectional.info/2019/01/29/given-a-list-of-dictionary-objects-return-a-string/

Good morning again and today we are going to solve one of the fundamental problems on Codewars.
The question goes like this, given a list of directory objects consist of the name of a person, we need
Codementor: Installing a Dependency Library for Function Compute

Link: https://www.codementor.io/alibabacloud/installing-a-dependency-library-for-function-compute-rnv2k3p5l

In common programming practice, projects, libraries, and system environments must be installed and configured in synergy. Alibaba Cloud Function Compute runs in a prefabricated runtime environment,...
Codementor: Using Python to Connect Function Compute to SQL Server

Link: https://www.codementor.io/alibabacloud/using-python-to-connect-function-compute-to-sql-server-rnz15wgtc

Normally, a third-party module is required for establishing Python-based database connections. To connect to Microsoft SQL Server, pymssql is required. FreeTDS is required for pymssql versions...
Podcast.__init__: What You Need To Know About Open Source Licenses And Intellectual Property

Link: https://www.pythonpodcast.com/software-licenses-for-developers-episode-196/

As a developer and user of open source code, you interact with software and digital media every day. What is often overlooked are the rights and responsibilities conveyed by the intellectual property
Django Weblog: The DSF Welcomes Mariusz Felisiak as its Newest Fellow

Link: https://www.djangoproject.com/weblog/2019/jan/29/dsf-welcomes-mariusz-felisiak-its-newest-fellow/

On December 21, 2018, the DSF made a call for Django Fellow applicants. On behalf of the Django Software Foundation, the DSF Fellowship Committee is pleased to announce Mariusz Felisiak as the newest
gamingdirectional: Create the game background part 1

Link: http://gamingdirectional.com/blog/2019/01/29/create-the-game-background-part-1/

Hello, and welcome back, starting from today I will definitely use my time effectively which means less Youtubed and Googled around so I can concentrate most of the time on writing article, creating t
Dataquest: Data Science Project: Profitable App Profiles for App Store and Google Play

Link: https://www.dataquest.io/blog/basic-data-science-portfolio-project-tutorial/

At Dataquest, we strongly advocate portfolio projects as a means of getting a first data science job. In this blog post, we'll walk you through an example portfolio project. This is the third project
Mike Driscoll: wxPython Applications Book Table of Contents Update

Link: http://www.blog.pythonlibrary.org/2019/01/29/wxpython-applications-book-table-of-contents-update/

I am currently working on a new book entitled Creating GUI Applications with wxPython that you can support on Kickstarter. This is the current table of contents for the book:

Chapter 1 – Intro to wxP
Mike Driscoll: Python 201 and Python RegEx Bundle

Link: http://www.blog.pythonlibrary.org/2019/01/29/python-201-and-python-regex-bundle/

I recently had the opportunity to partner with Sundeep Agarwal, the author of Python re(gex)? to create a bundle with my second book, Python 201: Intermediate Python.

The Python Regex book covers Reg
PyCoder’s Weekly: Issue #353 (Jan. 29, 2019)

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

#353 – JANUARY 29, 2019 View in Browser » Several Stdlib Methods With Only Positional Arguments Will Be 30-70% Faster in Python 3.8 Wow, this is great. Optimization work done by Serhiy Storchaka
gamingdirectional: Create the game background Part 2

Link: http://gamingdirectional.com/blog/2019/01/30/create-the-game-background-part-2/

Hello and welcome back to part two of this chapter. In this chapter, we will finish up the background rendering process for our new pygame project. If you have missed out the first part of the tutoria
codingdirectional: Return odd or even position from a list of numbers

Link: http://codingdirectional.info/2019/01/30/return-odd-or-even-position-from-a-list-of-numbers/

Hello and welcome back to one day one answer series. In this chapter, we will need to return the position of either an odd or even number from a list of numbers following the below condition.
If there
Real Python: Python "for" Loops (Definite Iteration)

Link: https://realpython.com/python-for-loop/

This tutorial will show you how to perform definite iteration with a Python for loop.
In the previous tutorial in this introductory series, you learned the following:

Repetitive execution of the same