A recent paper finds that when new albums drop, streaming traffic increases — and so do traffic fatalities. 🤯
In today's Bamboo Weekly, we investigate this data with #Python #Pandas, using a variety of data-analysis techniques — grouping, joins, and datetime values.
Level up your data-analysis skills every Wednesday, at https://BambooWeekly.com

RE: https://fosstodon.org/@djangoconeurope/116250429589221893
I'm thrilled that my current employer is a 🩶 sponsor 💸 of the @djangoconeurope 2026 in Athens 🇬🇷 I will be there too, so don't hesitate and say hi! 🤝 #django #python #conference
I'm re-reading Monstrous Regiment by Terry Pratchett, and decided to add a new random error window title to @novelwriter 😁
#Code #Python #TerryPratchett #Discworld

Your #Python #Pandas data frame has a multi-index, and you want to remove one part — not return it to be a regular column? Add drop=True:
df.reset_index(level=1) # index level 1 becomes a column in df
df.reset_index(level=1, drop=True) # index level 1 is removed

Have you been looking for a place to share your knowledge with other interested #python developers? 🐍
Every 1st Tuesday of the month, #PyTexas has a meetup on Discord & we would love to hear what you would like to share! 💛
Learn more here: https://www.pytexas.org/meetup

What have you used a #Python async comprehension for lately? 🐍❓

Well that's handy! The tabulate python package will make little ascii tables of your data
We can compare and contrast printing my pandas data frame here.
print(df)
print(tabulate(df, headers='keys', tablefmt='psql', showindex=False))
That's going to be way easier for my users to comprehend and saves me from popping it into Excel just to show them it in a table
https://pypi.org/project/tabulate/

SoFi is hiring Staff Data Scientist - Loss Forecasting & Portfolio Analytics
🔧 #python #sql
🌎 San Francisco, California
⏰ Full-time
🏢 SoFi
Job details https://jobsfordevelopers.com/jobs/staff-data-scientist-loss-forecasting-portfolio-analytics-at-sofi-com-dec-11-2025-255806?utm_source=mastodon.world&utm_medium=social&utm_campaign=posting
#jobalert #jobsearch #hiring
👨💻🐍Шпаргалка з інструментів #Python: бібліотеки для аналізу та обробки даних, середовища та інструменти для роботи з кодом, робота з базами даних, машинне навчання та нейронні мережі, візуалізація даних, інженерія даних і пайплайни, пошук і обробка даних 👇

How to Prevent Star Unpacking From Eating All Memory
Using *rest to unpack a generator forces the ENTIRE generator into a list in memory. Millions of items at once.
#python #unpacking #generator #memory #performance #howto #production #staroperator
https://www.youtube.com/watch?v=L6UvykBVUfQ
🚨ICYMI: The #PyConUS 2026 schedule is officially live!!🚨
Talks, Tutorials, and Charlas—it’s all there!
Don’t wait, register today and start planning your week with us in Long Beach, CA! 🌴
👉 https://us.pycon.org/2026/schedule/
Python iRODS Client Library v3.3.0 is released!
This release includes improvements for listing tickets, clean cancellation of parallel transfers, storage of binary data in AVUs, and more.
https://github.com/irods/python-irodsclient/releases/tag/v3.3.0
https://pypi.org/project/python-irodsclient/