Tuesday, November 12, 2019

PyCoder’s Weekly: Issue #394 (Nov. 12, 2019)

#394 – NOVEMBER 12, 2019
View in Browser »

The PyCoder’s Weekly Logo


PSF Seeking Developers for Paid Contract Improving Pip

The Python Software Foundation Packaging Working Group is receiving funding to work on the design, implementation, and rollout of pip’s next-generation dependency resolver. Funding has been allocated to secure a senior developer and an intermediate developer, starting in December 2019 or January 2020. RFP open now through November 22.
PYFOUND.BLOGSPOT.COM • Shared by Brian Rutledge

My Python Development Environment, 2020 Edition

The co-creator of Django explains his Python environment: “My setup pieces together pyenv, poetry, and pipx. It’s probably a tad more complex than is ideal for most Python users, but for the things I need, it’s perfect.” Related discussion on Hacker News.
JACOB KAPLAN-MOSS

Collaborative Python and R Notebooks Integrated With SQL. All in One Platform. Free Forever.

alt

Mode Studio combines a SQL editor, Python & R notebooks, and visualization builder in one platform. Connect your data warehouse and analyze with your preferred language. Make custom viz (D3.js, HTML/CSS) or use out-of-the-box charts →
MODE ANALYTICS sponsor

When to Use a List Comprehension in Python

Python list comprehensions make it easy to create lists while performing sophisticated filtering, mapping, and conditional logic on their members. In this tutorial, you’ll learn when to use a list comprehension in Python and how to create them effectively.
REAL PYTHON

“Parsing” in Python

“Don’t be afraid to create new, more specific data types for your specific use cases. It’s okay to represent different data, used for different purposes, with different data structures, and makes later generalization easier!”
ASTHASR.GITHUB.IO

Detecting Natural Disasters With Keras and Deep Learning

In this tutorial, you will learn how to automatically detect natural disasters (earthquakes, floods, wildfires, cyclones/hurricanes) with up to 95% accuracy using Keras, Computer Vision, and Deep Learning.
ADRIAN ROSEBROCK

Python Becomes 2nd Most Popular Language on GitHub

GitHub has published its latest State of the Octoverse report which provides fascinating insights into the development industry.
DEVELOPER-TECH.COM

The Complex Path for a Simple Portable Python Interpreter

“We needed a Python interpreter that can be shipped everywhere. You won’t believe what happened next!”
GLAUBER COSTA

Python Jobs

Senior Python/Django Developer (Eindhoven, Netherlands)

Sendcloud

Django Full Stack Web Developer (Austin, TX, USA)

Zeitcode

Full Stack Developer (Toronto, ON, Canada)

Beanfield Metroconnect

Sr. Security Software Engineer (Remote)

TER Consulting Group

Full Stack Software Developer (Remote)

CyberCoders

Scientific Software Engineer (Remote)

Incendia Partners

More Python Jobs >>>

Articles & Tutorials

Python Lambda Functions Quiz

Python lambdas are little, anonymous functions, subject to a more restrictive but more concise syntax than regular Python functions. Test your understanding on how you can use them better!
REAL PYTHON

Teaching Python Episode 31: Python in the School of 2024

“In this episode, Kelly and Sean discuss plausible trends in machine learning, artificial intelligence, augmented and virtual reality, and data science that we may see in schools by 2024. We focus on 5 areas from microscale in the classroom to macro across the entire educational system.”
TEACHINGPYTHON.FM podcast

Automated Python Code Reviews, Directly From Your Git Workflow

alt

Codacy lets developers spend more time shipping code and less time fixing it. Set custom standards and automatically track quality measures like coverage, duplication, complexity and errors. Integrates with GitHub, GitLab and Bitbucket, and works with 28 different languages. Get started today for free →
CODACY sponsor

How to Handle Coroutines With Asyncio in Python

Learn about coroutines in Python by example. More specifically, you’ll see how to handle coroutines using asyncio.
ERIK MARSJA

Thinking Recursively in Python

In this course, you’ll learn how to work with recursion in your Python programs by mastering concepts such as recursive functions and recursive data structures.
REAL PYTHON video

How to Read Stata Files in Python With Pandas

Learn how to read Stata (.dta) files in Python and how to write a Stata file to CSV and Excel files.
ERIK MARSJA

Developing a Single Page App With Flask and Vue.js

A step-by-step walkthrough of how to set up a basic CRUD app with Vue and Flask.
MICHAEL HERMAN

Tornado Framework for the Modern Web

Exploring a Tornado use case in low memory environment.
MANADOMA.COM

Measure and Improve Python Code Performance With Blackfire.io

Profile in development, test/staging, and production, with no overhead for end users! Blackfire supports any Python version from 2.7.x and 3.x. Find bottlenecks in wall-time, I/O, CPU, memory, HTTP requests, and SQL queries.
BLACKFIRE sponsor

Projects & Code

Events

Python Atlanta

November 14, 2019
MEETUP.COM

BangPypers

November 16, 2019
MEETUP.COM

PyLadies Dublin

November 21, 2019
PYLADIES.COM

MadPUG

November 21, 2019
MEETUP.COM


Happy Pythoning!
This was PyCoder’s Weekly Issue #394.
View in Browser »

alt

[ Subscribe to 🐍 PyCoder’s Weekly 💌 – Get the best Python news, articles, and tutorials delivered to your inbox once a week >> Click here to learn more ]



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...