├── .circleci └── config.yml ├── .coveragerc ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── cover-art-incorrect-or-not-found.md │ ├── feature_request.md │ └── question.md ├── .gitignore ├── .media_art_test_results.txt ├── .readthedocs.yaml ├── .travis.yml ├── EXAMPLE └── client.py ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── api │ ├── credential.rst │ ├── ddp.rst │ └── ps4.rst │ ├── cli.rst │ ├── conf.py │ ├── index.rst │ ├── readme.rst │ └── usage.rst ├── pylintrc ├── pyps4_2ndscreen ├── __init__.py ├── __main__.py ├── __version__.py ├── connection.py ├── credential.py ├── ddp.py ├── errors.py ├── helpers.py ├── media_art.py ├── oauth.py └── ps4.py ├── requirements.txt ├── requirements_test.txt ├── script ├── release ├── test_art └── update_docs ├── setup.py └── tests ├── .test_media_art_real.py ├── __init__.py ├── test_connection.py ├── test_credential.py ├── test_ddp.py ├── test_helpers.py ├── test_media_art.py └── test_ps4.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/cover-art-incorrect-or-not-found.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/.github/ISSUE_TEMPLATE/cover-art-incorrect-or-not-found.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/.gitignore -------------------------------------------------------------------------------- /.media_art_test_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/.media_art_test_results.txt -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/.travis.yml -------------------------------------------------------------------------------- /EXAMPLE/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/EXAMPLE/client.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/api/credential.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/docs/source/api/credential.rst -------------------------------------------------------------------------------- /docs/source/api/ddp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/docs/source/api/ddp.rst -------------------------------------------------------------------------------- /docs/source/api/ps4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/docs/source/api/ps4.rst -------------------------------------------------------------------------------- /docs/source/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/docs/source/cli.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/docs/source/readme.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/pylintrc -------------------------------------------------------------------------------- /pyps4_2ndscreen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/pyps4_2ndscreen/__init__.py -------------------------------------------------------------------------------- /pyps4_2ndscreen/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/pyps4_2ndscreen/__main__.py -------------------------------------------------------------------------------- /pyps4_2ndscreen/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/pyps4_2ndscreen/__version__.py -------------------------------------------------------------------------------- /pyps4_2ndscreen/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/pyps4_2ndscreen/connection.py -------------------------------------------------------------------------------- /pyps4_2ndscreen/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/pyps4_2ndscreen/credential.py -------------------------------------------------------------------------------- /pyps4_2ndscreen/ddp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/pyps4_2ndscreen/ddp.py -------------------------------------------------------------------------------- /pyps4_2ndscreen/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/pyps4_2ndscreen/errors.py -------------------------------------------------------------------------------- /pyps4_2ndscreen/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/pyps4_2ndscreen/helpers.py -------------------------------------------------------------------------------- /pyps4_2ndscreen/media_art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/pyps4_2ndscreen/media_art.py -------------------------------------------------------------------------------- /pyps4_2ndscreen/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/pyps4_2ndscreen/oauth.py -------------------------------------------------------------------------------- /pyps4_2ndscreen/ps4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/pyps4_2ndscreen/ps4.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/script/release -------------------------------------------------------------------------------- /script/test_art: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/script/test_art -------------------------------------------------------------------------------- /script/update_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/script/update_docs -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.test_media_art_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/tests/.test_media_art_real.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Init File for pyps4-2ndscreen tests.""" 2 | -------------------------------------------------------------------------------- /tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/tests/test_connection.py -------------------------------------------------------------------------------- /tests/test_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/tests/test_credential.py -------------------------------------------------------------------------------- /tests/test_ddp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/tests/test_ddp.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_media_art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/tests/test_media_art.py -------------------------------------------------------------------------------- /tests/test_ps4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktnrg45/pyps4-2ndscreen/HEAD/tests/test_ps4.py --------------------------------------------------------------------------------