Enter a file:
or a URL:
And enter your name:
and email:
You can use this with curl on a local file if you have tempfile (/bin/tempfile):
export TEMPFILE=$(tempfile) && curl -F "file=@foo.py" 'http://localhost:8080/?author=Jeff+Hammel&email=jhammel@example.com' > ${TEMPFILE} && mv ${TEMPFILE} foo.py