Skip to content

Commit 0f6189e

Browse files
Update 1_intoduction_python_packaging.md
1 parent 3c83382 commit 0f6189e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

episodes/1_intoduction_python_packaging.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,12 @@ Metadata: Packages include project-specific metadata, which is essential for end
4848
- Library can have Package(s), which can have module(s) which can have function(s). It can also be considered a Project.
4949
- Python package : A Python package is a collection of related code modules (files) bundled with metadata describing how the package should be installed and used [*](https://pydevtools.com/handbook/explanation/what-is-a-python-package/)
5050

51-
<img width="424" height="672" alt="image" src="https://github.com/user-attachments/assets/59d89bdb-c08b-487e-aa27-c3abc75ff794" />
51+
```mermaid
52+
graph TD
53+
A[Library/Project<br/>requests] --> B["Package<br/>src/requests"]
54+
B --> C["Module<br/>src/requests/api.py"]
55+
C --> D["Function<br/>def post(url, data=None, json=None, **kwargs)"]
56+
```
5257

5358
[GIT](https://github.com/psf/requests)
5459
[PyPI](https://pypi.org/project/requests/ )

0 commit comments

Comments
 (0)