diff --git a/README.rst b/README.rst index ef2fc680a..cc54942ad 100644 --- a/README.rst +++ b/README.rst @@ -1,17 +1,17 @@ Python-PlexAPI ============== -.. image:: https://github.com/pkkid/python-plexapi/workflows/CI/badge.svg - :target: https://github.com/pkkid/python-plexapi/actions?query=workflow%3ACI +.. image:: https://github.com/pushingkarmaorg/python-plexapi/workflows/CI/badge.svg + :target: https://github.com/pushingkarmaorg/python-plexapi/actions?query=workflow%3ACI .. image:: https://readthedocs.org/projects/python-plexapi/badge/?version=latest :target: http://python-plexapi.readthedocs.io/en/latest/?badge=latest -.. image:: https://codecov.io/gh/pkkid/python-plexapi/branch/master/graph/badge.svg?token=fOECznuMtw - :target: https://codecov.io/gh/pkkid/python-plexapi -.. image:: https://img.shields.io/github/tag/pkkid/python-plexapi.svg?label=github+release - :target: https://github.com/pkkid/python-plexapi/releases +.. image:: https://codecov.io/gh/pushingkarmaorg/python-plexapi/branch/master/graph/badge.svg?token=fOECznuMtw + :target: https://codecov.io/gh/pushingkarmaorg/python-plexapi +.. image:: https://img.shields.io/github/tag/pushingkarmaorg/python-plexapi.svg?label=github+release + :target: https://github.com/pushingkarmaorg/python-plexapi/releases .. image:: https://badge.fury.io/py/PlexAPI.svg :target: https://badge.fury.io/py/PlexAPI -.. image:: https://img.shields.io/github/last-commit/pkkid/python-plexapi.svg - :target: https://img.shields.io/github/last-commit/pkkid/python-plexapi.svg +.. image:: https://img.shields.io/github/last-commit/pushingkarmaorg/python-plexapi.svg + :target: https://img.shields.io/github/last-commit/pushingkarmaorg/python-plexapi.svg Overview diff --git a/plexapi/client.py b/plexapi/client.py index 4d85900e0..9a904b404 100644 --- a/plexapi/client.py +++ b/plexapi/client.py @@ -220,7 +220,7 @@ def sendCommand(self, command, proxy=None, **params): proxy = self._proxyThroughServer if proxy is None else proxy query = self._server.query if proxy else self.query - # Workaround for ptp. See https://github.com/pkkid/python-plexapi/issues/244 + # Workaround for ptp. See https://github.com/pushingkarmaorg/python-plexapi/issues/244 t = time.time() if command == 'timeline/poll': self._last_call = t diff --git a/plexapi/server.py b/plexapi/server.py index 1c6427d42..239036c41 100644 --- a/plexapi/server.py +++ b/plexapi/server.py @@ -329,7 +329,7 @@ def _myPlexClientPorts(self): """ Sometimes the PlexServer does not properly advertise port numbers required to connect. This attempts to look up device port number from plex.tv. See issue #126: Make PlexServer.clients() more user friendly. - https://github.com/pkkid/python-plexapi/issues/126 + https://github.com/pushingkarmaorg/python-plexapi/issues/126 """ try: ports = {} diff --git a/pyproject.toml b/pyproject.toml index cab72acea..212267f24 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ dynamic = ["version"] alert = ["websocket-client>=1.3.3"] [project.urls] -Homepage = "https://github.com/pkkid/python-plexapi" +Homepage = "https://github.com/pushingkarmaorg/python-plexapi" Documentation = "https://python-plexapi.readthedocs.io" [tool.setuptools.dynamic] diff --git a/tests/test_server.py b/tests/test_server.py index eef07f0d6..d8e481163 100644 --- a/tests/test_server.py +++ b/tests/test_server.py @@ -71,7 +71,11 @@ def test_server_transcodeImage(tmpdir, plex, movie): opacity_background_url = plex.transcodeImage(original_url, height, width, opacity=0, background=background, blur=100) blend_url = plex.transcodeImage(original_url, height, width, blendColor=blend, blur=1000) online_no_upscale_url = plex.transcodeImage( - "https://raw.githubusercontent.com/pkkid/python-plexapi/master/tests/data/cute_cat.jpg", 1000, 1000, upscale=False) + "https://raw.githubusercontent.com/pushingkarmaorg/python-plexapi/master/tests/data/cute_cat.jpg", + 1000, + 1000, + upscale=False + ) original_img = download( original_url, plex._token, savepath=str(tmpdir), filename="original_img",