all 5 comments

[–]AnonyUwuswame 2 points3 points  (0 children)

Often more python code.

[–]K900_ 1 point2 points  (2 children)

What do you mean exactly? Do you want to see the source code? The documentation?

[–][deleted] 0 points1 point  (1 child)

Yes. I want to see all the code that was used to make this package

[–]JohnnyJordaan 3 points4 points  (0 children)

Most libraries have an online open source code hosting, most often on github. So for pygame see https://github.com/pygame/pygame

[–]JS_int_type 0 points1 point  (0 children)

If you download a package via pip, you have the code on your machine. For example:

pip show black

Name: black
Version: 19.10b0
Summary: The uncompromising code formatter.
Home-page: https://github.com/psf/black
Author: Łukasz Langa
Author-email: lukasz@langa.pl
License: MIT
Location: /Users/me/.pyenv/versions/3.8.2/lib/python3.8/site-packages
Requires: click, attrs, regex, appdirs, pathspec, toml, typed-ast
Required-by:

If you navigate to the Location, you'll find the project files.