Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCoder’s Weekly: Issue #407 (Feb. 11, 2020)

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

#407 – FEBRUARY 11, 2020 View in Browser » Understanding Best-Practice Python Tooling by Comparing Popular Project Templates “Use Flake8, pytest, and Sphinx in your current Python project. Also
Mike Driscoll: The NSA Has a Beginner Python Course

Link: http://www.blog.pythonlibrary.org/2020/02/11/the-nsa-has-a-beginner-python-course/

The National Security Agency (NSA) recently released a free Python programming course for beginners after a Freedom of Information Act (FOIA) request according to ZDNet. There is almost 400 pages of m
Codementor: K-Nearest Neighbors explained

Link: https://www.codementor.io/volodymyrlut/k-nearest-neighbors-explained-13jm2ii1gx

In this post, I explain the intuition and logic behind KNN algorithm and show simple implementation written in pure pandas which yield 98% accuracy on the IRIS dataset.
Zato Blog: Generating API documentation for both external and internal users

Link: https://zato.io/blog/posts/apispec-multi.html

A recurring need in larger integration projects is generation of API documentation for users belonging to different, yet related, target groups. Read on to learn how to generate Zato-based API specifi
PyBites: The Pythonic Fast Lane, Digest of a 30 Min Mentoring Session

Link: https://pybit.es/python-mentoring-session.html

The other day I had an awesome mentoring session with a beginner Pythonista, amazing what 30 min of screen sharing can do. Read on to learn more ...
There was a clear goal: get data from an API so I t
Real Python: Python Community Interview With Brett Slatkin

Link: https://realpython.com/interview-brett-slatkin/

Today I’m speaking to Brett Slatkin, a principal software engineer at Google and the author of the Python programming book Effective Python. Join us as we discuss Brett’s experience working with Pytho
Erik Marsja: How to Plot a Histogram with Pandas in 3 Simple Steps

Link: https://www.marsja.se/how-to-plot-a-histogram-with-pandas-in-3-simple-steps/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-plot-a-histogram-with-pandas-in-3-simple-steps

The post How to Plot a Histogram with Pandas in 3 Simple Steps appeared first on Erik Marsja.
In this post, we are going to learn how to plot histograms with Pandas in Python. Specifically, we are goi
Mike Driscoll: The NSA Has a Beginner Python Course

Link: https://www.blog.pythonlibrary.org/2020/02/11/the-nsa-has-a-beginner-python-course/

The National Security Agency (NSA) recently released a free Python programming course for beginners after a Freedom of Information Act (FOIA) request according to ZDNet. There is almost 400 pages of m
Nikolaos Diamantis: World's average country population and inspection paradox

Link: http://www.nikos7am.com/posts/average_population/

Have you ever thought how much is the world’s average country population? And what does it say about the country you are living in or for the quality of life of the average person? All these questions
Codementor: Mobile Apps for Learning to Code On the Go, Even in Space

Link: https://www.codementor.io/johnselawsky/mobile-apps-for-learning-to-code-on-the-go-even-in-space-13lcbm76f7

In a way, programming is like riding a bicycle. You won’t know how to write code unless you do it for a while. In other words, this skill requires much practice to learn and even more support.
Ned Batchelder: Re-using my presentations

Link: https://nedbatchelder.com//blog/202002/reusing_my_presentations.html

Yesterday I got an email saying that someone in Turkey had stolen one of my
presentations. The email included a YouTube link. The video showed a meetup.
The presenter (I’ll call him Samuel) was stand
Roberto Alsina: Looking for a new job!

Link: https://ralsina.me/weblog/posts/looking-for-a-new-job.html

My current employer (not anymore!) and I have decided to part ways. So, I
am now open to new adventures in Python-land.
I am located near Buenos Aires, so remote positions much preferred, local
Buenos
Talk Python to Me: #251 Building and UX Testing Azure's Python SDK

Link: https://talkpython.fm/episodes/show/251/building-and-ux-testing-azure-s-python-sdk

What does it take to build a Python library that will be used by a large number of developers? This happens all the in open source. Projects take off and become wildly successful.
Techiediaries - Django: Multiple Image/File Upload with Django 3, Ionic 5 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 5, django 3 and FormData.
In a previous tutorial, we've created a django 3 RESTful application for uploading files using dja
Erik Marsja: How to Get the Column Names from a Pandas Dataframe – Print and List

Link: https://www.marsja.se/how-to-get-the-column-names-from-a-pandas-dataframe-print-and-list/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-get-the-column-names-from-a-pandas-dataframe-print-and-list

The post How to Get the Column Names from a Pandas Dataframe – Print and List appeared first on Erik Marsja.
In this short post, we will learn 6 methods to get the column names from Pandas dataframe.