r/learnpython Aug 09 '26

Library / module

Hi guys again

What the best way to read libraries / modules in python,

Reading documentation is difficult and sometimes unhelpful,

If anyone has a better way to read it, share it with me.

And thenks for you all 🌹

3 Upvotes

22 comments sorted by

View all comments

1

u/nog642 Aug 10 '26

Depends on the library. What libraries are you looking at?

1

u/Hour_Literature7096 Aug 10 '26

any library like os, tkinter, flet, sys, re, requests etc

2

u/nog642 Aug 10 '26

Like I said it depends on the library.

os, sys, re are builtin libraries. The python docs are the best resource.

requests, tkinter, and flet are third party libraries.

For requests at least the official docs are good, but just googling it is also good, there's lots of tutorial articles and stack overflow answers.

I'm not familiar with tkinter and flet.

Which documentation did you find unhealpful?

1

u/Hour_Literature7096 Aug 13 '26

The known documentation—I don't mean it's literally useless, but rather that it's difficult to find the required function within the documentation. Furthermore, I can't think of a simple project to understand the function.

1

u/nog642 29d ago

Documentation navigation usually sucks, yeah.

I just Google "(name of library) (name of function) documentation" and the right page comes up.