Codementor: How I access Microsoft SharePoint in my Python scripts
Python & SharePoint might seem like a odd combination, but you can get useful information out of SharePoint by using a simple Python script.
View ArticleRobin Wilson: Easily hiding items from the legend in matplotlib
When producing some graphs for a client recently, I wanted to hide some labels from a legend in matplotlib. I started investigating complex arguments to the plt.legend function, but it turned out that...
View ArticleStack Abuse: Getting Started with Python PyAutoGUI
IntroductionIn this tutorial, we're going to learn how to use pyautogui library in Python 3. The PyAutoGUI library provides cross-platform support for managing mouse and keyboard operations through...
View ArticlePyBites: Linting with Flake8
For so long the word "Linting" meant nothing to me. It sounded like some supercoder leet speak that was way out of my league. Then I discovered flake8 and realised I was a fool.This article is a simple...
View ArticleReal Python: Get Started With Django: Build a Portfolio App
Django is a fully featured Python web framework that can be used to build complex web applications. In this course, you’ll jump in and learn Django by example. You’ll follow the steps to create a fully...
View ArticlePyCharm: Webinar Preview: Project Setup for React+TS+TDD
Next Wednesday (Oct 16) I’m giving a webinar on React+TypeScript+TDD in PyCharm. Let’s give a little background on the webinar and spotlight one of the first parts covered.BackgroundEarlier this year...
View ArticleCodementor: Python-compatible IDEs: What is It and Why Do You Need It?
There is no better way to build in Python than by using an IDE (Integrated Development Environment). They not only make your work much easier as well as logical; they also enhance the coding...
View ArticlePython Circle: Solving Python Error- KeyError: 'key_name'
Solving KeyError in python, How to handle KeyError in python dictionary, Safely accessing and deleting keys from python dictionary, try except Key error in Python
View ArticlePython Circle: 5 lesser used Django template tags
rarely used Django template tags, lesser-known Django template tags, 5 awesome Django template tags, Fun with Django template tags,
View ArticlePyCoder’s Weekly: Issue #389 (Oct. 8, 2019)
#389 – OCTOBER 8, 2019View in Browser »Get Started With Django: Build a Portfolio App In this course, you’ll learn the basics of creating powerful web applications with Django, a Python web framework....
View ArticlePyPy Development: PyPy's new JSON parser
Introduction In the last year or two I have worked on and off on making PyPy's JSON faster, particularly when parsing large JSON files. In this post I am going to document those techniques and measure...
View ArticleWingware News: Wing Python IDE 7.1.2 - October 7, 2019
Wing 7.1.2 adds a How-To for using Wing with Docker, allows disabling code warnings from the tooltip displayed over the editor, adds support for macOS 10.15 (Catalina), supports code folding in JSON...
View ArticlePython Insider: Python 2.7.17 release candidate 1 available
A release candidate for the upcoming 2.7.17 bug fix release is now available for download.
View ArticlePython Engineering at Microsoft: Announcing Support for Native Editing of...
With today’s October release of the Python extension, we’re excited to announce the support of native editing of Jupyter notebooks inside Visual Studio Code! You can now directly edit .ipynb files and...
View ArticlePython Engineering at Microsoft: Python in Visual Studio Code – October 2019...
We are pleased to announce that the October 2019 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the Marketplace, or install it...
View ArticleNed Batchelder: Pytest-cov support for who-tests-what
I’ve added a new option to the pytest-cov coverage plugin for pytest: --cov-context=test will set the dynamic context based on pytest test phases. Each test has a setup, run, and teardown phase. This...
View ArticleIslandT: Find the position of the only odd number within a list with Python
In this example, we will write a python function that will return the position of the only odd number within the number list. If there is no odd number within that list then the function will return -1...
View ArticlePyBites: PyCon ES 2019 Alicante Highlights
Last weekend it was Pycon time again, my 6th one so far. This time closer to home: Alicante.I had an awesome time, meeting a lot of nice people, watching interesting talks and getting inspired overall...
View ArticleStack Abuse: Python for NLP: Neural Machine Translation with Seq2Seq in Keras
This is the 22nd article in my series of articles on Python for NLP. In one of my previous articles on solving sequence problems with Keras, I explained how to solve many to many sequence problems...
View ArticleAnarcat: Tip of the day: batch PDF conversion with LibreOffice
Someone asked me today why they couldn't write on the DOCX document they received from a student using the pen in their Onyx Note Pro reader. The answer, of course, is that while the Onyx can read...
View Article