We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using Python------------------------------
import os import subprocess print(os.getcwd()) cmd = "java -cp 'bin/:../GATEFiles/lib/:../GATEFiles/bin/gate.jar:lib/*' code4goal.antony.resumeparser.ResumeParserProgram %s %s.json" % (r'C:\Data Science\ResumeParser-master\ResumeParser\Data\Input\Synechron_Candidate_Sandip Shinde.docx', r'C:\Data Science\ResumeParser-master\ResumeParser\Data\Output\Sandip.json') print(cmd) os.chdir(r"C:\Data Science\ResumeParser-master\ResumeParser\ResumeTransducer")
process = subprocess.Popen(cmd) out, err = process.communicate() exitcode = process.returncode print(out, exitcode)
print ('Ok')
Error: Could not find or load main class code4goal.antony.resumeparser.ResumeParserProgram
The text was updated successfully, but these errors were encountered:
Some files are compressed. Just make sure that this is not the case with you.
Sorry, something went wrong.
No branches or pull requests
Using Python------------------------------
import os
import subprocess
print(os.getcwd())
cmd = "java -cp 'bin/:../GATEFiles/lib/:../GATEFiles/bin/gate.jar:lib/*' code4goal.antony.resumeparser.ResumeParserProgram %s %s.json" % (r'C:\Data Science\ResumeParser-master\ResumeParser\Data\Input\Synechron_Candidate_Sandip Shinde.docx', r'C:\Data Science\ResumeParser-master\ResumeParser\Data\Output\Sandip.json')
print(cmd)
os.chdir(r"C:\Data Science\ResumeParser-master\ResumeParser\ResumeTransducer")
process = subprocess.Popen(cmd)
out, err = process.communicate()
exitcode = process.returncode
print(out, exitcode)
print ('Ok')
Error: Could not find or load main class code4goal.antony.resumeparser.ResumeParserProgram
The text was updated successfully, but these errors were encountered: