#Pythonistas

ENTER.COENTERCO
2025-06-05
2025-06-05

๐ŸŽ‰ Join Us! R + Python Communities Meetup โ€“ June 16 (Hybrid)

We're excited to welcome you to a unique collaborative gathering hosted by R-Ladies Rome, Rome R Users Group, and PyData Roma Capitale!

๐Ÿ—“๏ธ Date: June 16, 2025
๐Ÿ•• Time: 18:00 โ€“ 20:00
๐Ÿ“ Venue:
โ€ข In-Person: INGV, Via di Vigna Murata 605, Rome
โ€ข Online: Zoom

RSVP: meetup.com/rladies-rome/events

Celebrate curiosity, teamwork, and coding! Whether you love R, Python, or both, discover something inspiring! #RCommunity #Pythonistas

Greetings #pythonistas, check MCP, OpenAI Agents ๐Ÿค–, LangGraph๐Ÿ’ , Gemma 3 as well as other #python ๐Ÿ #LLM highlights and fun stuff of this March in the latest issue of my monthly update ๐Ÿ˜˜ .

blueberrypy.netlify.app/post/t

2025-03-14

We need #Pythonistas
Grow your expertise in Python, Django, React, Git, Debian.
Work some hours per week in a small & fully remote team.
Contribute to a free software project.
Earn 200 โ‚ฌ per month for doing what you would also do for free.

dev.lino-framework.org/

ร‰rico Andrei ๐Ÿ‡ง๐Ÿ‡ท :plone:ericof@pynews.com.br
2025-02-27

Pergunta aberta aos #pythonistas, mas especialmente ao @bruno: Seria possรญvel adaptar o Dynaconf para ler tambรฉm do pyproject.toml de um projeto?
Isso, claro, sem perder a possibilidade de ler das variรกveis de ambiente e de outros arquivos.

N-gated Hacker Newsngate
2025-02-26

Oh great, another "revolutionary" tool for who can't read their own spaghetti code! ๐Ÿ๐Ÿ” Let's cheer for Tach, the pip-installable savior that promises to untangle your disastrous while being "interoperable" and written in , because clearly Python wasn't enough. ๐ŸŽฉโœจ Maybe next, they'll develop a tool to help you find your misplaced sense of . ๐Ÿ™ƒ
github.com/gauge-sh/tach

Todd A. Jacobs | Rubyisttodd_a_jacobs@ruby.social
2025-02-10

#TIL conda 25.1.1 has access to a #Python 3.13.2 runtime, but doesn't support installing it into conda base. I wouldn't wory too much as long long as the conda packages are kept up to date with a periodic `conda update --all` but the #semver failure bugs me. I expect minor & patch versions to be backwards-compatible.

I'm sure the reason is library dependencies, but that just begs the question. Do any #Pythonistas know why conda's base doesn't support the current stable runtime?

Fellow #Pythonistas, are these issues better with `#uv` or `#rye` or some other tool? I dislike the idea of having to manage Python #projects with #tools written in other languages "because Python wasn't good enough", but tools that actually work, that produce #diagnostics for #problems, and which have #documentation that doesn't assume everything Just Works would be sufficient to get me to change.

#Recommendations?

5/5

2024-09-29

And the last package on the list is another really nice solution to get a quick overview of your data:

๐Ÿ“ฆ YData Profiling

A great solution for quickly gaining insights into your data. This tool provides variable-level insights, descriptive statistics, bivariate scatterplots, alerts, and more.

๐Ÿ”— docs.profiling.ydata.ai/
๐Ÿ”— demo: cosimameyer.com/images/single-

------------------

Looking for more #Python libraries for #EDA? Check out this post: bit.ly/eda-in-python

#pyladies #pythonistas

Code showing the output of ProfileReport(). The function comes from {ydata_profiling} and is applied to the {penguins} dataset. Unfortunately, the alt text doesn't allow a full print of the content - this is why I am not adding the full content here.
2024-09-28

Going back to interactive #EDA with few-liners, we have

๐Ÿ“ฆ SweetViz (by Francois Bertrand)

This one gives you a really nice (and clean) overview of your data. You have different tabs that unfold and show you what's in your data. Here's the GIF that shows the report: cosimameyer.com/images/single-

๐Ÿ”— pypi.org/project/sweetviz/

------------------

Looking for more #Python libraries for #EDA? Check out this post: bit.ly/eda-in-python

#pyladies #pythonistas

