Tic-Tac-Toe With Tkinter, 6 Steps After Django startproject, AsyncIO for Web Apps, and More

#531 โ€“ JUNE 28, 2022 VIEW IN BROWSER
The PyCoder’s Weekly Logo
Build a Tic-Tac-Toe Game With Python and Tkinter
In this step-by-step project, you’ll learn how to create a tic-tac-toe game using Python and the Tkinter GUI framework. Tkinter is cross-platform and is available in the Python standard library. Creating a game in Python is a great and fun way to learn something new and exciting!
REAL PYTHON

Six Things I Do Every Time I Start a Django Project
When you start a new Django project you have some housekeeping tasks and some decisions to make. This article talks about some of the key things you might want to do when starting a new project.
BRENTON CLEELAND

Get Started: Infrastructure as Code With Python on AWS [Workshop]
In this on-demand workshop, you will learn the fundamentals of Infrastructure as Code through a series of guided exercises. You will be introduced to Pulumi, an infrastructure as code platform, where you can use Python to provision modern cloud infrastructure โ†’
PULUMIsponsor

Should You Use AsyncIO for Your Next Web Application?
Pythonโ€™s AsyncIO web ecosystem continues to mature, but should you build your next production application with one of these shiny new frameworks such as FastAPI, Starlette, or Quart?
STEVEN PATE โ€ข Shared by Steven Pate

Four More Python Packages Found Stealing AWS Credentials
AX SHARMA

Stack Overflow Developer Survey 2022 Results Available
STACKOVERFLOW.CO

Django 4.1 Beta 1 Released
DJANGO SOFTWARE FOUNDATION

urllib3 Announces Bounty Program
URLLIB3.READTHEDOCS.IO

Open Source Security Foundation Funds PSF
OPENSSF.ORG


Discussions


Should I Learn Java or Python Next?
DARCY DECLUTE

What Tone to Use in Code Review Suggestions?
HACKER NEWS


Python Jobs


Senior Python Software Engineer
MYOME ๐Ÿ“ SAN FRANCISCO, CA, USA

Senior Full-Stack Web Developer
MONETIZEMORE ๐Ÿ“ ANYWHERE

Backend Software Developer
CANOPY ๐Ÿ“ DRAPER, UT, USA

Gameful Learning Developer
UNIVERSITY OF MICHIGAN ๐Ÿ“ ANN ARBOR, MI, USA

Python Technical Architect
BLENDERBOX ๐Ÿ“ USA

Software Engineer (Los Angeles or Dallas)
CAUSEWAY CAPITAL MANAGEMENT LLC ๐Ÿ“ LOS ANGELES, CA, USA

DevOps Engineer
UNIVERSITY OF MICHIGAN ๐Ÿ“ ANN ARBOR, MI, USA

Academic Innovation Developer
UNIVERSITY OF MICHIGAN ๐Ÿ“ ANN ARBOR, MI, USA

Software Development Lead
UNIVERSITY OF MICHIGAN ๐Ÿ“ ANN ARBOR, MI, USA

Principal Python Engineer (100% Remote)
NIRA ๐Ÿ“ SAN FRANCISCO, CA, USA

More Python Jobs >>>


Articles & Tutorials


How to Patch requests to Have a Default Timeout
Pythonโ€™s requests provides the ability to timeout when fetching content, but it isn’t turned on by default. If you’ve got a large code base there is a chance you have a call that could hang forever. This article describes how to monkeypatch requests to provide default timeout capabilities.
ADAM JOHNSON

Python mmap: Doing File I/O With Memory Mapping
In this video course, you’ll learn how to use Python’s mmap module to improve your code’s performance when you’re working with files. You’ll get a quick overview of the different types of memory before diving into how and why memory mapping with mmap can make your file I/O operations faster.
REAL PYTHON course

Data Elixir: Data Science Newsletter
Data Elixir is an email newsletter that keeps you on top of the latest tools and trends in Data Science. Covers machine learning, data visualization, analytics, and strategy. Curated weekly with top picks from around the web โ†’
DATA ELIXIRsponsor

The subprocess Module: Wrapping Programs With Python
In this tutorial, you’ll learn how to leverage other apps and programs that aren’t Python, wrapping them or launching them from your Python scripts using the subprocess module. You’ll learn about processes all the way up to interacting with a process as it executes.
REAL PYTHON

Don’t Let Dicts Spoil Your Code
The dict is the go-to data structure for Python programmers, but its loose relationship to the data can be problematic in large data streams. Learn more about why you might choose a different data structure and when.
ROMAN IMANKULOV

String translate and maketrans Methods
The str methods translate and maketrans are lesser used, but helpful. You can use translate to replace characters in a string using a translation map, and maketrans helps you to build those maps.
RODRIGO GIRรƒO SERRรƒO

3 Things to Know Before Building With PyScript
PyScript is a browser-embedded python environment built on top of Pyodide. Although it is a powerful tool, there are some things you need to be careful with. Read on to find out more.
BRADEN RIGGS

How Can You Emulate Do-While Loops in Python?
In this tutorial, you’ll learn how to emulate do-while loops in Python. The most common technique to do this is to create an infinite while loop with a conditional statement that controls the loop and jumps out of it using a break statement.
REAL PYTHON

Find Your Next Tech Job Through Hired
Hired has 1000s of companies of all sizes who are actively hiring developers, data scientists, mobile engineers, and more. It’s really simple: create a profile with your skills for hiring managers to reach you directly. Sign up today!
HIREDsponsor

6 Usage Patterns for the ThreadPoolExecutor in Python
The ThreadPoolExecutor gives a lot of power an flexibility for concurrent code. This article describes six different patterns that can be used when coding with this context manager.
JASON BROWNLEE

Python Lazy Imports With Cinder
Instagram has implemented a lazy import mechanism to improve application loading times. This article describes why they built it and how it helps.
GERMรN Mร‰NDEZ BRAVO


Projects & Code


Brought to you by Real Python for Teamssponsor
Online Python training created by a community of experts. Give your team the real-world Python skills they need to succeed โ†’

packj: Detect Malicious/Risky Packages
GITHUB.COM/OSSILLATE-INC

editabletuple: Like namedtuple but Editable
GITHUB.COM/MARK-SUMMERFIELD โ€ข Shared by Mark Summerfield

bluelink: Control Your Hyundai Car via Python
GITHUB.COM/SYNCHRONIZING

py-webengine: Browser Testing Through PyQt
GITHUB.COM/NATHANTS

svg.py: Type-Safe Library to Generate SVG Files
GITHUB.COM/ORSINIUM-LABS

๐Ÿ“†๐Ÿ Upcoming Python Events


Weekly Real Python Office Hours Q&A (Virtual)
June 29, 2022

SPb Python Drinkup
June 30, 2022

PyDelhi User Group Meetup
July 2, 2022

Melbourne Python Users Group, Australia
July 4, 2022

STL Python
July 6, 2022
Happy Pythoning!
Copyright ยฉ 2022 PyCoder’s Weekly, All rights reserved.
You are receiving this email because you opted in on our website at pycoders.com
Our mailing address: DevCademy Media Inc. ยท #720-999 West Broadway, Vancouver BC V5Z 1K5, Canada

Unsubscribe | Update Email Address

Older messages

Objects, Functions, Generators, & Coroutines; Combining Data in pandas; Lazy Imports; and More

Tuesday, June 21, 2022

Objects, Functions, Generators, and Coroutines #530 – JUNE 21, 2022 VIEW IN BROWSER The PyCoder's Weekly Logo Objects, Functions, Generators, and Coroutines Although different concepts, objects,

PyScript, Debugging in Django, Password Handling, and More

Tuesday, June 14, 2022

A First Look at PyScript: Python in the Web Browser #529 – JUNE 14, 2022 VIEW IN BROWSER The PyCoder's Weekly Logo A First Look at PyScript: Python in the Web Browser In this tutorial, you'll

Django Static Files, Data Cleaning, CPython Strings, and More

Tuesday, June 7, 2022

Django Static Files and Templates #528 – JUNE 7, 2022 VIEW IN BROWSER The PyCoder's Weekly Logo Django Static Files and Templates “Static files like CSS, JavaScript, and fonts are a core piece of

Not Functions, But Classes; Exploring Scope; All About Asterisks; and More

Tuesday, May 31, 2022

Python's "Functions" Are Sometimes Classes #527 – MAY 31, 2022 VIEW IN BROWSER The PyCoder's Weekly Logo Python's “Functions” Are Sometimes Classes Ever use list() or enumerate()

Building a URL Shortener, Debug Life, Pigeon Deterents, and More

Tuesday, May 24, 2022

Build a URL Shortener With FastAPI and Python #526 – MAY 24, 2022 VIEW IN BROWSER The PyCoder's Weekly Logo Build a URL Shortener With FastAPI and Python In this step-by-step project, you'll

You Might Also Like

Christmas On Repeat 🎅

Monday, December 23, 2024

Christmas nostalgia is a hell of a drug. Here's a version for your browser. Hunting for the end of the long tail • December 22, 2024 Hey all, Ernie here with a refresh of a piece from our very

SRE Weekly Issue #456

Monday, December 23, 2024

View on sreweekly.com A message from our sponsor, FireHydrant: On-call during the holidays? Spend more time taking in some R&R and less getting paged. Let alerts make their rounds fairly with our

The Power of an Annual Review & Grammarly acquires Coda

Sunday, December 22, 2024

I am looking for my next role, Zen Browser got a fresh new look, Flipboard introduces Surf, Campsite shuts down, and a lot more in this week's issue of Creativerly. Creativerly The Power of an

Daily Coding Problem: Problem #1645 [Hard]

Sunday, December 22, 2024

Daily Coding Problem Good morning! Here's your coding interview problem for today. This problem was asked by Facebook. Implement regular expression matching with the following special characters: .

PD#606 How concurrecy works: A visual guide

Sunday, December 22, 2024

A programmer had a problem. "I'll solve it with threads!". has Now problems. two he ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌

RD#486 (React) Things I Regret Not Knowing Earlier

Sunday, December 22, 2024

Keep coding, stay curious, and remember—you've got this ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌

🎶 GIFs Are Neat, but I Want Clips With Sound — Your Own Linux Desktop in the Cloud

Sunday, December 22, 2024

Also: 9 Games That Were Truly Ahead of Their Time, and More! How-To Geek Logo December 22, 2024 Did You Know Dextrose is another name for glucose, so if you see it listed prominently on the ingredients

o3—the new state-of-the-art reasoning model - Sync #498

Sunday, December 22, 2024

Plus: Nvidia's new tiny AI supercomputer; Veo 2 and Imagen 3; Google and Microsoft release reasoning models; Waymo to begin testing in Tokyo; Apptronik partners with DeepMind; and more! ͏ ͏ ͏ ͏ ͏ ͏

Sunday Digest | Featuring 'The World’s 20 Largest Economies, by GDP (PPP)' 📊

Sunday, December 22, 2024

Every visualization published this week, in one place. Dec 22, 2024 | View Online | Subscribe | VC+ | Download Our App Hello, welcome to your Sunday Digest. This week, we visualized public debt by

Android Weekly #654 🤖

Sunday, December 22, 2024

View in web browser 654 December 22nd, 2024 Articles & Tutorials Sponsored Solving ANRs with OpenTelemetry While OpenTelemetry is the new observability standard, it lacks official support for many