google-photos-slideshow


Namegoogle-photos-slideshow JSON
Version 0.0.8 PyPI version JSON
download
home_page
SummaryA communal live photo slideshow for Google Photos
upload_time2024-03-10 03:12:53
maintainer
docs_urlNone
author
requires_python>=3.10
licenseThis is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to <https://unlicense.org>
keywords google photos slideshow live photo frame
VCS
bugtrack_url
requirements aiohttp websockets
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # google-photos-slideshow

NOTE: this project is in no way affiliated with or sponsored by Google Photos.

## Quickstart
### Option 1 : Python install (preferred)
#### Install
```commandline
pip install google-photos-slideshow
```

#### Run
```commandline
gpss
```
* The first time you run this, it will prompt you for the public url to your google photos album.
* Future runs will use the same album unless you specify a different one using `--url`.

### Option 2 : Executable
* Download the latest `.exe` file release from the Releases tab on GitHub (that way =>). 
* Double click to run.
* The executable is a simple but does not yet have the flexibility of the python package and could be harder to config. 
* Really just meant as an easy Quickstart for users who don't have python installed.
* Uh-oh, Chrome might block the download because it's not a popular download. You can click "Keep" to keep the file but Windows Defender might still block it. Python install is probably easier for now...





### View
Open a web browser and navigate to `http://localhost` to view the slideshow.

#### Options
```commandline
google-photos-slideshow --help
```


#### Folder Slideshow
You can also use a folder of photos on your computer as the source for the slideshow.
```commandline
folder-slideshow /path/to/folder
```

<hr/>
### Features
#### Slideshow
  * [x] Play/Pause
  * [x] Speed
  * [x] Next/Previous
  * [x] Live Communal Controls
    * anyone viewing the slideshow can control it (pause/play, next/previous, speed control)
  * [x] Live reload from source 
    * you can add photos to the album as the slideshow is running and they will be added to the slideshow
  * [x] Fullscreen mode
  * [x] Link to photo source
  * [ ] Autoplay videos
  * [ ] Add music
    * [ ] spotify?
#### Support for multiple photo sources
  * [x] Google Photos
    * [x] Public link only
    * [ ] Maybe add support for authenticated access?
  * [x] Local Folder
  * [x] Generic list of URLs (or file containing one URL per line)
  * [ ] Google Drive
  * [ ] OneDrive
  * [ ] Flickr
  * [ ] Instagram
  * [ ] Facebook
#### Switching photo sources
  * [x] switch to generic config.yaml
  * [ ] Change photo source live from UI
#### Photo order
  * [x] Random
  * [x] New loads first if added during slideshow
  * [ ] Sort by date
  * [ ] Sort by filename
  * [ ] Allow re-ordering from UI
#### UI
  * [x] Dark Mode
  * [x] Correct aspect ratio
  * [x] Live updating favicon (icon in browser tab)
  * [x] Don't cut off photos
  * [x] Better icons
  * [x] Improve speed control (vertical select 0.125x(0.5s), 0.25x (1s), 0.5x (2s), 1x (4s), 2x (8s), 4x (16s))
  * [x] Page title from photo source
  * [x] Support fullscreen (and exit fullscreen)
  * [ ] preview carousel
  * [x] Chromecast support
    * [x] Works when on `http://localhost` or `http://127.0.0.1`
    * [ ] Works when on `http://<local_ip>`
#### Upload Options
  * [ ] Upload button
  * [ ] Drag and drop
  * [ ] Take a photo from phone camera
  * [ ] Add a photo from a URL
  * [ ] Airdrop to server??
  * [ ] Bluetooth to server??
#### Install
  * [x] pip install
  * [ ] Docker
  * [x] executable
    * [x] Basic UI for selecting photo source
    * [ ] Better UI for selecting photo source
    * [ ] Better way to re-config photo source other than modifying config.yaml
  * [ ] walkthough selecting a photo source
  * [ ] clear tutorial with photos of how to run each source
  * [ ] serve by hostname on local network
  * [ ] walk user through how to serve on their own domain
  * [ ] offer hosted version
#### Documentation
  * [x] README
    * [x] basic quickstart
    * [ ] Quickstart with photos
    * [ ] Show photos of end product
    * [x] Feature plan 
  * Python
    * [x] argparse commandline `--help`
    * [x] some docstrings
    * [ ] full docstrings

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "google-photos-slideshow",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "google,photos,slideshow,live,photo,frame",
    "author": "",
    "author_email": "Torin Halsted <modularizer@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/99/65/1575c908b4673be6e4df2b237c7c3a4a66df8e6e87b9b62c87fbeffbb412/google-photos-slideshow-0.0.8.tar.gz",
    "platform": null,
    "description": "# google-photos-slideshow\n\nNOTE: this project is in no way affiliated with or sponsored by Google Photos.\n\n## Quickstart\n### Option 1 : Python install (preferred)\n#### Install\n```commandline\npip install google-photos-slideshow\n```\n\n#### Run\n```commandline\ngpss\n```\n* The first time you run this, it will prompt you for the public url to your google photos album.\n* Future runs will use the same album unless you specify a different one using `--url`.\n\n### Option 2 : Executable\n* Download the latest `.exe` file release from the Releases tab on GitHub (that way =>). \n* Double click to run.\n* The executable is a simple but does not yet have the flexibility of the python package and could be harder to config. \n* Really just meant as an easy Quickstart for users who don't have python installed.\n* Uh-oh, Chrome might block the download because it's not a popular download. You can click \"Keep\" to keep the file but Windows Defender might still block it. Python install is probably easier for now...\n\n\n\n\n\n### View\nOpen a web browser and navigate to `http://localhost` to view the slideshow.\n\n#### Options\n```commandline\ngoogle-photos-slideshow --help\n```\n\n\n#### Folder Slideshow\nYou can also use a folder of photos on your computer as the source for the slideshow.\n```commandline\nfolder-slideshow /path/to/folder\n```\n\n<hr/>\n### Features\n#### Slideshow\n  * [x] Play/Pause\n  * [x] Speed\n  * [x] Next/Previous\n  * [x] Live Communal Controls\n    * anyone viewing the slideshow can control it (pause/play, next/previous, speed control)\n  * [x] Live reload from source \n    * you can add photos to the album as the slideshow is running and they will be added to the slideshow\n  * [x] Fullscreen mode\n  * [x] Link to photo source\n  * [ ] Autoplay videos\n  * [ ] Add music\n    * [ ] spotify?\n#### Support for multiple photo sources\n  * [x] Google Photos\n    * [x] Public link only\n    * [ ] Maybe add support for authenticated access?\n  * [x] Local Folder\n  * [x] Generic list of URLs (or file containing one URL per line)\n  * [ ] Google Drive\n  * [ ] OneDrive\n  * [ ] Flickr\n  * [ ] Instagram\n  * [ ] Facebook\n#### Switching photo sources\n  * [x] switch to generic config.yaml\n  * [ ] Change photo source live from UI\n#### Photo order\n  * [x] Random\n  * [x] New loads first if added during slideshow\n  * [ ] Sort by date\n  * [ ] Sort by filename\n  * [ ] Allow re-ordering from UI\n#### UI\n  * [x] Dark Mode\n  * [x] Correct aspect ratio\n  * [x] Live updating favicon (icon in browser tab)\n  * [x] Don't cut off photos\n  * [x] Better icons\n  * [x] Improve speed control (vertical select 0.125x(0.5s), 0.25x (1s), 0.5x (2s), 1x (4s), 2x (8s), 4x (16s))\n  * [x] Page title from photo source\n  * [x] Support fullscreen (and exit fullscreen)\n  * [ ] preview carousel\n  * [x] Chromecast support\n    * [x] Works when on `http://localhost` or `http://127.0.0.1`\n    * [ ] Works when on `http://<local_ip>`\n#### Upload Options\n  * [ ] Upload button\n  * [ ] Drag and drop\n  * [ ] Take a photo from phone camera\n  * [ ] Add a photo from a URL\n  * [ ] Airdrop to server??\n  * [ ] Bluetooth to server??\n#### Install\n  * [x] pip install\n  * [ ] Docker\n  * [x] executable\n    * [x] Basic UI for selecting photo source\n    * [ ] Better UI for selecting photo source\n    * [ ] Better way to re-config photo source other than modifying config.yaml\n  * [ ] walkthough selecting a photo source\n  * [ ] clear tutorial with photos of how to run each source\n  * [ ] serve by hostname on local network\n  * [ ] walk user through how to serve on their own domain\n  * [ ] offer hosted version\n#### Documentation\n  * [x] README\n    * [x] basic quickstart\n    * [ ] Quickstart with photos\n    * [ ] Show photos of end product\n    * [x] Feature plan \n  * Python\n    * [x] argparse commandline `--help`\n    * [x] some docstrings\n    * [ ] full docstrings\n",
    "bugtrack_url": null,
    "license": "This is free and unencumbered software released into the public domain.  Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.  In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  For more information, please refer to <https://unlicense.org>",
    "summary": "A communal live photo slideshow for Google Photos",
    "version": "0.0.8",
    "project_urls": {
        "Homepage": "https://github.com/modularizer/google-photos-slideshow"
    },
    "split_keywords": [
        "google",
        "photos",
        "slideshow",
        "live",
        "photo",
        "frame"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ee4e0cda6353618e3c6aee46daec6dd7f212cc29099d9393136996f78edadd7",
                "md5": "dfd86f2ba585d28afd0fff4e5ea263da",
                "sha256": "3d5231e1d4958c5cffaef722a55c10938c3e4c984ce51d66be3e8232024b36bb"
            },
            "downloads": -1,
            "filename": "google_photos_slideshow-0.0.8-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "dfd86f2ba585d28afd0fff4e5ea263da",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 14987,
            "upload_time": "2024-03-10T03:12:52",
            "upload_time_iso_8601": "2024-03-10T03:12:52.877797Z",
            "url": "https://files.pythonhosted.org/packages/4e/e4/e0cda6353618e3c6aee46daec6dd7f212cc29099d9393136996f78edadd7/google_photos_slideshow-0.0.8-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99651575c908b4673be6e4df2b237c7c3a4a66df8e6e87b9b62c87fbeffbb412",
                "md5": "231c6ddbcfd340e221c19b8ca90a2b5d",
                "sha256": "d6641890040490fc6feda98c597e2d672c04a4d82a626261a20ffbe41e148568"
            },
            "downloads": -1,
            "filename": "google-photos-slideshow-0.0.8.tar.gz",
            "has_sig": false,
            "md5_digest": "231c6ddbcfd340e221c19b8ca90a2b5d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 15994,
            "upload_time": "2024-03-10T03:12:53",
            "upload_time_iso_8601": "2024-03-10T03:12:53.903015Z",
            "url": "https://files.pythonhosted.org/packages/99/65/1575c908b4673be6e4df2b237c7c3a4a66df8e6e87b9b62c87fbeffbb412/google-photos-slideshow-0.0.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-10 03:12:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "modularizer",
    "github_project": "google-photos-slideshow",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "aiohttp",
            "specs": []
        },
        {
            "name": "websockets",
            "specs": []
        }
    ],
    "lcname": "google-photos-slideshow"
}
        
Elapsed time: 0.24686s