Catalin George Festila: Python 3.7.3 : Using itemgetter from operator python...
The operator module exports a set of efficient functions corresponding to the intrinsic operators of Python. see documentation. Today I will show you how to use itemgetter from this python module with...
View ArticleCatalin George Festila: Python 3.7.3 : Using attrgetter from operator python...
Return a callable object that fetches attr from its operand. If more than one attribute is requested, returns a tuple of attributes. The attribute names can also contain dots. see documentation. The...
View ArticleChris Moffitt: Build a Celebrity Look-Alike Detector with Azure’s Face Detect...
IntroductionThis article describes how to to use Microsoft Azure’s Cognitive Services Face API and python to identify, count and classify people in a picture. In addition, it will show how to use the...
View ArticleStack Abuse: The Python Assert Statement
In this article, we'll examine how to use the assert statement in Python.In Python, the assert statement is used to validate whether or not a condition is true, using the syntax:assert...
View ArticleEuroPython: EuroPython 2019: Sponsored trainings
We’d like to highlight a special offering by our sponsors MongoDB and SOS Software / Intel: trainings which you are free to attend with just a conference ticket.Sponsored training sessions in Room...
View ArticlePSF GSoC students blogs: Improving uarray performance
What did you do this week?I have been focused on my uarray PR (uarray#1780). uarray defines a protocol for dispatching function calls to multiple different backend implentations. In my PR, I've been...
View ArticleReal Python: The Python Square Root Function
Are you trying to solve a quadratic equation? Maybe you need to calculate the length of one side of a right triangle. For these types of equations and more, the Python square root function, sqrt(), can...
View ArticleStack Abuse: Python: Print without Newline
In this article, we'll examine how to print a string without a newline character using Python.In Python, the built-in print function is used to print content to the standard output, which is usually...
View ArticleCodementor: Tutorial: What is Docker and How to Use It with Python
This is an introductory tutorial on Docker containers. By the end of this article, you will know how to use Docker on your local machine. Along with Python, we are going to run Nginx and Redis...
View ArticlePSF GSoC students blogs: Week 6: Blog Post (#3)
This week i was doing several smaller things:- Added some more commits to the read_curry function (which in my opinion is definitely ready to be merged now). - Enhanced tests for the SourceTFR class,...
View ArticleCodementor: Top 14 Pros of Using Django for Web Development
Django is one of the top frameworks for web developmeht (https://hackernoon.com/7-best-web-development-backend-frameworks-in-2018-22a5e276cdd), but why is it so popular among developers and...
View ArticleCodementor: Kaggle-Titanic: Machine Learning from Disaster: Beginner
Predict survival on the Titanic
View ArticlePSF GSoC students blogs: Pyca / cryptography and some other things
Hi every one!"""In the last two weeks it was decided to change m2crypto by pyca / crytography, well all very nice but I knew about cryptography ... little and nothing if I had read the code and more or...
View ArticlePSF GSoC students blogs: Blog post: 6th week of GSoC (Jul 01 - Jul 07)
This week I was able to make good progress and finalize on a couple of PRs on my GSoC project repository on GitHub.In particular, this weeks work was focused on visualization of the results of the...
View ArticleLearn PyQt: Build a simple minesweeper clone in Python, using PyQt5
Moonsweeper is a single-player puzzle video game. The objective of the game is to explore the area around your landed space rocket, without coming too close to the deadly B'ug aliens. Your trusty...
View ArticlePython Insider: Python 3.7.4 is now available
Python 3.7.4 is now available. 3.7.4 is the next maintenance release of Python 3.7, the latest feature release of Python. You can find the release files, a link to the changelog, and more information...
View ArticleCodementor: Reasons Why We Python is the Best Programming Language for a Startup
Choosing the right programming language for your startup is not an easy decision, considering the huge variety of available options. And it's not enough to choose the one just because the language...
View ArticlePSF GSoC students blogs: Week-6: Gotta Cache 'em All!
Hello folks,So I am still implementing several methods of accessing filter data from SVO FPS - redesigning our old way of HDF storage. After implementing a module to access filter data using API, I've...
View Article