├── .gitignore ├── LICENSE ├── README.md ├── examples └── example.py ├── openplayground-api └── src │ └── openplayground.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/openplayground-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/openplayground-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/openplayground-api/HEAD/README.md -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/openplayground-api/HEAD/examples/example.py -------------------------------------------------------------------------------- /openplayground-api/src/openplayground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/openplayground-api/HEAD/openplayground-api/src/openplayground.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ading2210/openplayground-api/HEAD/setup.py --------------------------------------------------------------------------------