This commit is contained in:
2024-09-03 16:07:01 -04:00
parent c0f73de73e
commit aefe5fdc6e

12
Package/Python/README.md Normal file
View File

@@ -0,0 +1,12 @@
# Bellande Format Example
```
bellande_formatter = Bellande_Format()
# Parse a Bellande file
parsed_data = bellande_formatter.parse_bellande("path/to/your/file.bellande")
# Write data to a Bellande file
data_to_write = {"key": "value", "list": [1, 2, 3]}
bellande_formatter.write_bellande(data_to_write, "path/to/output/file.bellande")
```