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
<?php | |
echo 'Hello World!'; ?> |
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
from flask import Flask | |
from flask_restful import Resource, Api, reqparse | |
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice | |
from apscheduler.schedulers.background import BackgroundScheduler | |
import time | |
import subprocess | |
app = Flask(__name__) | |
api = Api(app) |
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
""" | |
Combination of multiple media players into one for a universal controller. | |
For more details about this platform, please refer to the documentation at | |
https://home-assistant.io/components/media_player.universal/ | |
""" | |
import logging | |
# pylint: disable=import-error | |
from copy import copy |