Viper is an application development framework for Twisted.
Twisted is a very flexible platform to develop almost any type of application. This can be overwhelming, especially when you need to prototype something quickly. There is no predefined way to structure the application's components and no clear way to handle deployment in production environments.
Viper, together with the default skeleton application aims to simplify the development and deployment of server-side applications by using the building blocks that Twisted offers.
To get started have a look at the default skeleton application which offers examples for:
- configuration
- HTTP REST API interface
- CRUD
- scheduled and recurring operations
- MVCS structure
- environment based configuration
- deployment using systemd
- MySQL service based on twisted.enterprise.adbapi
- mail service based on smtplib
- Python 3.6
Unit tests are included in test/ folder.
Performing tests
- Install pytest by running
pip install pytest - Run
py.test
Python Package Index - nx.viper
Viper is currently in Beta stage.
The roadmap before public release is:
- Tests
- Documentation