This file contains hidden or 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
# pip install setuptools | |
# pip install plexapi | |
# pip install DeezerPy | |
from plexapi.server import PlexServer | |
from plexapi.mixins import PosterMixin | |
import deezerpy | |
# Config!!!! |
This file contains hidden or 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
CREATE DATABASE core; | |
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; | |
START TRANSACTION; | |
DROP TABLE IF EXISTS `adverts`; | |
CREATE TABLE IF NOT EXISTS `adverts` ( | |
`ad` text NOT NULL | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |
INSERT INTO `adverts` (`ad`) VALUES |
This file contains hidden or 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
#pip install setuptools | |
#pip install plexapi | |
from plexapi.server import PlexServer | |
# Config!!!! | |
# | |
# Required | |
#Plex Server Address. String | |
url = 'http://192.168.1.2:32400' |