Skip to content

Instantly share code, notes, and snippets.

@anthonycintron
Created February 29, 2012 20:15
Show Gist options
  • Save anthonycintron/1944088 to your computer and use it in GitHub Desktop.
Save anthonycintron/1944088 to your computer and use it in GitHub Desktop.
from recorder import InterviewIO, Service, Recording, PROTOCOL, GET
service = Service(
protocol=PROTOCOL,
domain='localhost:8000',
api_version='v1',
api_format='json',
user_name='user_name',
api_key='1234567890',
request_method=GET
)
recorder = InterviewIO(service=service)
recording = Recording(user=recorder.sender)
recording.filename = 'xxxxxxx'
recorder.save_recording(recording)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment