this post was submitted on 18 Feb 2024
133 points (100.0% liked)

Python

6962 readers
78 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

πŸ“… Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

🐍 Python project:
πŸ’“ Python Community:
✨ Python Ecosystem:
🌌 Fediverse
Communities
Projects
Feeds

founded 2 years ago
MODERATORS
top 12 comments
sorted by: hot top controversial new old
[–] [email protected] 19 points 1 year ago (1 children)

python -m http.server came in handy so many times!

[–] [email protected] 8 points 1 year ago

@wasabi @learnbyexample one of my favorite super lazy ways to share a file

[–] [email protected] 8 points 1 year ago (1 children)

Easier than grepping, you can just look at the standard library docs: https://docs.python.org/3/library/

[–] [email protected] 2 points 1 year ago

How is that easier? It doesn't look like it provides a list of which modules have a __name__ == "__main__" block.

[–] [email protected] 6 points 1 year ago (1 children)

I use json.tool a lot to format JSON directly in vim. Simply highlight the text you want to format and run :!python3 -m json.tool. There are probably plugins to do this too, but doing it this way is probably the simplest, unless vim has a built-in for it.

[–] [email protected] 3 points 1 year ago (1 children)

Could probably do the same with :! jq . It's a bit shorter.

[–] [email protected] 3 points 1 year ago (1 children)

Yeah, I knew someone was going to say that. Usually it's more likely that Python is installed than jq - especially on servers. But yes, that would definitely work too.

[–] [email protected] 2 points 1 year ago

Sure, I'm just not sure when I'd ever run into that. Either I'm doing it a lot and installing jq is reasonable, or I'm not allowed on the server anyway and need to copy/paste from logs.

I used to use python -m json.tool a lot, but I haven't needed to in many years.

[–] [email protected] 3 points 1 year ago* (last edited 1 year ago)

Pro tip: you can ignore filenames with ripgrep using -g "!test/". That should speed things up a bit.

[–] [email protected] 2 points 1 year ago
[–] [email protected] 2 points 1 year ago

python -m http.server has been a very useful tool to me, to test if a server is accessible.

[–] [email protected] 2 points 1 year ago* (last edited 1 year ago)

CLITools can be hard to find, but when you do it's worth the effort.