A tool to generate packet diagrams and save them as png or svg.
Project description
PacketDiagram is a simple and intuitive Python library for creating packet diagrams. These diagrams allow you to visualize the structure of data packet fields, including nested subfields, and export them in SVG or PNG format.
📌 Features
- Packet Diagram Creation: Visualize the hierarchical structure of packets and their fields.
- Customizable Colors: Modify the colors of outlines, text, and parent lines.
- Flexible Export: Save your diagrams as SVG or PNG.
- Intuitive API: A simple and well-documented interface for quick adoption.
📦 Installation
Install PacketDiagram via pip :
pip install packetdiagram
🚀 Getting started
Here is a minimal example to create a basic diagram and to export it as a .png file
import packetdiagram
# Create a new diagram
my_diagram = packetdiagram.Diagram()
# Add a packet to the diagram
packet = my_diagram.add_new_packet("Ethernet Frame")
# Add fields to the packet
packet.add_field("Destination MAC", 7)
packet.add_field("Source MAC", 7)
packet.add_field("Ether-Field", 5)
parent_field = packet.add_field("Packet", 10)
packet.add_field("FCS", 2)
# Add another packet to the diagram
packet = my_diagram.add_new_packet("Ethernet Frame")
# Set packet parent field
packet.set_parent(parent_field)
# Add fields to the second packet
packet.add_field("Source IP", 6)
packet.add_field("Destination IP", 6)
packet.add_field("Protocol", 6)
packet.add_field("...", 4)
packet.add_field("Segment", 6)
# Draw the diagram and saves it
my_diagram.draw_to_file("ethernet_frame.png")
Result :
🤝 Contributing
Contributions are welcome! Here's how you can contribute:
- Report a Bug: Open an issue on GitHub.
- Suggest an Improvement: Open a pull request.
- Improve Documentation: Any help to improve this README or add examples is appreciated.
📄 License
This project is licensed under the MIT License. See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file packetdiagram-0.0.1.tar.gz.
File metadata
- Download URL: packetdiagram-0.0.1.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
314ae1f1a366b2ce89bd93249e54f862253fd50d328f94bb83b6564cbe7ec2c9
|
|
| MD5 |
ff7bc626b89afcf0cf660ca4723ff880
|
|
| BLAKE2b-256 |
e633c580800cb133afed9206abb90d7a104fb628758c752c181b24c73bcf45ca
|
File details
Details for the file packetdiagram-0.0.1-py3-none-any.whl.
File metadata
- Download URL: packetdiagram-0.0.1-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a31ecd77502f2b7ef7ceeb4bf5a8f488fdef94fc5a6432cf6643cdd0b72e1dd8
|
|
| MD5 |
5044739c72fd43a195969795fd6312da
|
|
| BLAKE2b-256 |
1bf0572170019e92954f71a673ddbefccc7660f9fe50f423cd8ea25d592b3e0a
|