Python Does What?!: python needs a frozenlist
>>> set() == frozenset()True>>> [] == ()False
View ArticleKay Hayen: Nuitka this week #3
ContentsNew Series RationaleTwitterGoto GeneratorsHotfixesPlansNew Series RationaleThis is working out well so far. I think driving more attention at the things that are going on can only be good. Also...
View ArticleCodementor: Hundred sessions on Codementor and how I feel about it!
One hundred sessions on Codementor made me share my experiences so far as a Mentor.
View ArticleWeekly Python StackOverflow Report: (cxxxviii) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2018-08-11 16:23:07 GMTIs there a way to "fork" a list in two based on a...
View ArticleCodementor: Python Environment Management with Conda (Python 2 + 3, Using...
While this section of the post was largely taken and improved from stackoverflow, I feel like it is important to go over how and go over some technical issues people run into. The main idea is to have...
View ArticleCodementor: Classification of data structure
At the present world everythings are realiable on one another,either it's for surviving or it's for working.One has to take help from another to complete it's task. As we dicussed about the...
View ArticleMike C. Fletcher: PyOpenGL 3.1.3b1 up on PyPI
So there's a beta release of PyOpenGL 3.1.3b1 up on PyPI. It needs testing on Mac and Win64/32 if possible. You should be able to install it with:pip install...
View ArticleWill McGugan: PyFilesystem 2.1.0 adds concurrent uploads / downloads and...
I've released PyFilesystem 2.1.0.This version is the accumulation of many minor revisions, with multiple fixes, enhancements and some interesting new features. We also have nicer doc strings and Mypy...
View ArticleBhishan Bhandari: Brief Introduction to Google APIs(Sheets, Slides, Drive)
The intentions of this post is to familiarize usage of Google APIs with Python. Google services are cool and you can build products and services around it. We will see through examples how you can use...
View ArticlePodcast.__init__: The Masonite Web Framework With Joe Mancuso
Masonite is an ambitious new web framework that draws inspiration from many other successful projects in other languages. In this episode Joe Mancuso, the primary author and maintainer, explains his...
View ArticleCodementor: Headless Web Scraping in Python with Beautiful Soup 4
By Mark Andrews, Alibaba Cloud Tech Share Author. Tech Share is Alibaba Cloud's incentive program to encourage the sharing of technical knowledge and best practices within the cloud...
View ArticleToshio Kuratomi: Voluptuous and Python-3.4 Enums
Last year I played around with using jsonschema for validating some data that I was reading into my Python programs. The API for the library was straightforward but the schema turned out to be a...
View ArticleMike Driscoll: PyDev of the Week: Lovely ricel Banquil
This week we welcome Lovely ricel Banquil (AKA Banx) as our PyDev of the Week. Banx is a tester by trade and recently presented a talk at PyCon Thailand. Let’s spend some time getting to know Lovely...
View ArticleSimple is Better Than Complex: How to Use Bootstrap 4 Forms With Django
This is a quick tutorial to get you start with django-crispy-forms and never look back.Crispy-forms is a great application that gives you control over how you render Django forms, without breaking the...
View ArticleRed Hat Developers: How to install Python 3 on RHEL
This article shows how to install Python 3, pip, venv, virtualenv, and pipenv on Red Hat Enterprise Linux 7. After following the steps in this article, you should be in a good position to follow many...
View ArticleMike Driscoll: Only 2 Days Left for Jupyter Notebook 101
There’s only two days left to join the Kickstarter for my latest book, Jupyter Notebook 101. It’s also one of the best times to help out as you get to help shape the book right now. I always take my...
View ArticleFabio Zadrozny: Profiling pytest startup
I'm a fan of pytest (http://www.pytest.org), yet, it seems that the startup time for running tests locally in the app I'm working on is slowly ramping up, so, I decided to do a profile to see if there...
View ArticleTest and Code: 45: David Heinemeier Hansson - Software Development and...
David Heinemeier Hansson is the creator of Ruby on Rails, founder & CTO at Basecamp (formerly 37signals). He's a best selling author, public speaker, and even a Le Mans class winning racing driver....
View ArticleReal Python: Advanced Git Tips for Python Developers
If you’ve done a little work in Git and are starting to understand the basics we covered in our introduction to Git, but you want to learn to be more efficient and have more control, then this is the...
View ArticlePeter Bengtsson: django-html-validator now supports Django 2.x
django-html-validator is a Django project that can validate your generated HTML. It does so by sending the HTML to https://html5.validator.nu/ or you can start your own Java server locally with vnu.jar...
View Article