Tuesday, September 15, 2020

PyCoder’s Weekly: Issue #438 (Sept. 15, 2020)

#438 – SEPTEMBER 15, 2020
View in Browser »

The PyCoder’s Weekly Logo


Under the Hood of Calling C/C++ From Python

Take a walk through internals of ctypes, libffi, binary extensions, and other tools that power seamless interoperability of CPython and C.
ANTON ZHDAN-PUSHKIN • Shared by Anton Zhdan-Pushkin

Data-Oriented Programming in Python

Python’s success in scientific and numerical computing is based largely on the performance of libraries like NumPy and SciPy. What is is that makes NumPy so effective, and where is numerical Python is headed in the future?
BRIAN KIHOON LEE

Scout APM for Python: Application Performance Insight in Less Than 4 Minutes

alt

Scout APM is Python application performance monitoring that helps developers quickly pinpoint & resolve issues before your customer ever sees them. Get back to coding faster with proactive & real-time insight into N+1 queries, memory bloat & more. Start your free trial today →
COMPANYNAME sponsor

Shrink Your Conda Docker Images With conda-pack

If you’re building a Docker image that’s based on Conda, the resulting images can be huge. Learn one way to do shrink image sizes, by combining the conda-pack tool with multi-stage builds.
ITAMAR TURNER-TRAURING

The Real Python Podcast – Episode #26: 5 Years Podcasting Python with Michael Kennedy: Growth, GIL, Async, and More

Why is Python pulling in so many new programmers? Maybe some of that growth is from Python being a full-spectrum language. This week on the show we have Michael Kennedy, the host of the podcast “Talk Python to Me”. Michael reflects on five years of podcasting about Python, and many of the changes he has seen in the Python landscape.
REAL PYTHON podcast

Discussions

Happy 1600000000 Seconds Since Epochs Everyone!

As u/bananaEmpanada eloquently put it: Happy GNU year!
REDDIT

Python Jobs

Senior Backend Software Engineer (Los Angeles, CA, USA)

Tatari, Inc.

Advanced Python Engineer (Newport Beach, CA, USA)

Research Affiliates LLC

Software Engineer (Remote)

1Point21 Interactive

ETL Data Modeler (Remote)

HS Solutions

More Python Jobs >>>

Articles & Tutorials

Serving a Machine Learning Model with FastAPI and Streamlit

Both FastAPI and Streamlit are quickly gainaing popularity in the Python ecosystem. Learn how to use them together to deploy a machine learning model with a fast API and modern web interface.
AMAL SHAJI • Shared by Amal Shaji

Command Line Interfaces in Python

Command line arguments are the key to converting your programs into useful and enticing tools that are ready to be used in the terminal of your operating system. In this course, you’ll learn their origins, standards, and basics, and how to implement them in your program.
REAL PYTHON course

Want to Level-Up Your Python Skills?

alt

Write better code, debug faster, and become more productive with PyCharm, a tightly integrated IDE that understands your code and provides a complete set of tools to help you make it better. Try PyCharm now and code like a pro! Free trial →
JETBRAINS sponsor

Plot With Pandas: Python Data Visualization for Beginners

In this tutorial, you’ll get to know the basic plotting possibilities that Python provides in the popular data analysis library pandas. You’ll learn about the different kinds of plots that pandas offers, how to use them for data exploration, and which types of plots are best for certain use cases.
REAL PYTHON

Reading HTML Tables With Pandas

The pandas read_html() function can quickly scrape data from HTML tables. Learn how to use it, as well as some techniques for cleaning HTML data.
CHRIS MOFFITT

[Free] Ray Summit Sep 30 - Oct 1: Scalable Python & Machine Learning For Everyone

See how Ray, the open-source Python framework, is used for building distributed apps and libraries, including backend infrastructures and ML platforms. Join Ray Summit to connect with the community and learn to build any application at any scale.
ANYSCALE sponsor

Exploring Euler’s Methods for Solving ODEs

A great way to get comfortable with math concepts is to program them, and Python is a great language for exploring mathematical ideas, even if it’s not always the most efficient.
HASSAM UDDIN

From Concept to Live in Two Weeks With Django

How can you build a fully functional web application for a customer in a short period of time? Matt shares his experience building such a web app for a nonprofit organization while participating in a local virtual hackathon in Frederick, MD.
MATT LAYMAN

Python 101: An Intro to Working With JSON

Learn the basics of working with JSON with Python.
MIKE DRISCOLL

Projects & Code

Events

DjangoCon Europe 2020 (Online)

September 18 to September 20, 2020
DJANGOCON.EU

PyCon APAC 2020 (Online)

September 19 to September 21, 2020
PYCON.MY

GeoPython 2020 & PyML 2020 (Online)

September 21 to September 23, 2020
GEOPYTHON.NET


Happy Pythoning!
This was PyCoder’s Weekly Issue #438.
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...