Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paschembri/spotlight-python-service-starter
A starter script to register custom data to the MacOS Spotlight index using Python
https://github.com/paschembri/spotlight-python-service-starter
Last synced: 4 days ago
JSON representation
A starter script to register custom data to the MacOS Spotlight index using Python
- Host: GitHub
- URL: https://github.com/paschembri/spotlight-python-service-starter
- Owner: paschembri
- License: mit
- Created: 2023-10-18T09:09:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-18T09:39:09.000Z (over 1 year ago)
- Last Synced: 2024-11-22T19:21:06.358Z (2 months ago)
- Language: Python
- Size: 86.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spotlight Python Service Starter
A starter script to register custom data to the MacOS Spotlight index using Python
You can use this script and the following instructions to add your custom data in MacOS Spotlight index.
![](./assets/screenshot.png)
## Install dependencies
```shell
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
```## Build instructions
```shell
pyinstaller --add-data ./assets/:. -i ./assets/logo.png --windowed --clean --noconfirm ./SpotlightPythonService.py
```The bundled application is now in the `./dist` folder