Skip to content

mkilling/ideone.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IDEONE.py

A simple wrapper for the ideone.com SOAP API for Python using SOAPpy

ideone = IdeOne()

# run a python program
python = 116
link = ideone.createSubmission("print('Hello World')\n", python)

# wait for it to finish 
while ideone.getSubmissionStatus(link)[0] != Status.Done:
    pass

# print output
print ideone.getSubmissionDetails(link)['output']

About

Simple Python 2.6 wrapper for the ideone.com API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages