python

Back Open Paginator
18.03.2026 18:08
Reuven (@Reuven@fosstodon.org)

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 BambooWeekly.com





Show Original Post


18.03.2026 18:00
felixxm (@felixxm@fosstodon.org)

RE: fosstodon.org/@djangoconeurope

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




Show Original Post


18.03.2026 17:59
veronica (@veronica@mastodon.online)

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





Show Original Post


18.03.2026 17:30
Reuven (@Reuven@fosstodon.org)

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





Show Original Post


18.03.2026 17:30
pytexas (@pytexas@fosstodon.org)

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: pytexas.org/meetup





Show Original Post


18.03.2026 17:28
driscollis (@driscollis@mastodon.social)

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





Show Original Post


18.03.2026 17:12
billinkc (@billinkc@beige.party)

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

pypi.org/project/tabulate/

#python





Show Original Post


18.03.2026 17:06
jobsfordevelopers (@jobsfordevelopers@mastodon.world)

SoFi is hiring Staff Data Scientist - Loss Forecasting & Portfolio Analytics

🔧 #python #sql
🌎 San Francisco, California
⏰ Full-time
🏢 SoFi

Job details jobsfordevelopers.com/jobs/sta
#jobalert #jobsearch #hiring




Show Original Post


18.03.2026 17:02
AndriiKuznietsov75 (@AndriiKuznietsov75@social.kyiv.dcomm.net.ua)

👨‍💻🐍Шпаргалка з інструментів #Python: бібліотеки для аналізу та обробки даних, середовища та інструменти для роботи з кодом, робота з базами даних, машинне навчання та нейронні мережі, візуалізація даних, інженерія даних і пайплайни, пошук і обробка даних 👇





Show Original Post


18.03.2026 17:01
PythonPeak (@PythonPeak@mastodon.social)

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

youtube.com/watch?v=L6UvykBVUfQ




Show Original Post


18.03.2026 16:58
pycon (@pycon@fosstodon.org)

🚨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! 🌴

👉 us.pycon.org/2026/schedule/

#PyConUS #Python




Show Original Post


18.03.2026 16:45
irods (@irods@fosstodon.org)

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.

github.com/irods/python-irodsc

pypi.org/project/python-irodsc

#irods #python




Show Original Post


1 ...305 306 307 308 309 310 311 312 313 314 315 ...1595
UP