add the stuff floating from other machines

This commit is contained in:
writer 2024-10-15 10:13:30 +09:00
parent 30e65244e2
commit 35788d79e2
252 changed files with 12374 additions and 603 deletions

View file

@ -1,6 +1,6 @@
"""
Adapted from Filippo Valsorda's tutorial
Marina Wahl, august/2014
Mia Stein, 2014
"""
from md5 import MD5

View file

@ -1,2 +1,3 @@
Flask==0.10.1
requests==2.3.0
Flask==2.2.5
requests==2.32.2

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python
__author__ = "bt3"
__author__ = "Mia Stein"
'''

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python
__author__ = "bt3"
__author__ = "Mia Stein"
'''
Calculate the MD5 checksum of a file.
@ -18,4 +18,4 @@ def get_file_checksum(filename):
if len(chunk) == 0:
break
h.update(chunk)
return h.hexdigest()
return h.hexdigest()