├── .github └── FUNDING.yml ├── .idea ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── powerpoint.iml └── vcs.xml ├── .python-version ├── LICENSE ├── README.md ├── pyproject.toml ├── src └── powerpoint │ ├── __init__.py │ ├── chart_manager.py │ ├── presentation_manager.py │ ├── server.py │ └── vision_manager.py └── uv.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: russellashby -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/powerpoint.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/.idea/powerpoint.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/powerpoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/src/powerpoint/__init__.py -------------------------------------------------------------------------------- /src/powerpoint/chart_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/src/powerpoint/chart_manager.py -------------------------------------------------------------------------------- /src/powerpoint/presentation_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/src/powerpoint/presentation_manager.py -------------------------------------------------------------------------------- /src/powerpoint/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/src/powerpoint/server.py -------------------------------------------------------------------------------- /src/powerpoint/vision_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/src/powerpoint/vision_manager.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supercurses/powerpoint/HEAD/uv.lock --------------------------------------------------------------------------------