An open API service indexing awesome lists of open source software.

https://github.com/ranjian0/twistedxmlrpc

XMLRPC with twisted deployed to heroku
https://github.com/ranjian0/twistedxmlrpc

heroku python twisted xmlrpc

Last synced: 25 days ago
JSON representation

XMLRPC with twisted deployed to heroku

Awesome Lists containing this project

README

          

# twistedxmlrpc
XMLRPC with twisted deployed to heroku

## Local
```
> virtualenv venv
> source venv/bin/activate
> pip install -r requirements.txt
> twistd -y service.tac
> export DEBUG=True
> python tests/test.py

```

## Heroku
```
> heroku apps:create xmlrpctest
> heroku git:remote -a xmlrpctest
> git push heroku master
> export DEBUG=False
> python tests/tests.py
```