You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
309 B
13 lines
309 B
5 years ago
|
# import s3printlog
|
||
|
# s3printlog.run("example 1")
|
||
|
|
||
|
from s3printlog import main
|
||
|
|
||
|
folder = "example 1"
|
||
|
#folder = "example 2"
|
||
|
|
||
|
print("Generating report, PDF should be opened in a couple of seconds")
|
||
|
report_file = main.process_log_folder(folder)
|
||
|
main.open_with_default_app(report_file)
|
||
|
print("Report Generated.")
|