Skip to content

Instantly share code, notes, and snippets.

@ettorerizza
Created October 21, 2018 10:54
Show Gist options
  • Save ettorerizza/3bb8cff8f99f24533aaf9493f3742af6 to your computer and use it in GitHub Desktop.
Save ettorerizza/3bb8cff8f99f24533aaf9493f3742af6 to your computer and use it in GitHub Desktop.
Workaround to use openrefine-client in Python3
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