Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Stack Abuse: Gradient Boosting Classifiers in Python with Scikit-Learn

Link: https://stackabuse.com/gradient-boosting-classifiers-in-python-with-scikit-learn/

Introduction
Gradient boosting classifiers are a group of machine learning algorithms that combine many weak learning models together to create a strong predictive model. Decision trees are usually us
Real Python: Create a Flask Application With Google Login

Link: https://realpython.com/flask-google-login/

You’ve probably seen the option for Google Login on various websites. Some sites also have more options like Facebook Login or GitHub Login. All these options allow users to utilize existing accounts
PSF GSoC students blogs: Finishing up Scikit Linear Regression

Link: http://blogs.python-gsoc.org/en/blogs/yashlambas-blog/finishing-up-scikit-linear-regression/

I had an assigned task to make the requested changes and refactor the scratch linear regression model. The tests and documentation are complete and are ready to merge along with the model. I will now
ListenData: What are *args and **kwargs and How to use them

Link: https://www.listendata.com/2019/07/args-and-kwargs-in-python.html

This article explains the concepts of *args and **kwargs and how and when we use them in python program. Seasoned python developers embrace the flexibility it provides when creating functions. If you
ListenData: Python Data Structures

Link: https://www.listendata.com/2017/06/python-data-structures.html

This post explains the data structures used in Python. It is essential to understand the data structures in a programming language. In python, there are many data structures available. They are as fol
Catalin George Festila: Python 3.7.3 : Using the pipenv tool.

Link: http://python-catalin.blogspot.com/2019/07/python-373-using-pipenv-tool.html

The goal of this tutorial is how to use pipenv and manage dependencies and development environments on a collaborative Python project.
The documentation area can be found here.
C:\Python373>cd Scripts
TechBeamers Python: Generate a List of Random Integers in Python

Link: https://www.techbeamers.com/python-generate-random-numbers-list/

This tutorial explains several ways to generate random numbers list in Python. Here, we’ll mainly use three Python random number generation functions. These are random.randint(), random.randrange(), a
Roberto Alsina: Old Guy @ The Terminal: Episodio 1!

Link: https://ralsina.me/weblog/posts/old-guy-the-terminal-episodio-1.html

Este es el primer (y por ahora único, obviamente) episodio de un nuevo canal de video llamado "Old Guy @ The Terminal" en el que muestro algunas cositas de Linux, programación, como se relacionan cosa
PSF GSoC students blogs: My path this far - 3rd blog post

Link: http://blogs.python-gsoc.org/en/blogs/leovictorsrs-blog/my-path-this-far-3rd-blog-post/

Hello guys!
 
This seems to be the post that goes by my 3rd blog post (July 8). I genuinely misunderstood the blog post assignment and I'm sorry I'm late with them.
I had motivation issues the last 2
PSF GSoC students blogs: 4th weekly check-in

Link: http://blogs.python-gsoc.org/en/blogs/leovictorsrs-blog/4th-weekly-check-in/




Hello everyone!
This weekly check-in is related to the scheduled for July 15.
1. What did you do this week?
Reviewed the code for the `spidermon setup` command so far. Merged setup with enable comm
Catalin George Festila: Python 3.7.3 : The pandas python module.

Link: http://python-catalin.blogspot.com/2018/10/python-373-pandas-python-module.html

Since I started learning python programming language I have not found a more complex and complete module for viewing complex data.
The official documentation of this python module tells us:
pandas is
IslandT: Start a new Cryptocurrency project with Python

Link: https://kibiwebgeek.com/2019/07/18/start-a-new-cryptocurrency-project-with-python/

Start a new python cryptocurrency project in PyCharm.Install related module needs for this new project.Write a simple program to find out whether the new module is working or not.
Hello and welcome to
PSF GSoC students blogs: Weekly Check-in #8 : (12 July - 18 July)

Link: http://blogs.python-gsoc.org/en/blogs/anubhavps-blog/weekly-check-in-8-12-july-18-july/

What did you do this week?

Protego is now compatible with Google's parser. Protego pass all testcase in Google's parser testsuite.
Documented Protego - functions now have docstrings, and I have creat
Talk Python to Me: #221 Empowering developers by embedding Python

Link: https://talkpython.fm/episodes/show/221/empowering-developers-by-embedding-python

How do we get kids excited about programming? Make programming tangible with embedded devices. Did you know that after kids learned to code with the BBC micro:bit, 90% of kids "thought coding was for
Kushal Das: Setting up WKD

Link: https://kushaldas.in/posts/setting-up-wkd.html


We fetch any GPG public key from the keyservers using the GPG fingerprint (or
parts of it). This step is still a problematic one for most of us. As the
servers may not be responding, or the key is mi
PyCharm: PyCharm 2019.2 Release Candidate

Link: http://feedproxy.google.com/~r/Pycharm/~3/mpZLMFD8w6c/

PyCharm 2019.2 is almost ready to be released, and we’re happy to announce that a release candidate is available for download now.
New in PyCharm
Enable of actions during indexing

We identified certa
ListenData: Drop one or more columns in Pandas Dataframe

Link: https://www.listendata.com/2019/06/pandas-drop-columns-from-dataframe.html

In this tutorial, we will cover how to drop or remove one or multiple columns from pandas dataframe.What is pandas in Python?pandas is a python package for data manipulation. It has several functions
Made With Mu: Mu at EuroPython

Link: https://madewith.mu/mu/users/2019/07/19/europython.html

Mu made a number of appearances at last week’s wonderful
EuroPython 2019
conference in Basel, Switzerland. This is a report of what happened…

EuroPython is a famously friendly event, and well known f
Stack Abuse: Python List Sorting with sorted() and sort()

Link: https://stackabuse.com/python-list-sorting-with-sorted-and-sort/

In this article, we'll examine multiple ways to sort lists in Python.
Python ships with two built-in methods for sorting lists and other iterable objects. The method chosen for a particular use-case o