mirror of
https://github.com/dobin/avred
synced 2026-06-08 13:54:13 +00:00
13 lines
215 B
Python
Executable File
13 lines
215 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
from model.model import *
|
|
import pickle
|
|
import sys
|
|
|
|
filename: str = sys.argv[1]
|
|
outcome = None
|
|
with open(filename, "rb") as input_file:
|
|
outcome = pickle.load(input_file)
|
|
|
|
print(str(outcome))
|