├── .gitignore ├── LICENSE ├── MANIFEST ├── MANIFEST.in ├── README.md ├── cursor ├── __init__.py └── cursor.py ├── examples └── stream_change.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GijsTimmers/cursor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GijsTimmers/cursor/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GijsTimmers/cursor/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GijsTimmers/cursor/HEAD/README.md -------------------------------------------------------------------------------- /cursor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GijsTimmers/cursor/HEAD/cursor/__init__.py -------------------------------------------------------------------------------- /cursor/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GijsTimmers/cursor/HEAD/cursor/cursor.py -------------------------------------------------------------------------------- /examples/stream_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GijsTimmers/cursor/HEAD/examples/stream_change.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description_file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GijsTimmers/cursor/HEAD/setup.py --------------------------------------------------------------------------------