blob: f2cfbd99ef31fd3729e2cb06c4972b305f588dda (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
memory-graph is a Python library that creates visual memory graphs for teaching
and debugging purposes. It helps visualize object references, mutable data
types, and the differences between shallow and deep copying in Python.
Key features:
* Generate visual representations of Python object references
* Illustrate memory layouts and object relationships
* Educational tool for understanding Python memory model
* Debugging aid for complex data structures
* Support for various data types including lists, dictionaries, and custom
objects
The library uses Graphviz to create clear, graphical representations that make
it easier to understand how Python manages memory and references.
|