secretproject/main.py

18 lines
639 B
Python
Raw Normal View History

2024-06-29 18:55:43 +02:00
from notepad import Shard, Entry
2024-06-28 14:59:00 +02:00
2024-06-29 18:55:43 +02:00
print("loading shart...")
shard = Shard.load_shard('myfile')
print("Size:", shard.size)
2024-06-28 14:59:00 +02:00
2024-06-29 18:55:43 +02:00
print("now creating entry")
entry = Entry(shard)
entry.add_content("Lorm Ipsum dolor sit ammet, consectetuer adipiscng elit, We're no strangers to luv You know the rules and so do I A full commitment's wat I'm thinkin of You wouldn't get this from any other guy very good very nice".encode())
print("entry created, its length:", len(entry.to_bytes()), "now writing it")
2024-06-28 14:59:00 +02:00
2024-06-29 18:55:43 +02:00
try:
shard.write_entry(entry)
print("entry written")
except EOFError:
print("oops, looks like the file wont fit this")
2024-06-28 14:59:00 +02:00
2024-06-29 18:55:43 +02:00
shard.close()