A ChatGPT based emulation of the therapist Doctor Kernel from the book "A digital Affair" by Neora Shem Shaul
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

genlogs.py 360B

12345678910111213141516
  1. import chevron
  2. from glob import glob
  3. import os
  4. MAX_FILES = 20
  5. def genlog():
  6. os.chdir('logs')
  7. filenames = list(reversed(sorted(glob("*.txt"))))[:MAX_FILES]
  8. with open('../logs.tmpl') as fin:
  9. with open('index.html','w') as fout:
  10. fout.write(chevron.render(fin, {"filenames": filenames}))
  11. if __name__ == '__main__':
  12. genlog()