Created
October 21, 2018 10:54
-
-
Save ettorerizza/3bb8cff8f99f24533aaf9493f3742af6 to your computer and use it in GitHub Desktop.
Workaround to use openrefine-client in Python3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
command_line = "openrefine-client_0-3-4_windows.exe --list" | |
result = subprocess.run(command_line, shell=True, stdout=subprocess.PIPE).stdout.decode('utf8') | |
print(result) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment