Welcome to r3ap3rpy's asciinema gallery on github.io

Please feel free to set it as a homepage!


Project maintained by r3ap3rpy Hosted on GitHub Pages — Theme by mattgraham

This project came alive to demonstrate pythons capabilities. It is also a tribute to the asciinema page.

In order to use it you need to install the flask and requests modules.

pip install requests
pip install flask

To add a new recording.

import requests
with open('python_demo_2.cast','rb') as f:
	file = f.read()

data = {'title':'<Customn title comes here>','description':'<Custom description comes here>'}
files = {'file': file}
requests.post('http://localhost:8000', files=files, data = data)

If the response is 200 you are good to go and refresh the page.