Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lesser-known Python libraries | Hacker News #860

Open
1 task
ShellLM opened this issue Aug 2, 2024 · 1 comment
Open
1 task

lesser-known Python libraries | Hacker News #860

ShellLM opened this issue Aug 2, 2024 · 1 comment
Labels
forum-discussion Quotes clipped from forums Git-Repo Source code repository like gitlab or gh python Python code, tools, info source-code Code snippets

Comments

@ShellLM
Copy link
Collaborator

ShellLM commented Aug 2, 2024

"What lesser-known Python libraries do you wish people knew about?"

Snippet:
"What lesser-known Python libraries do you wish people knew about?" The suggestions there are worth looking up. Don't miss DiskCache.

I really like xmltodict. Despite the name, it works in both directions. It is the most ergonomic library I have used for creating XML. It has external type stubs: https://pypi.org/project/types-xmltodict/.

Since you have recently discovered Rich, you may want rich-argparse. It colorizes argparse CLIs with little effort from the user.

DeepDiff has helped me with testing. I needed to compare two nested data structures but ignore any differences in floats (timestamps). DeepDiff let me do it:

diff = DeepDiff(
   run_session(config), run_session(config, force=True), exclude_types=(float,)
)

assert not diff

pzp is like fzf in pure Python to use in your programs. Keep in mind it is currently version 0.0.x. I have found bugs, but I think it is just cool that it exists.

Suggested labels

None

@ShellLM ShellLM added forum-discussion Quotes clipped from forums Git-Repo Source code repository like gitlab or gh python Python code, tools, info source-code Code snippets labels Aug 2, 2024
@ShellLM
Copy link
Collaborator Author

ShellLM commented Aug 2, 2024

Related content

#808 similarity score: 0.87
#734 similarity score: 0.86
#762 similarity score: 0.86
#743 similarity score: 0.85
#678 similarity score: 0.85
#386 similarity score: 0.85

@irthomasthomas irthomasthomas changed the title Last year I posted a similar Ask HN; it got 11 comments: https://news.ycombinato... | Hacker News lesser-known Python libraries | Hacker News Aug 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
forum-discussion Quotes clipped from forums Git-Repo Source code repository like gitlab or gh python Python code, tools, info source-code Code snippets
Projects
None yet
Development

No branches or pull requests

1 participant