#------------------------------------------------------------------------------------------- from palmerpenguins import load_penguins import sweetviz as sv  df = load_penguins()  #-------------------------------------------------------------------------------------------- # Exploratory data analysis with SweetViz  report = sv.analyze(df) report.show_notebook(layout="vertical", w=800, h=700, scale=0.8)  # This produces a neat report that gives you a depth of information.
2024-09-27

The next library has also an equivalent in #rstats - it's called

๐Ÿ“ฆ summarytools (by Chaoran L. and AJ)

It builds on the original idea of summarytools in #rstats and implements my favorite go-to feature: the dfSummary function.

๐Ÿ”— pypi.org/project/summarytools/

------------------

Looking for more hashtag#Python libraries for #EDA? Check out this post: lnkd.in/ekVqJM_p

#pyladies #pythonistas

Code showing the output of dfSummary(). The function comes from {summarytools} and is applied to the {penguins} dataset. Unfortunately, the alt text doesn't allow a full print of the content - this is why I am not adding the full content here.
2024-09-26

The next one is again something I can't present without being biased because it's the #Python version of #overviewR (though still very much a work in progress).

๐Ÿ“ฆ overviewpy

Like overviewR, this library has a clear focus on cross-sectional time series data and provides two main functions... but more to come!

๐Ÿ”— cosimameyer.github.io/overview

------------------

Looking for more #Python libraries for #EDA? Check out this post: bit.ly/eda-in-python

#pyladies #pythonistas

Code showing the output of overview_tab() and overview_na(). The functions come from {overviewpy} and are applied to the {penguins} dataset. Unfortunately, the alt text doesn't allow a full print of the content - this is why I am not adding the full content here.Logo of overviewpy showing a green snake holding a light bulb
2024-09-22

Now it's time for all #pythonistas and #EDA ๐Ÿ

๐Ÿ“ฆ pandas

While pandas is a "Swiss army knife" when it comes to data wrangling in #Python, it also has out-of-the-box capabilities that you can use when exploring your data.

๐Ÿ”— pandas.pydata.org/

------------------

Looking for more #Python libraries for #EDA? Check out this post: bit.ly/eda-in-python

#pyladies

Code showing the output of .shape, .head(), .tail(), .info() and .describe(). The function comes from {pandas} and is applied to the {penguins} dataset. Unfortunately, the alt text doesn't allow a full print of the content - this is why I am not adding the full content here.
Sebastian MuthwillSebastianM6L
2024-08-07

and I have a job opportunity in Madrid (Spain).

2024-08-04

I'm putting together a lunch-and-learn presentation to introduce #python type hinting to a group of data analysts. So far, I'm planning to cover:
- the basics of hinting,
- type aliases and the Any type,
- setting up VSCode for type checking,
- mypy checking,
- use of collections.abc in hinting

Are there other related topics #pythonistas would think are important to cover in this introduction?

Stefan Bรถhringerdatenschauer
2024-08-02

[PyCrumble No. 2] The minimum number of special- or "dunder"-methods to implement in your classes for your objects to behave like standard Python lists. In which other programing language can you do such cool things?

Borutzkiborutzki
2024-07-16

A question to all Pythonistas here.

What are the negative consequences of switching from `black` / `flake8` / `isort` combination to `ruff` only in a project?

Like, will I be missing out on something, cause some inconsistencies or something like that?

Or maybe any other concerns?

2024-07-12

๐ŸŽ‰ Just had some wonderful interviews with amazing #Pythonistas at #EuroPython2024! ๐Ÿโœจ The community here is incredibly inspiring and full of brilliant minds. Canโ€™t wait to share their stories with you all! ๐Ÿ™Œ #TechCommunity

Lorena La Tigresa ๐Ÿฏ๐Ÿ’œs you!Lorenanicole
2024-05-17

And we are live! The core conference has begun!

@mariatta kicks off by giving a HUGE thank you to the AMAZING @ThePSF staff for taking on this year round work to make happen!

Go show your thanks in the Expo Hall!

And we are live! The core #PyConUS conference has begun!

@mariatta@fosstodon.org kicks off by giving a HUGE thank you to the AMAZING @ThePSF@fosstodon.org staff for taking on this year round work to make #PyConUS happen! 

Go show your thanks #Pythonistas in the Expo Hall!
2024-05-15

I was expecting to meet some #Pythonistas on the flight to Pittsburgh and there they are (and thereโ€™re more I met later) - now ready for my tutorial today about #PyO3 to start my #PyConUS activities

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst