diff converttoutf8.py @ 5:495a521cf9f2 draft

"planemo upload commit 40d62ec3d2fea3c3bac605c976941e1f3b7e2cd4"
author rhpvorderman
date Tue, 16 Nov 2021 11:16:06 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/converttoutf8.py	Tue Nov 16 11:16:06 2021 +0000
@@ -0,0 +1,9 @@
+#!/usr/bin/env python3
+import sys
+
+with open(sys.argv[1], "rt", encoding="utf8") as input_h:
+    input_h.read()
+
+
+
+