mirror of
https://github.com/tcsenpai/pensieve.git
synced 2025-06-06 03:05:25 +00:00
19 lines
295 B
Python
19 lines
295 B
Python
import typer
|
|
from rich import print
|
|
|
|
data = {
|
|
"name": "Rick",
|
|
"age": 42,
|
|
"items": [{"name": "Portal Gun"}, {"name": "Plumbus"}],
|
|
"active": True,
|
|
"affiliation": None,
|
|
}
|
|
|
|
|
|
def main():
|
|
print("Here's the data")
|
|
print(data)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
typer.run(main) |