Mike Driscoll: PyDev of the Week: Sophia Yang
Link: https://www.blog.pythonlibrary.org/2023/07/17/pydev-of-the-week-sophia-yang/
This week we welcome Sophia Yang (@sophiamyang) as our PyDev of the Week! Sophia is a data scientist who works at Anaconda. You can connect with Sophia on LinkedIn. If podcasts are your thing, you can
Link: https://www.blog.pythonlibrary.org/2023/07/17/pydev-of-the-week-sophia-yang/
This week we welcome Sophia Yang (@sophiamyang) as our PyDev of the Week! Sophia is a data scientist who works at Anaconda. You can connect with Sophia on LinkedIn. If podcasts are your thing, you can
Mouse Vs Python
PyDev of the Week: Sophia Yang - Mouse Vs Python
This week we welcome Sophia Yang (@sophiamyang) as our PyDev of the Week! Sophia is a data scientist who works at Anaconda. You can connect with Sophia on
Real Python: Python News: What's New From June 2023
Link: https://realpython.com/python-news-june-2023/
June 2023 welcomed a lot of new people and positions to the Python Software Foundation (PSF). Elections wrapped up for directors, and a new security developer in residence got to work. The organizatio
Link: https://realpython.com/python-news-june-2023/
June 2023 welcomed a lot of new people and positions to the Python Software Foundation (PSF). Elections wrapped up for directors, and a new security developer in residence got to work. The organizatio
Realpython
Python News: What's New From June 2023 – Real Python
In June 2023, the PSF held a board of directors election and welcomed a new security developer in residence. They also announced a CPython deputy developer in residence role. Pydantic released a new version, while Python 3.7 reached its end of life.
Python Morsels: Python's "next" function
Link: https://www.pythonmorsels.com/next/
Python's built-in next function will consume the next item from a given iterator.
Table of contents
Getting the next line from a file
You can't use next on most iterables
Iterators work with next
U
Link: https://www.pythonmorsels.com/next/
Python's built-in next function will consume the next item from a given iterator.
Table of contents
Getting the next line from a file
You can't use next on most iterables
Iterators work with next
U
Pythonmorsels
Python's next() function
Python's built-in next function will consume the next item from a given iterator.
Test and Code: Open Source at Intel
Link: https://share.transistor.fm/s/d56d8bef
Open Source is important to Intel and has been for a very long time.Joe Curley, vice president and general manager of software products and ecosystem, and Arun Gupta, vice president and general manage
Link: https://share.transistor.fm/s/d56d8bef
Open Source is important to Intel and has been for a very long time.Joe Curley, vice president and general manager of software products and ecosystem, and Arun Gupta, vice president and general manage
share.transistor.fm
Open Source at Intel | Test & Code in Python | Episode 203
Open Source is important to Intel and has been for a very long time.Joe Curley, vice president and general manager of software products and ecosystem, and Arun Gupta, vice president and general manager for open ecosystems, join the show to discuss open source…
John Cook: Searching for proper nouns
Link: https://www.johndcook.com/blog/2023/07/17/searching-for-proper-nouns/
Suppose you want to find all the proper nouns in a document. You could grep for every word that starts with a capital letter with something like
grep '\b[A-Z]\w+'
but this would return the first w
Link: https://www.johndcook.com/blog/2023/07/17/searching-for-proper-nouns/
Suppose you want to find all the proper nouns in a document. You could grep for every word that starts with a capital letter with something like
grep '\b[A-Z]\w+'
but this would return the first w
John D. Cook | Applied Mathematics Consulting
Searching for proper nouns
Suppose you want to find all the proper nouns in a document. You could grep for every word that starts with a capital letter with something like grep '\b[A-Z]\w+' but this would return the first word of each sentence in addition to the words you're after.…
Sebastian Witowski: Pathlib for Path Manipulations
Link: https://switowski.com/blog/pathlib/
<p>If I were to name my top ten modules from the standard library, <code>pathlib</code> would be high on that list. It could even make it to the top three.</p>
<p>Manipulating paths was alway
Link: https://switowski.com/blog/pathlib/
<p>If I were to name my top ten modules from the standard library, <code>pathlib</code> would be high on that list. It could even make it to the top three.</p>
<p>Manipulating paths was alway
Sebastian Witowski
Pathlib for Path Manipulations
pathlib is an interesting, object-oriented take on the filesystem paths. With plenty of functions to create, delete, move, rename, read, write, find, or split files, pathlib is an excellent replacement for the os module. But is it faster?
EuroPython: A better development experience with PyCharm. Now with AI Assistant
Link: https://blog.europython.eu/a-better-development-experience-with-pycharm-now-with-ai-assistant/
Learn how our tool can help your web development, data science, or machine learning work get done. Whether you’re a web developer, a data scientist, or a machine learning engineer, you want to get you
Link: https://blog.europython.eu/a-better-development-experience-with-pycharm-now-with-ai-assistant/
Learn how our tool can help your web development, data science, or machine learning work get done. Whether you’re a web developer, a data scientist, or a machine learning engineer, you want to get you
EuroPython Blog
A better development experience with PyCharm. Now with AI Assistant
Learn how our tool can help your web development, data science, or machine learning work get done. Whether you’re a web developer, a data scientist, or a machine learning engineer, you want to get your work done fast and achieve the best possible results.…
TestDriven.io: Django REST Framework Authentication with Auth.js
Link: https://testdriven.io/blog/django-rest-authjs/
This tutorial looks at how to add authentication to Django REST Framework and integrate it with Auth.js.
Link: https://testdriven.io/blog/django-rest-authjs/
This tutorial looks at how to add authentication to Django REST Framework and integrate it with Auth.js.
testdriven.io
Django REST Framework Authentication with Auth.js
This tutorial looks at how to add authentication to Django REST Framework and integrate it with Auth.js.
Real Python: Creating Web Maps From Your Data With Python Folium
Link: https://realpython.com/courses/python-folium-web-maps-from-data/
If you’re working with geospatial data in Python, then you might want to quickly visualize that data on a map. Python’s Folium library gives you access to the mapping strengths of the Leaflet JavaScri
Link: https://realpython.com/courses/python-folium-web-maps-from-data/
If you’re working with geospatial data in Python, then you might want to quickly visualize that data on a map. Python’s Folium library gives you access to the mapping strengths of the Leaflet JavaScri
Realpython
Creating Web Maps From Your Data With Python Folium – Real Python
You'll learn how to create web maps from data using Folium. The package combines Python's data-wrangling strengths with the data-visualization power of the JavaScript library Leaflet. In this video course, you'll create and style a choropleth world map showing…
PyCoder’s Weekly: Issue #586 (July 18, 2023)
Link: https://pycoders.com/issues/586
#586 – JULY 18, 2023 View in Browser » Mazes in Python Part 2: Storing and Solving In part two of this two-part project, you’ll define a specialized binary file format to store a maze on disk, t
Link: https://pycoders.com/issues/586
#586 – JULY 18, 2023 View in Browser » Mazes in Python Part 2: Storing and Solving In part two of this two-part project, you’ll define a specialized binary file format to store a maze on disk, t
Pycoders
PyCoder’s Weekly | Issue #586
Issue #586 of the PyCoder’s Weekly newsletter, published July 18, 2023.
Test and Code: Free Your Inner Nonfiction Writer
Link: https://share.transistor.fm/s/70da9014
Learn how to write nonfiction fast and well.Johanna Rothman joins the show to discuss writing nonfiction.Johanna's book: Free Your Inner Nonfiction Writer<p>Learn how to write nonfiction fast and well
Link: https://share.transistor.fm/s/70da9014
Learn how to write nonfiction fast and well.Johanna Rothman joins the show to discuss writing nonfiction.Johanna's book: Free Your Inner Nonfiction Writer<p>Learn how to write nonfiction fast and well
share.transistor.fm
Free Your Inner Nonfiction Writer | Test & Code in Python | Episode 204
Learn how to write nonfiction fast and well.Johanna Rothman joins the show to discuss writing nonfiction.Johanna's book: Free Your Inner Nonfiction Writer
Python Bytes: #344 AMA: Ask Us Anything
Link: https://pythonbytes.fm/episodes/show/344/ama-ask-us-anything
<a href='https://www.youtube.com/watch?v=Vu-tPIVre_k' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
<p>Sponsored by us! Support our work through:</p
Link: https://pythonbytes.fm/episodes/show/344/ama-ask-us-anything
<a href='https://www.youtube.com/watch?v=Vu-tPIVre_k' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
<p>Sponsored by us! Support our work through:</p
pythonbytes.fm
AMA: Ask Us Anything
News and announcements from the Python community for the week of Jul 18th, 2023
CodersLegacy: Guide to Hidden Imports in Auto-Py-to-EXE
Link: https://coderslegacy.com/hidden-imports-in-auto-py-to-exe/
Auto Py to Exe is a convenient tool that allows you to convert your Python scripts into standalone executables. However, there may be situations where your script relies on external modules or package
Link: https://coderslegacy.com/hidden-imports-in-auto-py-to-exe/
Auto Py to Exe is a convenient tool that allows you to convert your Python scripts into standalone executables. However, there may be situations where your script relies on external modules or package
CodersLegacy
Guide to Hidden Imports in Auto-Py-to-EXE - CodersLegacy
This guide will explain what hidden imports are, when to use them, and how to incorporate them into your Auto-Py-to-Exe workflow.
Real Python: Python's list Data Type: A Deep Dive With Examples
Link: https://realpython.com/python-list/
The list class is a fundamental built-in data type in Python. It has an impressive and useful set of features, allowing you to efficiently organize and manipulate heterogeneous data. Knowing how to us
Link: https://realpython.com/python-list/
The list class is a fundamental built-in data type in Python. It has an impressive and useful set of features, allowing you to efficiently organize and manipulate heterogeneous data. Knowing how to us
Realpython
Python's list Data Type: A Deep Dive With Examples – Real Python
In this tutorial, you'll dive deep into Python's lists. You'll learn how to create them, update their content, populate and grow them, and more. Along the way, you'll code practical examples that will help you strengthen your skills with this fundamental…
PyBites: From Teacher to Python Developer by Building a Community Platform Using Django
Link: https://pybit.es/articles/from-teacher-to-python-developer-by-building-a-community-platform-using-django/
Watch here:
Listen here:
This week we talk with James Dycus about his journey from teacher to Python software developer.
We talk about his background as a teacher and how het got into Python.
How
Link: https://pybit.es/articles/from-teacher-to-python-developer-by-building-a-community-platform-using-django/
Watch here:
Listen here:
This week we talk with James Dycus about his journey from teacher to Python software developer.
We talk about his background as a teacher and how het got into Python.
How
PyBites
From Teacher To Python Developer By Building A Community Platform Using Django - PyBites
How he joined our PDM program a few months ago and the amazing growth he has experienced since by building out a mature real world application using Django 🐍
Glyph Lefkowitz: Bilithification
Link: https://blog.glyph.im/2023/07/bilithification.html
Several years ago at O’Reilly’s Software Architecture conference, within a
comprehensive talk on refactoring “Technical Debt: A Masterclass”, r0ml1
presented a concept that I think should be highlight
Link: https://blog.glyph.im/2023/07/bilithification.html
Several years ago at O’Reilly’s Software Architecture conference, within a
comprehensive talk on refactoring “Technical Debt: A Masterclass”, r0ml1
presented a concept that I think should be highlight
blog.glyph.im
Bilithification
Not sure how to do microservices? Split your monolith in half.
Real Python: The Real Python Podcast – Episode #165: Leveraging the Features of Your Database With Postgres and Python
Link: https://realpython.com/podcasts/rpp/165/
Are you getting the most out of your Postgres database? What features could you leverage to improve your Python project? This week on the show, Craig Kerstiens from Crunchy Data is here to discuss get
Link: https://realpython.com/podcasts/rpp/165/
Are you getting the most out of your Postgres database? What features could you leverage to improve your Python project? This week on the show, Craig Kerstiens from Crunchy Data is here to discuss get
Realpython
Episode #165: Leveraging the Features of Your Database With Postgres and Python – The Real Python Podcast
Are you getting the most out of your Postgres database? What features could you leverage to improve your Python project? This week on the show, Craig Kerstiens from Crunchy Data is here to discuss getting the most out of Postgres.
Test and Code: Open Source at Intel
Link: https://testandcode.com/episodes/open-source-at-intel
Open Source is important to Intel and has been for a very long time.Joe Curley, vice president and general manager of software products and ecosystem, and Arun Gupta, vice president and general manage
Link: https://testandcode.com/episodes/open-source-at-intel
Open Source is important to Intel and has been for a very long time.Joe Curley, vice president and general manager of software products and ecosystem, and Arun Gupta, vice president and general manage
Test & Code in Python
Test & Code in Python | Open Source at Intel
Topics include automated testing, testing strategy, software engineering practices, packaging, Python, pytest, data science, TDD, continuous integration, and software methodologies.
Also anything I think helps make the daily life of a software developer more…
Also anything I think helps make the daily life of a software developer more…
Test and Code: Free Your Inner Nonfiction Writer
Link: https://testandcode.com/episodes/free-your-inner-nonfiction-writer
Learn how to write nonfiction fast and well.Johanna Rothman joins the show to discuss writing nonfiction.Johanna's book: Free Your Inner Nonfiction Writer
If you like Test & Code, I think you'll also
Link: https://testandcode.com/episodes/free-your-inner-nonfiction-writer
Learn how to write nonfiction fast and well.Johanna Rothman joins the show to discuss writing nonfiction.Johanna's book: Free Your Inner Nonfiction Writer
If you like Test & Code, I think you'll also
Test & Code in Python
Test & Code in Python | Free Your Inner Nonfiction Writer
Topics include automated testing, testing strategy, software engineering practices, packaging, Python, pytest, data science, TDD, continuous integration, and software methodologies.
Also anything I think helps make the daily life of a software developer more…
Also anything I think helps make the daily life of a software developer more…
Matt Layman: Email Templates - Building SaaS with Python and Django #165
Link: https://www.mattlayman.com/blog/2023/email-templates-building-saas-with-python-and-django-165/
In this episode, we added the prompt email that will be the primary way of connecting to users for our email-based journaling service. I spent a fair amount of time thinking about copy writing to craf
Link: https://www.mattlayman.com/blog/2023/email-templates-building-saas-with-python-and-django-165/
In this episode, we added the prompt email that will be the primary way of connecting to users for our email-based journaling service. I spent a fair amount of time thinking about copy writing to craf
Matt Layman
Email Templates - Building SaaS with Python and Django #165
In this episode, we added the prompt email that will be the primary way of connecting to users for our email-based journaling service. I spent a fair amount of time thinking about copy writing to craft a compelling email that will resonate with users. Also…
Abhijeet Pal: How to Use Celery with Django for Asynchronous and Periodic Tasks : A Comprehensive Guide
Link: http://djangocentral.com/how-to-use-celery-with-django/
In modern web development, the ability to handle time-consuming tasks asynchronously is crucial for enhancing the performance and responsiveness of web applications. Django, a powerful web framework,
Link: http://djangocentral.com/how-to-use-celery-with-django/
In modern web development, the ability to handle time-consuming tasks asynchronously is crucial for enhancing the performance and responsiveness of web applications. Django, a powerful web framework,
Djangocentral
How to Use Celery in Django for Asynchronous and Scheduled Tasks: A Straightforward Guide
In modern web development, the ability to handle time-consuming tasks asynchronously is crucial for enhancing the performance and responsiveness of web appli