Display generated pixel catalog .cat in jupyter, ya

jupyter
Jeff Moe 2022-09-08 13:54:25 -06:00
parent 53ad504b64
commit 428c9f951f
1 changed files with 4 additions and 3 deletions

View File

@ -156,9 +156,10 @@
" print(colored(f\"generate pixel catalog for {fname}\", \"yellow\"))\n",
" pix_catalog = pixel_catalog(f\"{fname}.cat\")\n",
" fnamecat = open(fname + \".cat\", \"r\")\n",
" lines = fnamecat.readlines()\n",
" for line in lines:\n",
" print(line, end=\"\")"
" # Print first 1500 bytes\n",
" print(fnamecat.read(1500), \"\\n...\")\n",
" # Print all:\n",
" #print(fnamecat.read())"
]
},
{