{"id":44657131,"url":"https://github.com/l1asis/winspot","last_synced_at":"2026-02-14T22:20:50.872Z","repository":{"id":330891463,"uuid":"1124312875","full_name":"l1asis/winspot","owner":"l1asis","description":"A CLI utility to export and reset Windows Spotlight images.","archived":false,"fork":false,"pushed_at":"2026-01-18T11:12:47.000Z","size":110,"stargazers_count":1,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-18T18:42:42.472Z","etag":null,"topics":["background-images","cli","desktop-customization","lockscreen","python","python3","spotlight-images","wallpaper-downloader","windows-10","windows-11","windows-spotlight","winspot"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/l1asis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-28T19:30:18.000Z","updated_at":"2026-01-18T11:11:40.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/l1asis/winspot","commit_stats":null,"previous_names":["l1asis/windows_spotlight","l1asis/winspot"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/l1asis/winspot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l1asis%2Fwinspot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l1asis%2Fwinspot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l1asis%2Fwinspot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l1asis%2Fwinspot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/l1asis","download_url":"https://codeload.github.com/l1asis/winspot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l1asis%2Fwinspot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29458453,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T21:29:27.764Z","status":"ssl_error","status_checked_at":"2026-02-14T21:28:11.111Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["background-images","cli","desktop-customization","lockscreen","python","python3","spotlight-images","wallpaper-downloader","windows-10","windows-11","windows-spotlight","winspot"],"created_at":"2026-02-14T22:20:46.344Z","updated_at":"2026-02-14T22:20:50.863Z","avatar_url":"https://github.com/l1asis.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# winspot\n\nwinspot is a Python utility and command-line tool to export, reset, and download Windows Spotlight images.\nAdditionally, it can download Bing's daily images.\n\n## Installation\n\nInstall directly from PyPI using [pip](https://pip.pypa.io/en/stable/) or [pipx](https://pipx.pypa.io/stable/):\n\n```bash\npip install winspot\n# or\npipx install winspot\n```\n\nOr install the latest version from source:\n\n```bash\ngit clone https://github.com/l1asis/winspot.git\ncd winspot\npip install .\n```\n\nIf you want to _download_ Bing/Spotlight images, make sure to install the optional dependencies:\n\n```bash\npip install winspot[dl]\n# or from source\npip install .[dl]\n```\n\n## Usage\n\n### CLI\n\nwinspot uses subcommands to organize different operations:\n\n#### Extract Windows Spotlight\n\n```bash\n# Save all images (cached, desktop, lockscreen)\nwinspot extract\n\n# Save only cached images\nwinspot extract --cached\n\n# Save only desktop image\nwinspot extract --desktop\n\n# Save only lock screen image\nwinspot extract --lockscreen\n\n# Save only landscape images with duplicate prevention\nwinspot extract --orientation landscape --prevent-duplicates\n```\n\n#### Download Spotlight Images\n\n```bash\n# Download images from Spotlight API\nwinspot download\n\n# Download from both API versions (v3 and v4)\nwinspot download --api-version both\n\n# Download and organize by orientation or resolution\nwinspot download --orientation both --organize-by orientation\nwinspot download --orientation both --organize-by resolution\n```\n\n#### Download Bing Daily Images\n\n```bash\n# Download today's Bing image in 4K\nwinspot bing\n\n# Download the last 7 days of images\nwinspot bing --count 7\n\n# Download in 1080p with specific locale\nwinspot bing --resolution 1920x1080 --locale de-DE\n```\n\n#### Reset Windows Spotlight\n\n```bash\n# Reset with confirmation prompt\nwinspot --reset\n\n# Force reset without confirmation\nwinspot --reset --force\n```\n\nFor complete help:\n\n```bash\nwinspot --help\nwinspot extract --help\nwinspot bing --help\n```\n\n### As a Library\n\n```python\nimport winspot\n\n# Save with default settings (all sources)\nwinspot.extract_images()\n\n# Save only cached images\nwinspot.extract_images(desktop=False, lockscreen=False)\n\n# Save only landscape images with duplicate prevention\nwinspot.extract_images(\n    orientation=\"landscape\",\n    prevent_duplicates=True\n)\n\n# Save with conflict resolution\nwinspot.extract_images(\n    on_conflict=\"skip\",  # or \"overwrite\", \"rename\"\n)\n\n# Download Spotlight API images\nwinspot.download_images(\n    orientation=\"landscape\",\n    organize_by=\"resolution\",\n    prevent_duplicates=True\n)\n\n# Download Bing daily images\nwinspot.download_bing_daily_images(\n    count=7,\n    resolution=\"3840x2160\",\n    locale=\"en-US\",\n    prevent_duplicates=True\n)\n\n# Reset Windows Spotlight settings\nwinspot.reset_windows_spotlight()\n```\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first\nto discuss what you would like to change.\n\n## Acknowledgments\n\n* Thanks to Paulo Scardine for the `get_image_size.py` script used in this project.\n\n## License\n\nDistributed under the MIT License. See [`LICENSE`](https://github.com/l1asis/winspot/blob/main/LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fl1asis%2Fwinspot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fl1asis%2Fwinspot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fl1asis%2Fwinspot/lists"}