diff --git a/CHANGELOG.md b/CHANGELOG.md index 417ace2..1b3ba0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -429,21 +429,21 @@ Initial Release. - Service Certificate Signatures are unverified as the signing public key is Unknown. -[1.6.0]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.6.0 -[1.5.3]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.5.3 -[1.5.2]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.5.2 -[1.5.1]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.5.1 -[1.5.0]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.5.0 -[1.4.4]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.4.4 -[1.4.3]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.4.3 -[1.4.2]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.4.2 -[1.4.1]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.4.1 -[1.4.0]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.4.0 -[1.3.1]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.3.1 -[1.3.0]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.3.0 -[1.2.1]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.2.1 -[1.2.0]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.2.0 -[1.1.1]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.1.1 -[1.1.0]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.1.0 -[1.0.1]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.0.1 -[1.0.0]: https://github.com/rlaphoenix/pywidevine/releases/tag/v1.0.0 +[1.6.0]: https://github.com/devine-dl/pywidevine/releases/tag/v1.6.0 +[1.5.3]: https://github.com/devine-dl/pywidevine/releases/tag/v1.5.3 +[1.5.2]: https://github.com/devine-dl/pywidevine/releases/tag/v1.5.2 +[1.5.1]: https://github.com/devine-dl/pywidevine/releases/tag/v1.5.1 +[1.5.0]: https://github.com/devine-dl/pywidevine/releases/tag/v1.5.0 +[1.4.4]: https://github.com/devine-dl/pywidevine/releases/tag/v1.4.4 +[1.4.3]: https://github.com/devine-dl/pywidevine/releases/tag/v1.4.3 +[1.4.2]: https://github.com/devine-dl/pywidevine/releases/tag/v1.4.2 +[1.4.1]: https://github.com/devine-dl/pywidevine/releases/tag/v1.4.1 +[1.4.0]: https://github.com/devine-dl/pywidevine/releases/tag/v1.4.0 +[1.3.1]: https://github.com/devine-dl/pywidevine/releases/tag/v1.3.1 +[1.3.0]: https://github.com/devine-dl/pywidevine/releases/tag/v1.3.0 +[1.2.1]: https://github.com/devine-dl/pywidevine/releases/tag/v1.2.1 +[1.2.0]: https://github.com/devine-dl/pywidevine/releases/tag/v1.2.0 +[1.1.1]: https://github.com/devine-dl/pywidevine/releases/tag/v1.1.1 +[1.1.0]: https://github.com/devine-dl/pywidevine/releases/tag/v1.1.0 +[1.0.1]: https://github.com/devine-dl/pywidevine/releases/tag/v1.0.1 +[1.0.0]: https://github.com/devine-dl/pywidevine/releases/tag/v1.0.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 52618f7..bf63e64 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,7 +17,7 @@ Poetry installation instructions should be followed from the Poetry Docs: https: reason which quickly filled up my System storage. 2. Clone the Repository: ```shell - git clone https://github.com/rlaphoenix/pywidevine + git clone https://github.com/devine-dl/pywidevine cd pywidevine ``` 3. Install the Project with Poetry: diff --git a/README.md b/README.md index 78a9e68..a7d49ff 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,18 @@

- pywidevine + pywidevine
Python Widevine CDM implementation

- - Build status + + Build status Python version - - DeepSource + + DeepSource

diff --git a/pyproject.toml b/pyproject.toml index 3c8d089..22bc85f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ description = "Widevine CDM (Content Decryption Module) implementation in Python license = "GPL-3.0-only" authors = ["rlaphoenix "] readme = "README.md" -repository = "https://github.com/rlaphoenix/pywidevine" +repository = "https://github.com/devine-dl/pywidevine" keywords = ["python", "drm", "widevine", "google"] classifiers = [ "Development Status :: 5 - Production/Stable", @@ -28,9 +28,9 @@ include = [ ] [tool.poetry.urls] -"Issues" = "https://github.com/rlaphoenix/pywidevine/issues" -"Discussions" = "https://github.com/rlaphoenix/pywidevine/discussions" -"Changelog" = "https://github.com/rlaphoenix/pywidevine/blob/master/CHANGELOG.md" +"Issues" = "https://github.com/devine-dl/pywidevine/issues" +"Discussions" = "https://github.com/devine-dl/pywidevine/discussions" +"Changelog" = "https://github.com/devine-dl/pywidevine/blob/master/CHANGELOG.md" [tool.poetry.dependencies] python = ">=3.7,<4.0" diff --git a/pywidevine/main.py b/pywidevine/main.py index 133cff2..301af51 100644 --- a/pywidevine/main.py +++ b/pywidevine/main.py @@ -30,7 +30,7 @@ def main(version: bool, debug: bool) -> None: copyright_years = f"2022-{current_year}" log.info("pywidevine version %s Copyright (c) %s rlaphoenix", __version__, copyright_years) - log.info("https://github.com/rlaphoenix/pywidevine") + log.info("https://github.com/devine-dl/pywidevine") if version: return diff --git a/pywidevine/serve.py b/pywidevine/serve.py index b5d5cc2..07b0602 100644 --- a/pywidevine/serve.py +++ b/pywidevine/serve.py @@ -443,7 +443,7 @@ async def authentication(request: web.Request, handler: Handler) -> web.Response }, status=500) response.headers.update({ - "Server": f"https://github.com/rlaphoenix/pywidevine serve v{__version__}" + "Server": f"https://github.com/devine-dl/pywidevine serve v{__version__}" }) return response diff --git a/serve.example.yml b/serve.example.yml index 618f1d4..83c99ae 100644 --- a/serve.example.yml +++ b/serve.example.yml @@ -4,7 +4,7 @@ # List of Widevine Device (.wvd) file paths to use with serve. # Note: Each individual user needs explicit permission to use a device listed. devices: - - 'C:\Users\rlaphoenix\Documents\WVDs\test_device_001.wvd' + - 'C:\Users\devine-dl\Documents\WVDs\test_device_001.wvd' # List of User's by Secret Key. The Secret Key must be supplied by the User to use the API. users: