This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Script to migrate from Dashy (https://dashy.to/) to Homepage (https://gethomepage.dev/) | |
Get your config.yml from Dashy and place it in the same folder as this script. | |
Run the script with Python. | |
The script takes a list of known services that have Widgets in Dashy and tries to automatically match your existing entries to this list, to decide whether an entry should be a bookmark or a service entry. | |
Adjust MATCH_THRESHOLD as needed depending on how much your titles match service names. | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# TODO: | |
# - [ ] Add films processing | |
# https://docs.google.com/spreadsheets/u/0/d/1b5T6bk5bS9LDaIVXR55-agOd_FYgTN0TZcpZDfvnMg4/pub?output=html | |
# https://python-plexapi.readthedocs.io/en/latest/modules/playlist.html | |
# https://www.reddit.com/r/PleX/comments/hmunh9/creating_playlists_with_plex_server_api/ | |
data = ''' | |
Film 01x01 | |
Film 01x01 | |
Film 01x01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
------------------------------------------------------------------------------------------------------------------------ | |
# Maya 2017 PySide2 Docking Qt QMainWindow by Michael Davydov | https://github.com/Nixellion/ | |
## https://www.michaeldavydov.com | https://www.nixes.ru | |
------------------------------------------------------------------------------------------------------------------------ | |
This module aims to have functions and classes that you can use to create your own Maya UI, with support of Maya with | |
PySide and PySide2 (2014-2018+). Primary focus on dockable windows. | |
Major changes have been made in Maya version 2017, when it moved from Qt4\PySide to Qt5\PySide2. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
------------------------------------------------------------------------------------------------------------------------ | |
# Maya 2017 PySide2 Docking Qt QMainWindow by Michael Davydov | https://github.com/Nixellion/ | |
## https://www.michaeldavydov.com | https://www.nixes.ru | |
------------------------------------------------------------------------------------------------------------------------ | |
The goal of this module is to be base module and class for Maya dockable UI windows, with support of Maya versions | |
before and after 2017, when Maya switched to PySide2, and workspaceControl instead of dockControl. | |
Code works but still WIP. |