├── .gitignore ├── LICENSE-MIT ├── README.md ├── Vagrantfile ├── __init__.py ├── crud_example.py ├── rwrapper ├── __init__.py └── fields.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dparlevliet/rwrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dparlevliet/rwrapper/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dparlevliet/rwrapper/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dparlevliet/rwrapper/HEAD/Vagrantfile -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dparlevliet/rwrapper/HEAD/__init__.py -------------------------------------------------------------------------------- /crud_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dparlevliet/rwrapper/HEAD/crud_example.py -------------------------------------------------------------------------------- /rwrapper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dparlevliet/rwrapper/HEAD/rwrapper/__init__.py -------------------------------------------------------------------------------- /rwrapper/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dparlevliet/rwrapper/HEAD/rwrapper/fields.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dparlevliet/rwrapper/HEAD/setup.py --------------------------------------------------------------------------------