From f25cf8e01f6ff21b68814c9ccef9b44a7ebab786 Mon Sep 17 00:00:00 2001 From: Augustin Cisterne-Kaas Date: Thu, 5 Oct 2023 16:35:29 +0800 Subject: [PATCH] fix: png for non utf character were returning 403 (#57) * fix: png for non utf character were returning 403 Used SVG instead * ci: fix poetry version --- .github/workflows/ci.yml | 2 +- hebikani/hebikani.py | 22 +- poetry.lock | 2926 +++++++++++++++++++------------------- pyproject.toml | 1 + tests/assets/no_utf.png | Bin 535 -> 0 bytes tests/assets/no_utf.svg | 1 + tests/assets/no_utf.txt | 58 +- tests/test_hebikani.py | 4 +- 8 files changed, 1507 insertions(+), 1507 deletions(-) delete mode 100644 tests/assets/no_utf.png create mode 100644 tests/assets/no_utf.svg diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab5544a..15bccae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: python-version: [3.9] - poetry-version: [1.1.13] + poetry-version: [1.6.1] os: [macos-latest] runs-on: ${{ matrix.os }} outputs: diff --git a/hebikani/hebikani.py b/hebikani/hebikani.py index e5e76ef..3194cf3 100755 --- a/hebikani/hebikani.py +++ b/hebikani/hebikani.py @@ -26,6 +26,7 @@ import ascii_magic import requests import romkan +from cairosvg import svg2png from colorama import Back, Fore, Style from PIL import Image, ImageOps from playsound import playsound @@ -96,7 +97,17 @@ def url_to_ascii(url: str): url (str): The url of the image we want to convert to ascii art. """ request = requests.get(url) - downloaded_image_file = BytesIO(request.content) + + # Convert svg to png + downloaded_image_file = BytesIO() + + # CairoSVG did not like the #000 color in the svg + content = ( + request.content.decode("utf-8").replace("#000", "rgb(0,0,0)").encode("utf-8") + ) + + svg2png(bytestring=content, write_to=downloaded_image_file) + downloaded_image = Image.open(downloaded_image_file) # Downloaded image mode is LA. @@ -106,6 +117,9 @@ def url_to_ascii(url: str): image = ImageOps.invert(image.convert("RGB")) ascii_art = ascii_magic.from_image(image, columns=64) + f = open("ascii.txt", "w") + f.write(ascii_art) + f.close() return ascii_art @@ -749,8 +763,7 @@ def ascii(self): # Get the image URL. We want the smallest png. for image in self.data["data"]["character_images"]: content_type = image.get("content_type") - dimensions = image.get("metadata", {}).get("dimensions") - if content_type == "image/png" and dimensions == "32x32": + if content_type == "image/svg+xml": url = image.get("url") break @@ -1149,6 +1162,7 @@ def process_answer(self, question: Question, answer_type: AnswerType): question.question_type == QuestionType.MEANING and self.client.options.double_check ): + time.sleep(0.5) answer_was_correct = input("My answer was correct [y/N] ") else: answer_was_correct = "N" @@ -1548,7 +1562,7 @@ def main(): dry_run=args.dry_run, limit=args.limit, display_mnemonics=args.mnemonics, - double_check=args.double_check + double_check=args.double_check, ) client = Client(args.api_key, options=client_options) diff --git a/poetry.lock b/poetry.lock index 145984b..6ac44f4 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,18 +1,26 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + [[package]] name = "alabaster" version = "0.7.12" description = "A configurable sidebar-enabled Sphinx theme" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "alabaster-0.7.12-py2.py3-none-any.whl", hash = "sha256:446438bdcca0e05bd45ea2de1668c1d9b032e1a9154c2c259092d77031ddd359"}, + {file = "alabaster-0.7.12.tar.gz", hash = "sha256:a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02"}, +] [[package]] name = "ascii-magic" version = "1.6" description = "Converts pictures into ASCII art" -category = "main" optional = false python-versions = ">=3.5" +files = [ + {file = "ascii_magic-1.6-py3-none-any.whl", hash = "sha256:937447d8677b7428856729c298c0264afd62fc2b8e7ff90c82000492cdc5f8d4"}, + {file = "ascii_magic-1.6.tar.gz", hash = "sha256:7da5518f7368e73f11e2151a0c060804aa149e267b369b7ee7653fbd7b046a51"}, +] [package.dependencies] colorama = "*" @@ -22,17 +30,23 @@ Pillow = "*" name = "atomicwrites" version = "1.4.0" description = "Atomic file writes." -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, + {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, +] [[package]] name = "attrs" version = "21.4.0" description = "Classes Without Boilerplate" -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "attrs-21.4.0-py2.py3-none-any.whl", hash = "sha256:2d27e3784d7a565d36ab851fe94887c5eccd6a463168875832a1be79c82828b4"}, + {file = "attrs-21.4.0.tar.gz", hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"}, +] [package.extras] dev = ["cloudpickle", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "six", "sphinx", "sphinx-notfound-page", "zope.interface"] @@ -44,9 +58,12 @@ tests-no-zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy" name = "babel" version = "2.10.1" description = "Internationalization utilities" -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "Babel-2.10.1-py3-none-any.whl", hash = "sha256:3f349e85ad3154559ac4930c3918247d319f21910d5ce4b25d439ed8693b98d2"}, + {file = "Babel-2.10.1.tar.gz", hash = "sha256:98aeaca086133efb3e1e2aad0396987490c8425929ddbcfe0550184fdc54cd13"}, +] [package.dependencies] pytz = ">=2015.7" @@ -55,9 +72,33 @@ pytz = ">=2015.7" name = "black" version = "22.3.0" description = "The uncompromising code formatter." -category = "dev" optional = false python-versions = ">=3.6.2" +files = [ + {file = "black-22.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2497f9c2386572e28921fa8bec7be3e51de6801f7459dffd6e62492531c47e09"}, + {file = "black-22.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5795a0375eb87bfe902e80e0c8cfaedf8af4d49694d69161e5bd3206c18618bb"}, + {file = "black-22.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e3556168e2e5c49629f7b0f377070240bd5511e45e25a4497bb0073d9dda776a"}, + {file = "black-22.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67c8301ec94e3bcc8906740fe071391bce40a862b7be0b86fb5382beefecd968"}, + {file = "black-22.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:fd57160949179ec517d32ac2ac898b5f20d68ed1a9c977346efbac9c2f1e779d"}, + {file = "black-22.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cc1e1de68c8e5444e8f94c3670bb48a2beef0e91dddfd4fcc29595ebd90bb9ce"}, + {file = "black-22.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2fc92002d44746d3e7db7cf9313cf4452f43e9ea77a2c939defce3b10b5c82"}, + {file = "black-22.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:a6342964b43a99dbc72f72812bf88cad8f0217ae9acb47c0d4f141a6416d2d7b"}, + {file = "black-22.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:328efc0cc70ccb23429d6be184a15ce613f676bdfc85e5fe8ea2a9354b4e9015"}, + {file = "black-22.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06f9d8846f2340dfac80ceb20200ea5d1b3f181dd0556b47af4e8e0b24fa0a6b"}, + {file = "black-22.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:ad4efa5fad66b903b4a5f96d91461d90b9507a812b3c5de657d544215bb7877a"}, + {file = "black-22.3.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8477ec6bbfe0312c128e74644ac8a02ca06bcdb8982d4ee06f209be28cdf163"}, + {file = "black-22.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:637a4014c63fbf42a692d22b55d8ad6968a946b4a6ebc385c5505d9625b6a464"}, + {file = "black-22.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:863714200ada56cbc366dc9ae5291ceb936573155f8bf8e9de92aef51f3ad0f0"}, + {file = "black-22.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10dbe6e6d2988049b4655b2b739f98785a884d4d6b85bc35133a8fb9a2233176"}, + {file = "black-22.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:cee3e11161dde1b2a33a904b850b0899e0424cc331b7295f2a9698e79f9a69a0"}, + {file = "black-22.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5891ef8abc06576985de8fa88e95ab70641de6c1fca97e2a15820a9b69e51b20"}, + {file = "black-22.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:30d78ba6bf080eeaf0b7b875d924b15cd46fec5fd044ddfbad38c8ea9171043a"}, + {file = "black-22.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ee8f1f7228cce7dffc2b464f07ce769f478968bfb3dd1254a4c2eeed84928aad"}, + {file = "black-22.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ee227b696ca60dd1c507be80a6bc849a5a6ab57ac7352aad1ffec9e8b805f21"}, + {file = "black-22.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:9b542ced1ec0ceeff5b37d69838106a6348e60db7b8fdd245294dc1d26136265"}, + {file = "black-22.3.0-py3-none-any.whl", hash = "sha256:bc58025940a896d7e5356952228b68f793cf5fcb342be703c3a2669a1488cb72"}, + {file = "black-22.3.0.tar.gz", hash = "sha256:35020b8886c022ced9282b51b5a875b6d1ab0c387b31a065b84db7c33085ca79"}, +] [package.dependencies] click = ">=8.0.0" @@ -73,21 +114,132 @@ d = ["aiohttp (>=3.7.4)"] jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] uvloop = ["uvloop (>=0.15.2)"] +[[package]] +name = "cairocffi" +version = "1.6.1" +description = "cffi-based cairo bindings for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cairocffi-1.6.1-py3-none-any.whl", hash = "sha256:aa78ee52b9069d7475eeac457389b6275aa92111895d78fbaa2202a52dac112e"}, + {file = "cairocffi-1.6.1.tar.gz", hash = "sha256:78e6bbe47357640c453d0be929fa49cd05cce2e1286f3d2a1ca9cbda7efdb8b7"}, +] + +[package.dependencies] +cffi = ">=1.1.0" + +[package.extras] +doc = ["sphinx", "sphinx_rtd_theme"] +test = ["flake8", "isort", "numpy", "pikepdf", "pytest"] +xcb = ["xcffib (>=1.4.0)"] + +[[package]] +name = "cairosvg" +version = "2.7.1" +description = "A Simple SVG Converter based on Cairo" +optional = false +python-versions = ">=3.5" +files = [ + {file = "CairoSVG-2.7.1-py3-none-any.whl", hash = "sha256:8a5222d4e6c3f86f1f7046b63246877a63b49923a1cd202184c3a634ef546b3b"}, + {file = "CairoSVG-2.7.1.tar.gz", hash = "sha256:432531d72347291b9a9ebfb6777026b607563fd8719c46ee742db0aef7271ba0"}, +] + +[package.dependencies] +cairocffi = "*" +cssselect2 = "*" +defusedxml = "*" +pillow = "*" +tinycss2 = "*" + +[package.extras] +doc = ["sphinx", "sphinx-rtd-theme"] +test = ["flake8", "isort", "pytest"] + [[package]] name = "certifi" version = "2022.12.7" description = "Python package for providing Mozilla's CA Bundle." -category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"}, + {file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"}, +] + +[[package]] +name = "cffi" +version = "1.16.0" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = ">=3.8" +files = [ + {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, + {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, + {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, + {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, + {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, + {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, + {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, + {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, + {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, + {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, + {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, + {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, + {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, + {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, + {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, +] + +[package.dependencies] +pycparser = "*" [[package]] name = "charset-normalizer" version = "2.0.12" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -category = "main" optional = false python-versions = ">=3.5.0" +files = [ + {file = "charset-normalizer-2.0.12.tar.gz", hash = "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"}, + {file = "charset_normalizer-2.0.12-py3-none-any.whl", hash = "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"}, +] [package.extras] unicode-backport = ["unicodedata2"] @@ -96,9 +248,12 @@ unicode-backport = ["unicodedata2"] name = "click" version = "8.1.3" description = "Composable command line interface toolkit" -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, + {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, +] [package.dependencies] colorama = {version = "*", markers = "platform_system == \"Windows\""} @@ -107,36 +262,117 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] [[package]] name = "coverage" version = "6.4" description = "Code coverage measurement for Python" -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "coverage-6.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:50ed480b798febce113709846b11f5d5ed1e529c88d8ae92f707806c50297abf"}, + {file = "coverage-6.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:26f8f92699756cb7af2b30720de0c5bb8d028e923a95b6d0c891088025a1ac8f"}, + {file = "coverage-6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:60c2147921da7f4d2d04f570e1838db32b95c5509d248f3fe6417e91437eaf41"}, + {file = "coverage-6.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:750e13834b597eeb8ae6e72aa58d1d831b96beec5ad1d04479ae3772373a8088"}, + {file = "coverage-6.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af5b9ee0fc146e907aa0f5fb858c3b3da9199d78b7bb2c9973d95550bd40f701"}, + {file = "coverage-6.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:a022394996419142b33a0cf7274cb444c01d2bb123727c4bb0b9acabcb515dea"}, + {file = "coverage-6.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5a78cf2c43b13aa6b56003707c5203f28585944c277c1f3f109c7b041b16bd39"}, + {file = "coverage-6.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9229d074e097f21dfe0643d9d0140ee7433814b3f0fc3706b4abffd1e3038632"}, + {file = "coverage-6.4-cp310-cp310-win32.whl", hash = "sha256:fb45fe08e1abc64eb836d187b20a59172053999823f7f6ef4f18a819c44ba16f"}, + {file = "coverage-6.4-cp310-cp310-win_amd64.whl", hash = "sha256:3cfd07c5889ddb96a401449109a8b97a165be9d67077df6802f59708bfb07720"}, + {file = "coverage-6.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:03014a74023abaf5a591eeeaf1ac66a73d54eba178ff4cb1fa0c0a44aae70383"}, + {file = "coverage-6.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c82f2cd69c71698152e943f4a5a6b83a3ab1db73b88f6e769fabc86074c3b08"}, + {file = "coverage-6.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b546cf2b1974ddc2cb222a109b37c6ed1778b9be7e6b0c0bc0cf0438d9e45a6"}, + {file = "coverage-6.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc173f1ce9ffb16b299f51c9ce53f66a62f4d975abe5640e976904066f3c835d"}, + {file = "coverage-6.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c53ad261dfc8695062fc8811ac7c162bd6096a05a19f26097f411bdf5747aee7"}, + {file = "coverage-6.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:eef5292b60b6de753d6e7f2d128d5841c7915fb1e3321c3a1fe6acfe76c38052"}, + {file = "coverage-6.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:543e172ce4c0de533fa892034cce260467b213c0ea8e39da2f65f9a477425211"}, + {file = "coverage-6.4-cp37-cp37m-win32.whl", hash = "sha256:00c8544510f3c98476bbd58201ac2b150ffbcce46a8c3e4fb89ebf01998f806a"}, + {file = "coverage-6.4-cp37-cp37m-win_amd64.whl", hash = "sha256:b84ab65444dcc68d761e95d4d70f3cfd347ceca5a029f2ffec37d4f124f61311"}, + {file = "coverage-6.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d548edacbf16a8276af13063a2b0669d58bbcfca7c55a255f84aac2870786a61"}, + {file = "coverage-6.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:033ebec282793bd9eb988d0271c211e58442c31077976c19c442e24d827d356f"}, + {file = "coverage-6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:742fb8b43835078dd7496c3c25a1ec8d15351df49fb0037bffb4754291ef30ce"}, + {file = "coverage-6.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d55fae115ef9f67934e9f1103c9ba826b4c690e4c5bcf94482b8b2398311bf9c"}, + {file = "coverage-6.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5cd698341626f3c77784858427bad0cdd54a713115b423d22ac83a28303d1d95"}, + {file = "coverage-6.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:62d382f7d77eeeaff14b30516b17bcbe80f645f5cf02bb755baac376591c653c"}, + {file = "coverage-6.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:016d7f5cf1c8c84f533a3c1f8f36126fbe00b2ec0ccca47cc5731c3723d327c6"}, + {file = "coverage-6.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:69432946f154c6add0e9ede03cc43b96e2ef2733110a77444823c053b1ff5166"}, + {file = "coverage-6.4-cp38-cp38-win32.whl", hash = "sha256:83bd142cdec5e4a5c4ca1d4ff6fa807d28460f9db919f9f6a31babaaa8b88426"}, + {file = "coverage-6.4-cp38-cp38-win_amd64.whl", hash = "sha256:4002f9e8c1f286e986fe96ec58742b93484195defc01d5cc7809b8f7acb5ece3"}, + {file = "coverage-6.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e4f52c272fdc82e7c65ff3f17a7179bc5f710ebc8ce8a5cadac81215e8326740"}, + {file = "coverage-6.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b5578efe4038be02d76c344007b13119b2b20acd009a88dde8adec2de4f630b5"}, + {file = "coverage-6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8099ea680201c2221f8468c372198ceba9338a5fec0e940111962b03b3f716a"}, + {file = "coverage-6.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a00441f5ea4504f5abbc047589d09e0dc33eb447dc45a1a527c8b74bfdd32c65"}, + {file = "coverage-6.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e76bd16f0e31bc2b07e0fb1379551fcd40daf8cdf7e24f31a29e442878a827c"}, + {file = "coverage-6.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:8d2e80dd3438e93b19e1223a9850fa65425e77f2607a364b6fd134fcd52dc9df"}, + {file = "coverage-6.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:341e9c2008c481c5c72d0e0dbf64980a4b2238631a7f9780b0fe2e95755fb018"}, + {file = "coverage-6.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:21e6686a95025927775ac501e74f5940cdf6fe052292f3a3f7349b0abae6d00f"}, + {file = "coverage-6.4-cp39-cp39-win32.whl", hash = "sha256:968ed5407f9460bd5a591cefd1388cc00a8f5099de9e76234655ae48cfdbe2c3"}, + {file = "coverage-6.4-cp39-cp39-win_amd64.whl", hash = "sha256:e35217031e4b534b09f9b9a5841b9344a30a6357627761d4218818b865d45055"}, + {file = "coverage-6.4-pp36.pp37.pp38-none-any.whl", hash = "sha256:e637ae0b7b481905358624ef2e81d7fb0b1af55f5ff99f9ba05442a444b11e45"}, + {file = "coverage-6.4.tar.gz", hash = "sha256:727dafd7f67a6e1cad808dc884bd9c5a2f6ef1f8f6d2f22b37b96cb0080d4f49"}, +] [package.extras] toml = ["tomli"] +[[package]] +name = "cssselect2" +version = "0.7.0" +description = "CSS selectors for Python ElementTree" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cssselect2-0.7.0-py3-none-any.whl", hash = "sha256:fd23a65bfd444595913f02fc71f6b286c29261e354c41d722ca7a261a49b5969"}, + {file = "cssselect2-0.7.0.tar.gz", hash = "sha256:1ccd984dab89fc68955043aca4e1b03e0cf29cad9880f6e28e3ba7a74b14aa5a"}, +] + +[package.dependencies] +tinycss2 = "*" +webencodings = "*" + +[package.extras] +doc = ["sphinx", "sphinx_rtd_theme"] +test = ["flake8", "isort", "pytest"] + +[[package]] +name = "defusedxml" +version = "0.7.1" +description = "XML bomb protection for Python stdlib modules" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"}, + {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"}, +] + [[package]] name = "docutils" version = "0.17.1" description = "Docutils -- Python Documentation Utilities" -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "docutils-0.17.1-py2.py3-none-any.whl", hash = "sha256:cf316c8370a737a022b72b56874f6602acf974a37a9fba42ec2876387549fc61"}, + {file = "docutils-0.17.1.tar.gz", hash = "sha256:686577d2e4c32380bb50cbb22f575ed742d58168cee37e99117a854bcd88f125"}, +] [[package]] name = "flake8" version = "4.0.1" description = "the modular source code checker: pep8 pyflakes and co" -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "flake8-4.0.1-py2.py3-none-any.whl", hash = "sha256:479b1304f72536a55948cb40a32dce8bb0ffe3501e26eaf292c7e60eb5e0428d"}, + {file = "flake8-4.0.1.tar.gz", hash = "sha256:806e034dda44114815e23c16ef92f95c91e4c71100ff52813adf7132a6ad870d"}, +] [package.dependencies] mccabe = ">=0.6.0,<0.7.0" @@ -147,9 +383,12 @@ pyflakes = ">=2.4.0,<2.5.0" name = "freezegun" version = "1.2.1" description = "Let your Python tests travel through time" -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "freezegun-1.2.1-py3-none-any.whl", hash = "sha256:15103a67dfa868ad809a8f508146e396be2995172d25f927e48ce51c0bf5cb09"}, + {file = "freezegun-1.2.1.tar.gz", hash = "sha256:b4c64efb275e6bc68dc6e771b17ffe0ff0f90b81a2a5189043550b6519926ba4"}, +] [package.dependencies] python-dateutil = ">=2.7" @@ -158,25 +397,34 @@ python-dateutil = ">=2.7" name = "idna" version = "3.3" description = "Internationalized Domain Names in Applications (IDNA)" -category = "main" optional = false python-versions = ">=3.5" +files = [ + {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, + {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, +] [[package]] name = "imagesize" version = "1.3.0" description = "Getting image size from png/jpeg/jpeg2000/gif file" -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "imagesize-1.3.0-py2.py3-none-any.whl", hash = "sha256:1db2f82529e53c3e929e8926a1fa9235aa82d0bd0c580359c67ec31b2fddaa8c"}, + {file = "imagesize-1.3.0.tar.gz", hash = "sha256:cd1750d452385ca327479d45b64d9c7729ecf0b3969a58148298c77092261f9d"}, +] [[package]] name = "importlib-metadata" version = "4.11.3" description = "Read metadata from Python packages" -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "importlib_metadata-4.11.3-py3-none-any.whl", hash = "sha256:1208431ca90a8cca1a6b8af391bb53c1a2db74e5d1cef6ddced95d4b2062edc6"}, + {file = "importlib_metadata-4.11.3.tar.gz", hash = "sha256:ea4c597ebf37142f827b8f39299579e31685c31d3a438b59f469406afd0f2539"}, +] [package.dependencies] zipp = ">=0.5" @@ -190,17 +438,23 @@ testing = ["flufl.flake8", "importlib-resources (>=1.3)", "packaging", "pyfakefs name = "iniconfig" version = "1.1.1" description = "iniconfig: brain-dead simple config-ini parsing" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, + {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, +] [[package]] name = "jinja2" version = "3.1.2" description = "A very fast and expressive template engine." -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] [package.dependencies] MarkupSafe = ">=2.0" @@ -212,41 +466,94 @@ i18n = ["Babel (>=2.7)"] name = "markupsafe" version = "2.1.1" description = "Safely add untrusted strings to HTML/XML markup." -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"}, + {file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"}, + {file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"}, + {file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"}, + {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"}, + {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"}, +] [[package]] name = "mccabe" version = "0.6.1" description = "McCabe checker, plugin for flake8" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"}, + {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, +] [[package]] name = "mutagen" version = "1.46.0" description = "read and write audio tags for many formats" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "mutagen-1.46.0-py3-none-any.whl", hash = "sha256:8af0728aa2d5c3ee5a727e28d0627966641fddfe804c23eabb5926a4d770aed5"}, + {file = "mutagen-1.46.0.tar.gz", hash = "sha256:6e5f8ba84836b99fe60be5fb27f84be4ad919bbb6b49caa6ae81e70584b55e58"}, +] [[package]] name = "mypy-extensions" version = "0.4.3" description = "Experimental type system extensions for programs checked with the mypy typechecker." -category = "dev" optional = false python-versions = "*" +files = [ + {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, + {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, +] [[package]] name = "packaging" version = "21.3" description = "Core utilities for Python packages" -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, + {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, +] [package.dependencies] pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" @@ -255,112 +562,239 @@ pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" name = "pathspec" version = "0.9.0" description = "Utility library for gitignore style pattern matching of file paths." -category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +files = [ + {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"}, + {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"}, +] [[package]] name = "pillow" version = "9.4.0" description = "Python Imaging Library (Fork)" -category = "main" -optional = false -python-versions = ">=3.7" - -[package.extras] -docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-issues (>=3.0.1)", "sphinx-removed-in", "sphinxext-opengraph"] -tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] - -[[package]] -name = "platformdirs" -version = "2.5.2" -description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -category = "dev" optional = false python-versions = ">=3.7" - -[package.extras] -docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx (>=4)", "sphinx-autodoc-typehints (>=1.12)"] -test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] - -[[package]] -name = "playsound" -version = "1.2.2" -description = "Pure Python, cross platform, single function module with no dependencies for playing sounds." -category = "main" -optional = false -python-versions = "*" - -[[package]] -name = "pluggy" -version = "1.0.0" -description = "plugin and hook calling mechanisms for python" -category = "dev" -optional = false -python-versions = ">=3.6" - -[package.extras] -dev = ["pre-commit", "tox"] -testing = ["pytest", "pytest-benchmark"] - -[[package]] -name = "pockets" -version = "0.9.1" -description = "A collection of helpful Python tools!" -category = "dev" -optional = false -python-versions = "*" - -[package.dependencies] -six = ">=1.5.2" - -[[package]] -name = "py" -version = "1.11.0" +files = [ + {file = "Pillow-9.4.0-1-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:1b4b4e9dda4f4e4c4e6896f93e84a8f0bcca3b059de9ddf67dac3c334b1195e1"}, + {file = "Pillow-9.4.0-1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:fb5c1ad6bad98c57482236a21bf985ab0ef42bd51f7ad4e4538e89a997624e12"}, + {file = "Pillow-9.4.0-1-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:f0caf4a5dcf610d96c3bd32932bfac8aee61c96e60481c2a0ea58da435e25acd"}, + {file = "Pillow-9.4.0-1-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:3f4cc516e0b264c8d4ccd6b6cbc69a07c6d582d8337df79be1e15a5056b258c9"}, + {file = "Pillow-9.4.0-1-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:b8c2f6eb0df979ee99433d8b3f6d193d9590f735cf12274c108bd954e30ca858"}, + {file = "Pillow-9.4.0-1-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:b70756ec9417c34e097f987b4d8c510975216ad26ba6e57ccb53bc758f490dab"}, + {file = "Pillow-9.4.0-1-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:43521ce2c4b865d385e78579a082b6ad1166ebed2b1a2293c3be1d68dd7ca3b9"}, + {file = "Pillow-9.4.0-2-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:9d9a62576b68cd90f7075876f4e8444487db5eeea0e4df3ba298ee38a8d067b0"}, + {file = "Pillow-9.4.0-2-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:87708d78a14d56a990fbf4f9cb350b7d89ee8988705e58e39bdf4d82c149210f"}, + {file = "Pillow-9.4.0-2-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:8a2b5874d17e72dfb80d917213abd55d7e1ed2479f38f001f264f7ce7bae757c"}, + {file = "Pillow-9.4.0-2-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:83125753a60cfc8c412de5896d10a0a405e0bd88d0470ad82e0869ddf0cb3848"}, + {file = "Pillow-9.4.0-2-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:9e5f94742033898bfe84c93c831a6f552bb629448d4072dd312306bab3bd96f1"}, + {file = "Pillow-9.4.0-2-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:013016af6b3a12a2f40b704677f8b51f72cb007dac785a9933d5c86a72a7fe33"}, + {file = "Pillow-9.4.0-2-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:99d92d148dd03fd19d16175b6d355cc1b01faf80dae93c6c3eb4163709edc0a9"}, + {file = "Pillow-9.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:2968c58feca624bb6c8502f9564dd187d0e1389964898f5e9e1fbc8533169157"}, + {file = "Pillow-9.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c5c1362c14aee73f50143d74389b2c158707b4abce2cb055b7ad37ce60738d47"}, + {file = "Pillow-9.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd752c5ff1b4a870b7661234694f24b1d2b9076b8bf337321a814c612665f343"}, + {file = "Pillow-9.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9a3049a10261d7f2b6514d35bbb7a4dfc3ece4c4de14ef5876c4b7a23a0e566d"}, + {file = "Pillow-9.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16a8df99701f9095bea8a6c4b3197da105df6f74e6176c5b410bc2df2fd29a57"}, + {file = "Pillow-9.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:94cdff45173b1919350601f82d61365e792895e3c3a3443cf99819e6fbf717a5"}, + {file = "Pillow-9.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:ed3e4b4e1e6de75fdc16d3259098de7c6571b1a6cc863b1a49e7d3d53e036070"}, + {file = "Pillow-9.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d5b2f8a31bd43e0f18172d8ac82347c8f37ef3e0b414431157718aa234991b28"}, + {file = "Pillow-9.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:09b89ddc95c248ee788328528e6a2996e09eaccddeeb82a5356e92645733be35"}, + {file = "Pillow-9.4.0-cp310-cp310-win32.whl", hash = "sha256:f09598b416ba39a8f489c124447b007fe865f786a89dbfa48bb5cf395693132a"}, + {file = "Pillow-9.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:f6e78171be3fb7941f9910ea15b4b14ec27725865a73c15277bc39f5ca4f8391"}, + {file = "Pillow-9.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:3fa1284762aacca6dc97474ee9c16f83990b8eeb6697f2ba17140d54b453e133"}, + {file = "Pillow-9.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:eaef5d2de3c7e9b21f1e762f289d17b726c2239a42b11e25446abf82b26ac132"}, + {file = "Pillow-9.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4dfdae195335abb4e89cc9762b2edc524f3c6e80d647a9a81bf81e17e3fb6f0"}, + {file = "Pillow-9.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6abfb51a82e919e3933eb137e17c4ae9c0475a25508ea88993bb59faf82f3b35"}, + {file = "Pillow-9.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:451f10ef963918e65b8869e17d67db5e2f4ab40e716ee6ce7129b0cde2876eab"}, + {file = "Pillow-9.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:6663977496d616b618b6cfa43ec86e479ee62b942e1da76a2c3daa1c75933ef4"}, + {file = "Pillow-9.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:60e7da3a3ad1812c128750fc1bc14a7ceeb8d29f77e0a2356a8fb2aa8925287d"}, + {file = "Pillow-9.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:19005a8e58b7c1796bc0167862b1f54a64d3b44ee5d48152b06bb861458bc0f8"}, + {file = "Pillow-9.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f715c32e774a60a337b2bb8ad9839b4abf75b267a0f18806f6f4f5f1688c4b5a"}, + {file = "Pillow-9.4.0-cp311-cp311-win32.whl", hash = "sha256:b222090c455d6d1a64e6b7bb5f4035c4dff479e22455c9eaa1bdd4c75b52c80c"}, + {file = "Pillow-9.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:ba6612b6548220ff5e9df85261bddc811a057b0b465a1226b39bfb8550616aee"}, + {file = "Pillow-9.4.0-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:5f532a2ad4d174eb73494e7397988e22bf427f91acc8e6ebf5bb10597b49c493"}, + {file = "Pillow-9.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dd5a9c3091a0f414a963d427f920368e2b6a4c2f7527fdd82cde8ef0bc7a327"}, + {file = "Pillow-9.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef21af928e807f10bf4141cad4746eee692a0dd3ff56cfb25fce076ec3cc8abe"}, + {file = "Pillow-9.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:847b114580c5cc9ebaf216dd8c8dbc6b00a3b7ab0131e173d7120e6deade1f57"}, + {file = "Pillow-9.4.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:653d7fb2df65efefbcbf81ef5fe5e5be931f1ee4332c2893ca638c9b11a409c4"}, + {file = "Pillow-9.4.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:46f39cab8bbf4a384ba7cb0bc8bae7b7062b6a11cfac1ca4bc144dea90d4a9f5"}, + {file = "Pillow-9.4.0-cp37-cp37m-win32.whl", hash = "sha256:7ac7594397698f77bce84382929747130765f66406dc2cd8b4ab4da68ade4c6e"}, + {file = "Pillow-9.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:46c259e87199041583658457372a183636ae8cd56dbf3f0755e0f376a7f9d0e6"}, + {file = "Pillow-9.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:0e51f608da093e5d9038c592b5b575cadc12fd748af1479b5e858045fff955a9"}, + {file = "Pillow-9.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:765cb54c0b8724a7c12c55146ae4647e0274a839fb6de7bcba841e04298e1011"}, + {file = "Pillow-9.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:519e14e2c49fcf7616d6d2cfc5c70adae95682ae20f0395e9280db85e8d6c4df"}, + {file = "Pillow-9.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d197df5489004db87d90b918033edbeee0bd6df3848a204bca3ff0a903bef837"}, + {file = "Pillow-9.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0845adc64fe9886db00f5ab68c4a8cd933ab749a87747555cec1c95acea64b0b"}, + {file = "Pillow-9.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:e1339790c083c5a4de48f688b4841f18df839eb3c9584a770cbd818b33e26d5d"}, + {file = "Pillow-9.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:a96e6e23f2b79433390273eaf8cc94fec9c6370842e577ab10dabdcc7ea0a66b"}, + {file = "Pillow-9.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7cfc287da09f9d2a7ec146ee4d72d6ea1342e770d975e49a8621bf54eaa8f30f"}, + {file = "Pillow-9.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d7081c084ceb58278dd3cf81f836bc818978c0ccc770cbbb202125ddabec6628"}, + {file = "Pillow-9.4.0-cp38-cp38-win32.whl", hash = "sha256:df41112ccce5d47770a0c13651479fbcd8793f34232a2dd9faeccb75eb5d0d0d"}, + {file = "Pillow-9.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:7a21222644ab69ddd9967cfe6f2bb420b460dae4289c9d40ff9a4896e7c35c9a"}, + {file = "Pillow-9.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0f3269304c1a7ce82f1759c12ce731ef9b6e95b6df829dccd9fe42912cc48569"}, + {file = "Pillow-9.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cb362e3b0976dc994857391b776ddaa8c13c28a16f80ac6522c23d5257156bed"}, + {file = "Pillow-9.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2e0f87144fcbbe54297cae708c5e7f9da21a4646523456b00cc956bd4c65815"}, + {file = "Pillow-9.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:28676836c7796805914b76b1837a40f76827ee0d5398f72f7dcc634bae7c6264"}, + {file = "Pillow-9.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0884ba7b515163a1a05440a138adeb722b8a6ae2c2b33aea93ea3118dd3a899e"}, + {file = "Pillow-9.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:53dcb50fbdc3fb2c55431a9b30caeb2f7027fcd2aeb501459464f0214200a503"}, + {file = "Pillow-9.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:e8c5cf126889a4de385c02a2c3d3aba4b00f70234bfddae82a5eaa3ee6d5e3e6"}, + {file = "Pillow-9.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6c6b1389ed66cdd174d040105123a5a1bc91d0aa7059c7261d20e583b6d8cbd2"}, + {file = "Pillow-9.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0dd4c681b82214b36273c18ca7ee87065a50e013112eea7d78c7a1b89a739153"}, + {file = "Pillow-9.4.0-cp39-cp39-win32.whl", hash = "sha256:6d9dfb9959a3b0039ee06c1a1a90dc23bac3b430842dcb97908ddde05870601c"}, + {file = "Pillow-9.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:54614444887e0d3043557d9dbc697dbb16cfb5a35d672b7a0fcc1ed0cf1c600b"}, + {file = "Pillow-9.4.0-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:b9b752ab91e78234941e44abdecc07f1f0d8f51fb62941d32995b8161f68cfe5"}, + {file = "Pillow-9.4.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3b56206244dc8711f7e8b7d6cad4663917cd5b2d950799425076681e8766286"}, + {file = "Pillow-9.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aabdab8ec1e7ca7f1434d042bf8b1e92056245fb179790dc97ed040361f16bfd"}, + {file = "Pillow-9.4.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:db74f5562c09953b2c5f8ec4b7dfd3f5421f31811e97d1dbc0a7c93d6e3a24df"}, + {file = "Pillow-9.4.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:e9d7747847c53a16a729b6ee5e737cf170f7a16611c143d95aa60a109a59c336"}, + {file = "Pillow-9.4.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:b52ff4f4e002f828ea6483faf4c4e8deea8d743cf801b74910243c58acc6eda3"}, + {file = "Pillow-9.4.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:575d8912dca808edd9acd6f7795199332696d3469665ef26163cd090fa1f8bfa"}, + {file = "Pillow-9.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c4ed2ff6760e98d262e0cc9c9a7f7b8a9f61aa4d47c58835cdaf7b0b8811bb"}, + {file = "Pillow-9.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e621b0246192d3b9cb1dc62c78cfa4c6f6d2ddc0ec207d43c0dedecb914f152a"}, + {file = "Pillow-9.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:8f127e7b028900421cad64f51f75c051b628db17fb00e099eb148761eed598c9"}, + {file = "Pillow-9.4.0.tar.gz", hash = "sha256:a1c2d7780448eb93fbcc3789bf3916aa5720d942e37945f4056680317f1cd23e"}, +] + +[package.extras] +docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-issues (>=3.0.1)", "sphinx-removed-in", "sphinxext-opengraph"] +tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] + +[[package]] +name = "platformdirs" +version = "2.5.2" +description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"}, + {file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"}, +] + +[package.extras] +docs = ["furo (>=2021.7.5b38)", "proselint (>=0.10.2)", "sphinx (>=4)", "sphinx-autodoc-typehints (>=1.12)"] +test = ["appdirs (==1.4.4)", "pytest (>=6)", "pytest-cov (>=2.7)", "pytest-mock (>=3.6)"] + +[[package]] +name = "playsound" +version = "1.2.2" +description = "Pure Python, cross platform, single function module with no dependencies for playing sounds." +optional = false +python-versions = "*" +files = [ + {file = "playsound-1.2.2-py2.py3-none-any.whl", hash = "sha256:1e83750a5325cbccee03d6e751ba3e78c037ac95b95a3ba1f38d0c5aca9e1a34"}, +] + +[[package]] +name = "pluggy" +version = "1.0.0" +description = "plugin and hook calling mechanisms for python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, + {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, +] + +[package.extras] +dev = ["pre-commit", "tox"] +testing = ["pytest", "pytest-benchmark"] + +[[package]] +name = "pockets" +version = "0.9.1" +description = "A collection of helpful Python tools!" +optional = false +python-versions = "*" +files = [ + {file = "pockets-0.9.1-py2.py3-none-any.whl", hash = "sha256:68597934193c08a08eb2bf6a1d85593f627c22f9b065cc727a4f03f669d96d86"}, + {file = "pockets-0.9.1.tar.gz", hash = "sha256:9320f1a3c6f7a9133fe3b571f283bcf3353cd70249025ae8d618e40e9f7e92b3"}, +] + +[package.dependencies] +six = ">=1.5.2" + +[[package]] +name = "py" +version = "1.11.0" description = "library with cross-python path, ini-parsing, io, code, log facilities" -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, + {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, +] [[package]] name = "pycairo" version = "1.21.0" description = "Python interface for cairo" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pycairo-1.21.0-cp310-cp310-win32.whl", hash = "sha256:44a2ecf34968de07b3b9dfdcdbccbd25aa3cab267200f234f84e81481a73bbf6"}, + {file = "pycairo-1.21.0-cp310-cp310-win_amd64.whl", hash = "sha256:f63c153a9ea3d21aff85e2caeee4b0c5d566b2368b4ed64826020d12953d76a4"}, + {file = "pycairo-1.21.0-cp37-cp37m-win32.whl", hash = "sha256:70936b19f967fa3cb3cd200c2608911227fa5d09dae21c166f64bc15e714ee41"}, + {file = "pycairo-1.21.0-cp37-cp37m-win_amd64.whl", hash = "sha256:31e1c4850db03201d33929cbe1905ce1b33202683ebda7bb0d4dba489115066b"}, + {file = "pycairo-1.21.0-cp38-cp38-win32.whl", hash = "sha256:dace6b356c476de27f8e1522428ac21a799c225703f746e2957d441f885dcb6c"}, + {file = "pycairo-1.21.0-cp38-cp38-win_amd64.whl", hash = "sha256:4357f20a6b1de8f1e8072a74ff68ab4c9a0ae698cd9f5c0f2b2cdd9b28b635f6"}, + {file = "pycairo-1.21.0-cp39-cp39-win32.whl", hash = "sha256:6d37375aab9f2bb6136f076c19815d72108383baae89fbc0d6cb8e5092217d02"}, + {file = "pycairo-1.21.0-cp39-cp39-win_amd64.whl", hash = "sha256:26b72b813c6f9d495f71057eab89c13e70a21c92360e9265abc049e0a931fa39"}, + {file = "pycairo-1.21.0.tar.gz", hash = "sha256:251907f18a552df938aa3386657ff4b5a4937dde70e11aa042bc297957f4b74b"}, +] [[package]] name = "pycodestyle" version = "2.8.0" description = "Python style guide checker" -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "pycodestyle-2.8.0-py2.py3-none-any.whl", hash = "sha256:720f8b39dde8b293825e7ff02c475f3077124006db4f440dcbc9a20b76548a20"}, + {file = "pycodestyle-2.8.0.tar.gz", hash = "sha256:eddd5847ef438ea1c7870ca7eb78a9d47ce0cdb4851a5523949f2601d0cbbe7f"}, +] + +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] [[package]] name = "pyflakes" version = "2.4.0" description = "passive checker of Python programs" -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pyflakes-2.4.0-py2.py3-none-any.whl", hash = "sha256:3bb3a3f256f4b7968c9c788781e4ff07dce46bdf12339dcda61053375426ee2e"}, + {file = "pyflakes-2.4.0.tar.gz", hash = "sha256:05a85c2872edf37a4ed30b0cce2f6093e1d0581f8c19d7393122da7e25b2b24c"}, +] [[package]] name = "pygments" version = "2.12.0" description = "Pygments is a syntax highlighting package written in Python." -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "Pygments-2.12.0-py3-none-any.whl", hash = "sha256:dc9c10fb40944260f6ed4c688ece0cd2048414940f1cea51b8b226318411c519"}, + {file = "Pygments-2.12.0.tar.gz", hash = "sha256:5eb116118f9612ff1ee89ac96437bb6b49e8f04d8a13b514ba26f620208e26eb"}, +] [[package]] name = "pygobject" version = "3.42.2" description = "Python bindings for GObject Introspection" -category = "main" optional = false python-versions = ">=3.6, <4" +files = [ + {file = "PyGObject-3.42.2.tar.gz", hash = "sha256:21524cef33100c8fd59dc135948b703d79d303e368ce71fa60521cc971cd8aa7"}, +] [package.dependencies] pycairo = ">=1.16,<2.0" @@ -369,9 +803,12 @@ pycairo = ">=1.16,<2.0" name = "pyobjc" version = "9.0.1" description = "Python<->ObjC Interoperability Module" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-9.0.1-py3-none-any.whl", hash = "sha256:cf1c26226f23df4cfe65224db9eef03749ec3bf336c389aa2c7736f8c4e51f35"}, + {file = "pyobjc-9.0.1.tar.gz", hash = "sha256:e9608194a94c321e6cf545a3f8af0382e74b7c44af9ca36f3d3474af41661305"}, +] [package.dependencies] pyobjc-core = "9.0.1" @@ -529,17 +966,30 @@ allbindings = ["pyobjc-core (==9.0.1)", "pyobjc-framework-AVFoundation (==9.0.1) name = "pyobjc-core" version = "9.0.1" description = "Python<->ObjC Interoperability Module" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-core-9.0.1.tar.gz", hash = "sha256:5ce1510bb0bdff527c597079a42b2e13a19b7592e76850be7960a2775b59c929"}, + {file = "pyobjc_core-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b614406d46175b1438a9596b664bf61952323116704d19bc1dea68052a0aad98"}, + {file = "pyobjc_core-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:bd397e729f6271c694fb70df8f5d3d3c9b2f2b8ac02fbbdd1757ca96027b94bb"}, + {file = "pyobjc_core-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d919934eaa6d1cf1505ff447a5c2312be4c5651efcb694eb9f59e86f5bd25e6b"}, + {file = "pyobjc_core-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:67d67ca8b164f38ceacce28a18025845c3ec69613f3301935d4d2c4ceb22e3fd"}, + {file = "pyobjc_core-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:39d11d71f6161ac0bd93cffc8ea210bb0178b56d16a7408bf74283d6ecfa7430"}, + {file = "pyobjc_core-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:25be1c4d530e473ed98b15063b8d6844f0733c98914de6f09fe1f7652b772bbc"}, +] [[package]] name = "pyobjc-framework-accessibility" version = "9.0.1" description = "Wrappers for the framework Accessibility on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Accessibility-9.0.1.tar.gz", hash = "sha256:3dd6bdff7597e454846e6171a6c58da3e414bef1fc155ae4255d49a91da527c3"}, + {file = "pyobjc_framework_Accessibility-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:b4e36fb5cd364956fc12e800bc3ff58bac958035a320b7946c7f59bc6ad38452"}, + {file = "pyobjc_framework_Accessibility-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:53f3b9a267819bcc5853ea9cca2767d5cc33c200fe6d71eb8a2b623ac6c723b1"}, + {file = "pyobjc_framework_Accessibility-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:a4e454e0424662fa14f62e3c9e8d56a25fe0cc8f8eb9c93cbc1a1df12d7cf3aa"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -550,9 +1000,12 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-accounts" version = "9.0.1" description = "Wrappers for the framework Accounts on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Accounts-9.0.1.tar.gz", hash = "sha256:3cfd824ec78fb1728b9d020d8a91313e25ea862574051da82c0616df57f5fc87"}, + {file = "pyobjc_framework_Accounts-9.0.1-py2.py3-none-any.whl", hash = "sha256:3cdef323228580f28d2e444d77086a542a7824c26ac0aa769fe55259a869d44a"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -562,9 +1015,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-addressbook" version = "9.0.1" description = "Wrappers for the framework AddressBook on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-AddressBook-9.0.1.tar.gz", hash = "sha256:1f2f2426122d69a9a981b8c3d9f408d9d9440a47e31a31f725c09997c7698ff9"}, + {file = "pyobjc_framework_AddressBook-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:df590230a178e01f42ad7d53da1343e2b0842580bea21de861ad7096607fd15f"}, + {file = "pyobjc_framework_AddressBook-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:1846ca3389361462e0dbf16518824f2077ceea9c06eea6642a8d27ff562c7b74"}, + {file = "pyobjc_framework_AddressBook-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:a820ded6064fb02cd30426da6d6c1ec1d9203a64d61605395ff0a6c4a567e6e9"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -574,9 +1032,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-adservices" version = "9.0.1" description = "Wrappers for the framework AdServices on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-AdServices-9.0.1.tar.gz", hash = "sha256:d5a3a82990809ec8d4f322d63f0fc02f11c892888e1d91706294b9cb7e15c038"}, + {file = "pyobjc_framework_AdServices-9.0.1-py2.py3-none-any.whl", hash = "sha256:a9e6265a26446ce897aecd97662659d8b861fe8fd808ad1dd4b808dff60b5a05"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -586,9 +1047,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-adsupport" version = "9.0.1" description = "Wrappers for the framework AdSupport on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-AdSupport-9.0.1.tar.gz", hash = "sha256:eca02dc5d3c26064883184dab494ed5cdd043681043f4b4ceb290388e5bc6a01"}, + {file = "pyobjc_framework_AdSupport-9.0.1-py2.py3-none-any.whl", hash = "sha256:290dccba0b234ec3a635ddbe3f3095816e2a76783b69e96c4d0799a1922d694b"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -598,9 +1062,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-applescriptkit" version = "9.0.1" description = "Wrappers for the framework AppleScriptKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-AppleScriptKit-9.0.1.tar.gz", hash = "sha256:44ea535b4faf77b01c3df0ce4d56e30190a3a3ce62e04a78e010627bd158d857"}, + {file = "pyobjc_framework_AppleScriptKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:276ece60cae045351496295cf9f1491c80be76c92e25642eb99db828190b6ee6"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -610,9 +1077,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-applescriptobjc" version = "9.0.1" description = "Wrappers for the framework AppleScriptObjC on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-AppleScriptObjC-9.0.1.tar.gz", hash = "sha256:c581c27af7da728a3df4fb6f0dddfcabf905f43815aba7d2c1e440fbcd1b5513"}, + {file = "pyobjc_framework_AppleScriptObjC-9.0.1-py2.py3-none-any.whl", hash = "sha256:793d854fb27286016dc6621e9a7af7e520c390cd46d68308d142b918b4a16d70"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -622,9 +1092,17 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-applicationservices" version = "9.0.1" description = "Wrappers for the framework ApplicationServices on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ApplicationServices-9.0.1.tar.gz", hash = "sha256:e3a350781fdcab6c1da4343dfc54ae3c0523e59e61147432f61dcfb365752fde"}, + {file = "pyobjc_framework_ApplicationServices-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c4214febf3cc2e417ae15d45b6502e5c20f1097cd042b025760d019fe69b07b6"}, + {file = "pyobjc_framework_ApplicationServices-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c62693e01ba272fbadcd66677881311d2d63fda84b9662533fcc883c54be76d7"}, + {file = "pyobjc_framework_ApplicationServices-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6829df4dc4cf012bdc221d4e0296d6699b33ca89741569df153989a0c18aa40e"}, + {file = "pyobjc_framework_ApplicationServices-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5af5d12871499c429dd68c5ec4be56c631ec8439aa953c266eed9afdffb5ec2b"}, + {file = "pyobjc_framework_ApplicationServices-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:724da9dfae6ab0505b90340231a685720288caecfcca335b08903102e97a93dc"}, + {file = "pyobjc_framework_ApplicationServices-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8e1dbfc8f482c433ce642724d4bed0c527c7f2f2f8b9ba1ac3f778a68cf1538d"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -635,9 +1113,12 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-apptrackingtransparency" version = "9.0.1" description = "Wrappers for the framework AppTrackingTransparency on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-AppTrackingTransparency-9.0.1.tar.gz", hash = "sha256:90f31de4c9fb91d28a9a2625dcb2ec3890a435301237860b99cedbb455cc8ae4"}, + {file = "pyobjc_framework_AppTrackingTransparency-9.0.1-py2.py3-none-any.whl", hash = "sha256:b371ce30e8c9f4b92148f9df60c36aff809b55be41a5cc41718fe11a7889b43e"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -647,9 +1128,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-audiovideobridging" version = "9.0.1" description = "Wrappers for the framework AudioVideoBridging on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-AudioVideoBridging-9.0.1.tar.gz", hash = "sha256:11da47b7024e8616d74ae786cbe1f8767c9097d097bf4d6da8a5d024f7f32b27"}, + {file = "pyobjc_framework_AudioVideoBridging-9.0.1-py2.py3-none-any.whl", hash = "sha256:1f9b94380bbfa7cc82a82cdc078f8d78a572a5debefe7343571fdd4050c2e6eb"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -659,9 +1143,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-authenticationservices" version = "9.0.1" description = "Wrappers for the framework AuthenticationServices on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-AuthenticationServices-9.0.1.tar.gz", hash = "sha256:746b02771f1b53d4649a1014b8986aa595100790202fd3e9f8160074ceb0083b"}, + {file = "pyobjc_framework_AuthenticationServices-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:ffc9e4fc20e9836a1c186ec35bada23d8a45a03dff8595c5083411d547080498"}, + {file = "pyobjc_framework_AuthenticationServices-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:92395d49a6164e161ad83eb95a2065e4e34c5ebd82b1894209776a4a4d38d0d5"}, + {file = "pyobjc_framework_AuthenticationServices-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:5c6a33f9d37aa9cc02b71908caab9e95010e896c87b00e6ce01e451fbef9d574"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -671,9 +1160,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-automaticassessmentconfiguration" version = "9.0.1" description = "Wrappers for the framework AutomaticAssessmentConfiguration on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-AutomaticAssessmentConfiguration-9.0.1.tar.gz", hash = "sha256:2f79daec218f27f0941253238d8ea22d17bf37f9cc3af8ab0ef264c27575a9aa"}, + {file = "pyobjc_framework_AutomaticAssessmentConfiguration-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:3961ac8dafe085d80902e2f2c662843e4131cfd7267c978874674928e125d4a7"}, + {file = "pyobjc_framework_AutomaticAssessmentConfiguration-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:407b629ed27ca0d657f43fd5d6efd8f614b032b02675c9d361054b8aeaf55e83"}, + {file = "pyobjc_framework_AutomaticAssessmentConfiguration-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:77971db9d3c9d68b33356683bcef47432d11db8200252667e25d407e84446ccb"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -683,9 +1177,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-automator" version = "9.0.1" description = "Wrappers for the framework Automator on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Automator-9.0.1.tar.gz", hash = "sha256:862f71d0778c6adfb1ae5b3d5af9363ca6e04d41e7fb1099d9759a86e83f60cf"}, + {file = "pyobjc_framework_Automator-9.0.1-py2.py3-none-any.whl", hash = "sha256:d03bc0b92f5baede2eb35bde373774f708b9cfdf5fdde631d36e262eb5f63220"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -695,9 +1192,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-avfoundation" version = "9.0.1" description = "Wrappers for the framework AVFoundation on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-AVFoundation-9.0.1.tar.gz", hash = "sha256:4afa1d9b2bdf73b8d776f857b217942382c019a709697d266aa9c48b3f9cc620"}, + {file = "pyobjc_framework_AVFoundation-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d697089cee120688305c7832e06213312fa31c658a6223a8cfa26268968c05b3"}, + {file = "pyobjc_framework_AVFoundation-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:24c39907257c5b61a5709a2b337a465512bee1664d4ca50222cc764fd6abe43b"}, + {file = "pyobjc_framework_AVFoundation-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:a463d8790de3a1a8a3c68ee82d07d1d39bad4d78d7c5064509250ba68751d973"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -710,9 +1212,14 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-avkit" version = "9.0.1" description = "Wrappers for the framework AVKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-AVKit-9.0.1.tar.gz", hash = "sha256:382815a5ffab7444cade994cc3335898eaf25fd627af2adf7a5a9d982a62a273"}, + {file = "pyobjc_framework_AVKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:0f6775127029ffa489d6e03dc82c8952dea56f1e91965c171e337d97b78df5ad"}, + {file = "pyobjc_framework_AVKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:a87a9a59691f24981b2b323ec128a223ff31087ee7793ef012f01afefbdee397"}, + {file = "pyobjc_framework_AVKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:bf5c723633aac929861ca31ded7374f8270066da85256d9d448f80a2edd28bcb"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -723,9 +1230,14 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-avrouting" version = "9.0.1" description = "Wrappers for the framework AVRouting on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-AVRouting-9.0.1.tar.gz", hash = "sha256:1236a46bece3766383b3bd73d78f49e9b501cc9824474c3db6bfc2ab84cb3cb4"}, + {file = "pyobjc_framework_AVRouting-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:ff3845107e30308250a4d48ce1845fd2210358cf3422f8c7337fb9011704d323"}, + {file = "pyobjc_framework_AVRouting-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:09b7e268a4c5fc0e18835f6e7c3636f3b57a525e58419a0844454364cd199604"}, + {file = "pyobjc_framework_AVRouting-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:182e534f9a74e597c66a0c32a9bcc564300ec7e782f14ca56abbbda93cea704a"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -735,9 +1247,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-backgroundassets" version = "9.0.1" description = "Wrappers for the framework BackgroundAssets on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-BackgroundAssets-9.0.1.tar.gz", hash = "sha256:354c3602e55f93fd7bb08bf6468db62972c02da8b05bfa3e41dd0aa532e085ce"}, + {file = "pyobjc_framework_BackgroundAssets-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:ef0c31674bbd167bed295b6d463ae4f4e6e875d59cbc631311befa0f19eca457"}, + {file = "pyobjc_framework_BackgroundAssets-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:e356040a509dcf94415124ad62900325ed7b524a2b2c93d4901987f0eaac7106"}, + {file = "pyobjc_framework_BackgroundAssets-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:30c840272dc78fe07a99163162fb32ba771dad096bd023621af2416f249cee0b"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -747,9 +1264,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-businesschat" version = "9.0.1" description = "Wrappers for the framework BusinessChat on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-BusinessChat-9.0.1.tar.gz", hash = "sha256:18e8343e714fb9ef68c75124ec74658bd8f188fbdf266f7dca0b04d46dedf6dd"}, + {file = "pyobjc_framework_BusinessChat-9.0.1-py2.py3-none-any.whl", hash = "sha256:f1f853e715b7ee6b90e01c42481cbb0bef50942bed8af9ad908914fb5f0e782e"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -759,9 +1279,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-calendarstore" version = "9.0.1" description = "Wrappers for the framework CalendarStore on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CalendarStore-9.0.1.tar.gz", hash = "sha256:69cb60ae61ee35cd6bac613fc2429903884211bc9f2df994029b308dddfb891a"}, + {file = "pyobjc_framework_CalendarStore-9.0.1-py2.py3-none-any.whl", hash = "sha256:ddb62bc90fbd772dfc233ebefe06075b59de5735110979c5efff599159d30d40"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -771,9 +1294,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-callkit" version = "9.0.1" description = "Wrappers for the framework CallKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CallKit-9.0.1.tar.gz", hash = "sha256:375c143c768d926e79d77a8cbf7394a4107a74c19b84f83b044a3cc2773022a4"}, + {file = "pyobjc_framework_CallKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:b80104ef5d94b5f7545ff378a7f1e67afcd248cff37a1cf4490e6e24817c7103"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -783,9 +1309,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-cfnetwork" version = "9.0.1" description = "Wrappers for the framework CFNetwork on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CFNetwork-9.0.1.tar.gz", hash = "sha256:7f0c05d1575bbf2de31fe38ee8ff18840640463ad530827af88cfbca817e130b"}, + {file = "pyobjc_framework_CFNetwork-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:366f7f48bce4de4199103236ef7dfba4afcacc5644a3a9c7cd4dfa8c4c4e444c"}, + {file = "pyobjc_framework_CFNetwork-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:bc9ae8413b29ad798646ddf3e453e85b47fe00676b21dde3c9e2ae51e9231ad1"}, + {file = "pyobjc_framework_CFNetwork-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:964e5b8922c647f77ed1826f73d7ef753474b5dd8d66241ff52282194c1247a6"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -795,9 +1326,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-classkit" version = "9.0.1" description = "Wrappers for the framework ClassKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ClassKit-9.0.1.tar.gz", hash = "sha256:35aa002e9d24a86e0b41edef11522ab0b5dc4336c7ddaa4951ddb0e02054fbed"}, + {file = "pyobjc_framework_ClassKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:1727572bfdaa7bdf18f00c93d2c4f99ae5ba2e265c4c6862b0d5039ae8f14d50"}, + {file = "pyobjc_framework_ClassKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:56b78857e94578174a149856ab265345f49dc2aefd86313b88ea02306cfdc3f1"}, + {file = "pyobjc_framework_ClassKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:fe08810caff050692489ba39ae29fabf41a39a5bd99e4167fbe627b62b6dbdcb"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -807,9 +1343,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-cloudkit" version = "9.0.1" description = "Wrappers for the framework CloudKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CloudKit-9.0.1.tar.gz", hash = "sha256:2cc56ddfecb6c4463a6cb83a405a1ee57b1cb008a6bc529ca95824163cc93ed0"}, + {file = "pyobjc_framework_CloudKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:2e92516a4efcbc26968260d23683d7641b08866a881b3d391486c24bf81a757d"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -822,9 +1361,17 @@ pyobjc-framework-CoreLocation = ">=9.0.1" name = "pyobjc-framework-cocoa" version = "9.0.1" description = "Wrappers for the Cocoa frameworks on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Cocoa-9.0.1.tar.gz", hash = "sha256:a8b53b3426f94307a58e2f8214dc1094c19afa9dcb96f21be12f937d968b2df3"}, + {file = "pyobjc_framework_Cocoa-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5f94b0f92a62b781e633e58f09bcaded63d612f9b1e15202f5f372ea59e4aebd"}, + {file = "pyobjc_framework_Cocoa-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f062c3bb5cc89902e6d164aa9a66ffc03638645dd5f0468b6f525ac997c86e51"}, + {file = "pyobjc_framework_Cocoa-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0b374c0a9d32ba4fc5610ab2741cb05a005f1dfb82a47dbf2dbb2b3a34b73ce5"}, + {file = "pyobjc_framework_Cocoa-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8928080cebbce91ac139e460d3dfc94c7cb6935be032dcae9c0a51b247f9c2d9"}, + {file = "pyobjc_framework_Cocoa-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:9d2bd86a0a98d906f762f5dc59f2fc67cce32ae9633b02ff59ac8c8a33dd862d"}, + {file = "pyobjc_framework_Cocoa-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2a41053cbcee30e1e8914efa749c50b70bf782527d5938f2bc2a6393740969ce"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -833,9 +1380,12 @@ pyobjc-core = ">=9.0.1" name = "pyobjc-framework-collaboration" version = "9.0.1" description = "Wrappers for the framework Collaboration on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Collaboration-9.0.1.tar.gz", hash = "sha256:9b61a3c113c0eaefa5a21effd3e28f3cc5955faad385b7ddba2a5df44f68a1d2"}, + {file = "pyobjc_framework_Collaboration-9.0.1-py2.py3-none-any.whl", hash = "sha256:7496248e3013d43cf609a8ba0612f4bdc069105e6bd2dd1b8363125bb1ec277d"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -845,9 +1395,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-colorsync" version = "9.0.1" description = "Wrappers for the framework ColorSync on Mac OS X" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ColorSync-9.0.1.tar.gz", hash = "sha256:05835196a81a9362d3a263a4092c6c6709ca48ef218d233cf2ec69f5c57a9266"}, + {file = "pyobjc_framework_ColorSync-9.0.1-py2.py3-none-any.whl", hash = "sha256:ca3ff3558febd237c4bf4db36b0e417540569ec7b05af17c3805012bb3a438c0"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -857,9 +1410,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-contacts" version = "9.0.1" description = "Wrappers for the framework Contacts on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Contacts-9.0.1.tar.gz", hash = "sha256:b58f12b9b42b1c33215ebb90663b8e44d53001f2c169e889008ddc715b349e5f"}, + {file = "pyobjc_framework_Contacts-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:19c8bdbcdd2478b125529b9bb493a5c547ad4af6f03ca2bb7480eb10e54468a3"}, + {file = "pyobjc_framework_Contacts-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:1cdf6902fbc1f8c7fb31fbd36e60e41e1264b5b971726edcb6de4e829d25c88c"}, + {file = "pyobjc_framework_Contacts-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:db5112f2c4dbf070d1a986657fb40c23ec6cdea98b33eff454dff31ddaecf6bf"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -869,9 +1427,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-contactsui" version = "9.0.1" description = "Wrappers for the framework ContactsUI on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ContactsUI-9.0.1.tar.gz", hash = "sha256:235d7692b2ec778d31568d8996cad36b2497bb273f309f8976c5239c77242a75"}, + {file = "pyobjc_framework_ContactsUI-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:69514c821233471bc2c17a29da426dafcadac100276f929e0227518421382ab8"}, + {file = "pyobjc_framework_ContactsUI-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:95a6263469c4dfc23a4c04924479a5a748cb6de7ff06a8299b8b1db78e74f08b"}, + {file = "pyobjc_framework_ContactsUI-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:9bfe5686cb126587fd6f309252a181cb213cca59e14aa1f829f7dfd5faef1e57"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -882,9 +1445,17 @@ pyobjc-framework-Contacts = ">=9.0.1" name = "pyobjc-framework-coreaudio" version = "9.0.1" description = "Wrappers for the framework CoreAudio on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreAudio-9.0.1.tar.gz", hash = "sha256:f02a1d61296b38d82477cbcbb2ddd4e8585e88b0dabbf8655450690c1bfb7254"}, + {file = "pyobjc_framework_CoreAudio-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2ea443b5b2e57a457eded82f6560302556903d63232bb816b525804582e7eebe"}, + {file = "pyobjc_framework_CoreAudio-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3eb9f784332d797d3d27047d05e6cb273911705987268789eec49a33b8536324"}, + {file = "pyobjc_framework_CoreAudio-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:759b50a5c0311a8a5a9000e16b21cdc2bb7c6e69f66cd7d9c67dc9f19b57faa4"}, + {file = "pyobjc_framework_CoreAudio-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5f081853becaca774c42bd0d3fd2d145747543d631b6beb0160ba5cbb619e4f2"}, + {file = "pyobjc_framework_CoreAudio-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:34b57b0320407729ce3a67d1a7a3e5b2f81e43c64ebbba87e390f467c4825c0a"}, + {file = "pyobjc_framework_CoreAudio-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75eeefe51560df195ec456b8acb810a41942cd5e4e8bc72d11ebc4d0da93ce35"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -894,9 +1465,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-coreaudiokit" version = "9.0.1" description = "Wrappers for the framework CoreAudioKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreAudioKit-9.0.1.tar.gz", hash = "sha256:61a39f00e25214486be432fd31eb2b9d8e54da9a1361b9b3a1025201876417ef"}, + {file = "pyobjc_framework_CoreAudioKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:0bd5f6d903de7e8507a8ed77d7663d2b03eae0b558f58c1823e525848e133130"}, + {file = "pyobjc_framework_CoreAudioKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:1ae4899d5c969f760f8dfa8b65856cc5b95a0c88feb341265d39909ca35d69ce"}, + {file = "pyobjc_framework_CoreAudioKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:95f2c281e3c38bdeb62843e0a2a309dd0e821258e2030e06136f9b0adc4d6f2f"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -907,9 +1483,14 @@ pyobjc-framework-CoreAudio = ">=9.0.1" name = "pyobjc-framework-corebluetooth" version = "9.0.1" description = "Wrappers for the framework CoreBluetooth on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreBluetooth-9.0.1.tar.gz", hash = "sha256:bf008d7bfe13cda12a43ed82346acfad262e90824086b145394c154531b51841"}, + {file = "pyobjc_framework_CoreBluetooth-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:62f15fc6e1d864a5e6afd26fe01947e5879b5322af23719d988981ca65b34a30"}, + {file = "pyobjc_framework_CoreBluetooth-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:15673b480b3695aba87ce9574154bd1997f03a784969642b0da5e990e9679f48"}, + {file = "pyobjc_framework_CoreBluetooth-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:3560c55de7799cd7468b1282d6c2fca4823896ffbcb7d53be69b55c01a44592e"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -919,9 +1500,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-coredata" version = "9.0.1" description = "Wrappers for the framework CoreData on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreData-9.0.1.tar.gz", hash = "sha256:aca27739366621c6986651f0ea68d47341b1e9b2bf0f118b6972a68ebdab7abd"}, + {file = "pyobjc_framework_CoreData-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:7f07fadd9ab57840ed1e3eebcfcaab866dcc9df07ee4a29466983e6854edcc5e"}, + {file = "pyobjc_framework_CoreData-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:4edad2b587fd77cde90b60253514e212825efa56b3a298249ac396e126bcff53"}, + {file = "pyobjc_framework_CoreData-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:f0a1c3eb3a0f4817251356a3ed47d223f3eeadf49d6d2d8c3ee173c437b6636d"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -931,9 +1517,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-corehaptics" version = "9.0.1" description = "Wrappers for the framework CoreHaptics on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreHaptics-9.0.1.tar.gz", hash = "sha256:cb5e08a19509d7bc00a9e17a0b412a66aee64aa020dd0114767603b1aa1da789"}, + {file = "pyobjc_framework_CoreHaptics-9.0.1-py2.py3-none-any.whl", hash = "sha256:a262912910e51ec6417160d66827c05a99b6fbee89908ead4e346dc710ec1eed"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -943,9 +1532,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-corelocation" version = "9.0.1" description = "Wrappers for the framework CoreLocation on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreLocation-9.0.1.tar.gz", hash = "sha256:a1454ed210ffb3eb46df3876741fabe8ebe7b877074868df9ee550345a6ee6d5"}, + {file = "pyobjc_framework_CoreLocation-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:0d37300e3bc5ed5a4b3f15e1d31f3f6a6c6868adaf318a59676755f7f49412e8"}, + {file = "pyobjc_framework_CoreLocation-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:0bc61b23dc8d43095b7e8e83db0aab3a97ab8d3a00e821bcf5001aa325682d30"}, + {file = "pyobjc_framework_CoreLocation-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:f7ade875bef13d0aa91ec0bd3f4f615a0c86516c1beee2607c44993c0c663a06"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -955,9 +1549,17 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-coremedia" version = "9.0.1" description = "Wrappers for the framework CoreMedia on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreMedia-9.0.1.tar.gz", hash = "sha256:0d99adad1404525f44a2493b3fe73c3ded61c67f2973c4d940ff9fafb3f85d8f"}, + {file = "pyobjc_framework_CoreMedia-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:12d430da863393f1b9c250ea18f6da5e237a936aed3779cff64c5d468d7ae2e8"}, + {file = "pyobjc_framework_CoreMedia-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:182b89c85afa068ba077ff6c0ef4ed17e1f3997512bfb8aca2d4c3c7f58da771"}, + {file = "pyobjc_framework_CoreMedia-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:79450db21e54840f51301f84dfbe22dab227563176f7894de3ec5891e6ba9a5f"}, + {file = "pyobjc_framework_CoreMedia-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:853d9ba4299b168a59d034a7c68fbd9d6c5a128aa9c4e9f275abf1fac339f4c7"}, + {file = "pyobjc_framework_CoreMedia-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:b69b4c1a86f43b3d8b1daf414907290c731fc463eb90ab33dcc451a0c607df9f"}, + {file = "pyobjc_framework_CoreMedia-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c8cf230181b75bf4892e0f328c289bb9250d177617195cfaa39351f4fa5a9bc1"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -967,9 +1569,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-coremediaio" version = "9.0.1" description = "Wrappers for the framework CoreMediaIO on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreMediaIO-9.0.1.tar.gz", hash = "sha256:0e561f1c4de73495d87bef01649cb777338b149808dcd90ded5bbc14e4bd5e0e"}, + {file = "pyobjc_framework_CoreMediaIO-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:4dfdd57b32429efbd345f326ac3dda8f58ec2a981afdf8b853b591cf8be92976"}, + {file = "pyobjc_framework_CoreMediaIO-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:249fef3192358d45ca3354a653481a1a335c406efb9a74bcaa1e37b5f66f3c6c"}, + {file = "pyobjc_framework_CoreMediaIO-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:30d5cbfe45e0307813d740a8f71825a1087358b7fdc8a4a7372ba96e5a7928cd"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -979,9 +1586,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-coremidi" version = "9.0.1" description = "Wrappers for the framework CoreMIDI on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreMIDI-9.0.1.tar.gz", hash = "sha256:b0294311db2f9421cfad4aafaa925c1e649faf3847fb3c6c9cd9892e094783c3"}, + {file = "pyobjc_framework_CoreMIDI-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:de93a87b16eb569b5911d5084ec79ac90c0c83aaa56d407ac63306eecf344971"}, + {file = "pyobjc_framework_CoreMIDI-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:338f2aaa09c1278ba3c75736969a31bcd2a1f5f9ad8df420dea67ae25afbe581"}, + {file = "pyobjc_framework_CoreMIDI-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:2691a896520850b80d73bd943e9665a35d044f2ff9a3eef4f011ed6d3b738096"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -991,9 +1603,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-coreml" version = "9.0.1" description = "Wrappers for the framework CoreML on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreML-9.0.1.tar.gz", hash = "sha256:216731388c85a2d8d00b6d9045e4637b5375c8777fe59795edd8e91a0cb2c4aa"}, + {file = "pyobjc_framework_CoreML-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:c2368c25203509f4765f512afe4dedec9eaf39a20ce95c2fe8ef7edd757815b2"}, + {file = "pyobjc_framework_CoreML-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:1f52b3324fca825b0c89e3e2a3432a39aae0bf4dd17f7b89c2d0cf5fdfb67610"}, + {file = "pyobjc_framework_CoreML-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:4e8586b78b40d62f3aa0e731cc494a39f342c674626659bcfcf6bb05de2d5473"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1003,9 +1620,17 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-coremotion" version = "9.0.1" description = "Wrappers for the framework CoreMotion on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreMotion-9.0.1.tar.gz", hash = "sha256:7a5d2e9e2134779902dbfee8f1d8d9b3920f7399a85b5f8c91079600788423f6"}, + {file = "pyobjc_framework_CoreMotion-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d1634e114b9fff03b376ee560d5d62f1bb0d2945a0411bacfa6c78f24d3bfbd0"}, + {file = "pyobjc_framework_CoreMotion-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:20e7ff571574d08d8ba198241826e20eea598e94c77adaf82ad7af97b9a17efe"}, + {file = "pyobjc_framework_CoreMotion-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:81bfb7e2c74115c048d0ac0ed980f36d32be5521493b403bea72a47f6e95502c"}, + {file = "pyobjc_framework_CoreMotion-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:071882530abfbc6dcad4cca7023f8d39df0c22a22438acbe6f96051a501b45ae"}, + {file = "pyobjc_framework_CoreMotion-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:29115ca6dfe5630475a97381a16beedffe5d36e2a3cd9d7b843c4ac3c5156152"}, + {file = "pyobjc_framework_CoreMotion-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a27b70a240cf448dadd6693165dad5ad312f44be20feb1668d7fb72c7f28c042"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1015,9 +1640,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-coreservices" version = "9.0.1" description = "Wrappers for the framework CoreServices on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreServices-9.0.1.tar.gz", hash = "sha256:35dee25133c935593b8eb71333166b9b69b25a85e2d648eaabd9fa1eec57d10f"}, + {file = "pyobjc_framework_CoreServices-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:8c2527cba2c2e7af7c47d0a8fdb0b4291f3ca994ff2bfd458f10a69402b2d92f"}, + {file = "pyobjc_framework_CoreServices-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:33a739c2c9efdf8aaf41fcd916553bc7203bdf16e9455fe8299471eaf4604cc9"}, + {file = "pyobjc_framework_CoreServices-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:539fd0b018c19281ef1d7c9f5e9e0cf757c7f8541eeb9691e21aa19f42cbdbc1"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1027,9 +1657,14 @@ pyobjc-framework-FSEvents = ">=9.0.1" name = "pyobjc-framework-corespotlight" version = "9.0.1" description = "Wrappers for the framework CoreSpotlight on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreSpotlight-9.0.1.tar.gz", hash = "sha256:c436faf70d29f0eabb22b0c3f96189bc1168dc8ab6f1872b0618e3c7accbcfeb"}, + {file = "pyobjc_framework_CoreSpotlight-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:ca9a586015f781331e7904af8f32b5c07687978f42b198f541656a7ac40bb6a2"}, + {file = "pyobjc_framework_CoreSpotlight-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:444c3e7089f97d2744bbbde51f4c4887d400358100aa4a1055f1203962235011"}, + {file = "pyobjc_framework_CoreSpotlight-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:67a41f953cb128dbf3c7497ad710feb11cd1af4e249fe6eb8146c4eeb67a9144"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1039,9 +1674,17 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-coretext" version = "9.0.1" description = "Wrappers for the framework CoreText on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreText-9.0.1.tar.gz", hash = "sha256:0128b6360a492a2a6560f36ae4fb721991b545faed4da1dab3664d8ed2083676"}, + {file = "pyobjc_framework_CoreText-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:54110ae9b21db1e74302d8ba245febe21ae0f366b25197739ac62c31dfd257eb"}, + {file = "pyobjc_framework_CoreText-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:749b352e1ae35f94b9b10e3c41d3194648d2eea30a8103c86f6218ffb9d6f4de"}, + {file = "pyobjc_framework_CoreText-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e74a295693ae11a8f333ea94e7beb930f1ffec465549d860ba9a97f0658d1c42"}, + {file = "pyobjc_framework_CoreText-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5af27750b5f6c1ee5952c04940561563cf22c0b6aedd92eb8c04b08004ef9531"}, + {file = "pyobjc_framework_CoreText-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:f93f0d81edc2fad32ec997bfa87cae3137571dd2c4728f3ea5299979c5081083"}, + {file = "pyobjc_framework_CoreText-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:cef114e352c3404b57ebec9a9b78600754494ccf2ad3dd9c6c29dbf553701269"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1052,9 +1695,14 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-corewlan" version = "9.0.1" description = "Wrappers for the framework CoreWLAN on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CoreWLAN-9.0.1.tar.gz", hash = "sha256:1193f2d06c92ec8afe7438c3110957f599ee39d2ccdfc2fcabb749306faacbae"}, + {file = "pyobjc_framework_CoreWLAN-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:4d26bb108b0489d6a1021f1800bec299993879181f1c37b9b56120fd92931f7f"}, + {file = "pyobjc_framework_CoreWLAN-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:71cf4b4e4dcfa42f436a6269ce8b2b2b8def5a81616a87daf85170ce7bb37692"}, + {file = "pyobjc_framework_CoreWLAN-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:84b2f731594b2afdd0b8b39909818ff70597df9f325712d936bfb5194b153a82"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1064,9 +1712,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-cryptotokenkit" version = "9.0.1" description = "Wrappers for the framework CryptoTokenKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-CryptoTokenKit-9.0.1.tar.gz", hash = "sha256:b2f88362a2a9cc4b2e1df3163a2ad931f8db02a617f8536a630cc5bf6a64774c"}, + {file = "pyobjc_framework_CryptoTokenKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:61fa881fbd0eded09f6aac2e8e1ab695a9074b5569f6dbcd476fac917d48fc1a"}, + {file = "pyobjc_framework_CryptoTokenKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c56284e295f93a4fcab9cd159284cf6c5cbafca153148ee6b7526fbf037627b8"}, + {file = "pyobjc_framework_CryptoTokenKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:8b138df105b38b0c922c498c2e06df30246744de349e66fdd961e42bf8ac3d2f"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1076,9 +1729,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-datadetection" version = "9.0.1" description = "Wrappers for the framework DataDetection on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-DataDetection-9.0.1.tar.gz", hash = "sha256:cfe623dec691e6e58ad9e057173b929f88292860a41aab26033dcad002b4ca57"}, + {file = "pyobjc_framework_DataDetection-9.0.1-py2.py3-none-any.whl", hash = "sha256:5b0bc15a9ceb9dc9bc24717dc293b3e8c1caf0741beef0a479cb6df10039051e"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1088,9 +1744,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-devicecheck" version = "9.0.1" description = "Wrappers for the framework DeviceCheck on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-DeviceCheck-9.0.1.tar.gz", hash = "sha256:e866c3dd80dc91c8d88bd0e8065d9b2c366ee061b5597f1ea6be1a3fc0efd6df"}, + {file = "pyobjc_framework_DeviceCheck-9.0.1-py2.py3-none-any.whl", hash = "sha256:3817406c6923789c586d40f33e3518b085c11080e6459e3a1749998e39e7c577"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1100,9 +1759,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-dictionaryservices" version = "9.0.1" description = "Wrappers for the framework DictionaryServices on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-DictionaryServices-9.0.1.tar.gz", hash = "sha256:c14357e58047ec92f9bd9e3c3bdbf06e66f2b7793300209faab760583d61e074"}, + {file = "pyobjc_framework_DictionaryServices-9.0.1-py2.py3-none-any.whl", hash = "sha256:e2f2fd8d0d833d2a211c0aea601d6291e118ac0e2c5da6445db9903b63f6d197"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1112,9 +1774,14 @@ pyobjc-framework-CoreServices = ">=9.0.1" name = "pyobjc-framework-discrecording" version = "9.0.1" description = "Wrappers for the framework DiscRecording on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-DiscRecording-9.0.1.tar.gz", hash = "sha256:06def981e8c25e6c51e8918eedfb56fa983f2b71f1c7ae43a54f84416dc75d69"}, + {file = "pyobjc_framework_DiscRecording-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:9da94ab4370ed5b5d81e07ab626c7fa497b009e2d6d2918c096263dead797c6a"}, + {file = "pyobjc_framework_DiscRecording-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:0c79273077720bc0bc1a4f76ca3a8ee2f6cccc1e77fc39bf92b935c78bf6cb91"}, + {file = "pyobjc_framework_DiscRecording-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:7f61a356a1e0b7f98c2014714683ec1a1e69a9164b08d48fa2c4fbdaf05b298e"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1124,9 +1791,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-discrecordingui" version = "9.0.1" description = "Wrappers for the framework DiscRecordingUI on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-DiscRecordingUI-9.0.1.tar.gz", hash = "sha256:db61399c2661232df599509db23e3c1ad2175bface2018d9e18e9240b4f181d4"}, + {file = "pyobjc_framework_DiscRecordingUI-9.0.1-py2.py3-none-any.whl", hash = "sha256:e21443da92bd121ea63732ce0367760f422fe9e72a3c210a179b47e34ec6e09f"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1137,9 +1807,12 @@ pyobjc-framework-DiscRecording = ">=9.0.1" name = "pyobjc-framework-diskarbitration" version = "9.0.1" description = "Wrappers for the framework DiskArbitration on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-DiskArbitration-9.0.1.tar.gz", hash = "sha256:22a9f1bdd54822e65795a971f2a5e951ef89817cd6ad06d0ff1981b694942c3e"}, + {file = "pyobjc_framework_DiskArbitration-9.0.1-py2.py3-none-any.whl", hash = "sha256:6609768207e7008693cbb20efaeabfe8342ddbca59d0a90304b4717b3624f04e"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1149,9 +1822,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-dvdplayback" version = "9.0.1" description = "Wrappers for the framework DVDPlayback on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-DVDPlayback-9.0.1.tar.gz", hash = "sha256:8593bbb207ff9287d97ad24e837b88b948ee79bd4f0ae2ae9e7ca449f2e4dc25"}, + {file = "pyobjc_framework_DVDPlayback-9.0.1-py2.py3-none-any.whl", hash = "sha256:c46e58f539659c3619fe66ed52cc3d7105149b83deee6a6360d3b12576cc9471"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1161,9 +1837,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-eventkit" version = "9.0.1" description = "Wrappers for the framework Accounts on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-EventKit-9.0.1.tar.gz", hash = "sha256:d6364f5a8858d4f806248be3ce0e7f30acae3943980ae4801c8d520623b9fed4"}, + {file = "pyobjc_framework_EventKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:714c35bd2dfc3b7ef55ac1d9339cec80762572f064f54a2fbc2d49a7c009692d"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1173,9 +1852,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-exceptionhandling" version = "9.0.1" description = "Wrappers for the framework ExceptionHandling on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ExceptionHandling-9.0.1.tar.gz", hash = "sha256:9070bd892cc325f7f49a134007ffc30a6d2e5caa7a4fe0716bd19622b107e4e0"}, + {file = "pyobjc_framework_ExceptionHandling-9.0.1-py2.py3-none-any.whl", hash = "sha256:2e853b20911dae4532ddc5655602b14ac7d60e4c24b784e07f7879db24b6f179"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1185,9 +1867,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-executionpolicy" version = "9.0.1" description = "Wrappers for the framework ExecutionPolicy on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ExecutionPolicy-9.0.1.tar.gz", hash = "sha256:16bb5e1b26049d5cbf3f66cec40ee0ccb9cbb57594ee9d5abb1e9cde0572d2e5"}, + {file = "pyobjc_framework_ExecutionPolicy-9.0.1-py2.py3-none-any.whl", hash = "sha256:2c86a869846a2daac39117f2989f3b079214a1dcd06e528a73adb5908237a8ad"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1197,9 +1882,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-extensionkit" version = "9.0.1" description = "Wrappers for the framework ExtensionKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ExtensionKit-9.0.1.tar.gz", hash = "sha256:9752522f5e681c2e19519ff8b0bdaad0e48e33e6c5b23bdcec37ef997573a013"}, + {file = "pyobjc_framework_ExtensionKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:dd3c46e459e572485289f8e74c40bc99e8e7157c6fc42faa8a949e1de9cff169"}, + {file = "pyobjc_framework_ExtensionKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:cd94347faf3b1694d3b7d119d6323e3718004430b7aa335732bbb70b8fc1193d"}, + {file = "pyobjc_framework_ExtensionKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:4d75117470968dc8cf6e35dd789b645de78075719f17927c16609892d7d26da0"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1209,9 +1899,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-externalaccessory" version = "9.0.1" description = "Wrappers for the framework ExternalAccessory on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ExternalAccessory-9.0.1.tar.gz", hash = "sha256:533f2a814ab9afcc8594d34f761017d30f0b66518af682fbcafc16b5cd612078"}, + {file = "pyobjc_framework_ExternalAccessory-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:3185689db07ad6389d7c2c80abcc8acf593472aee8d6891bd3e49012c3dad8b2"}, + {file = "pyobjc_framework_ExternalAccessory-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:d3846312bb59181d6f390dbc2ff300665f95a02118fd66c86bd830a623f833e2"}, + {file = "pyobjc_framework_ExternalAccessory-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:0d0d0d139bc35cbe160215d48c3c7712d583f09d135f53099e217b9bce46d010"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1221,9 +1916,17 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-fileprovider" version = "9.0.1" description = "Wrappers for the framework FileProvider on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-FileProvider-9.0.1.tar.gz", hash = "sha256:80405ce146e2556a36a3918f7fa37d60905d9338483cb0521415a10dffb6027e"}, + {file = "pyobjc_framework_FileProvider-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cbc7e424916bd9e2c736b61a9d819f59b3b8de4f95debaf26e766c97f8d24ef8"}, + {file = "pyobjc_framework_FileProvider-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:44d89238c8d9413b3f6c726ceba2c2b9462a847429cb41ee4564028104c7a79d"}, + {file = "pyobjc_framework_FileProvider-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:284bdb82dc0d3c3b41d248691c4e2a8ff0ee820970cf2c359f6aa0b710ae5f58"}, + {file = "pyobjc_framework_FileProvider-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b1cf68dbe1101ba215141f8da3f58a14ca0b8f2faa86b9ad81bb54e36d0afc0e"}, + {file = "pyobjc_framework_FileProvider-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:ff916b7b10bc4e68018276456fd96ceb20e7acd0eafd492c84addd6f96a48ded"}, + {file = "pyobjc_framework_FileProvider-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a46a45c02a848a5b372c7f73a1da739687ceccecd66016cf8fa047680cc3dac2"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1233,9 +1936,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-fileproviderui" version = "9.0.1" description = "Wrappers for the framework FileProviderUI on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-FileProviderUI-9.0.1.tar.gz", hash = "sha256:a93161410e66150131cc32ca99749950be870b47f8f599ea4b112c5125ac1a27"}, + {file = "pyobjc_framework_FileProviderUI-9.0.1-py2.py3-none-any.whl", hash = "sha256:70bddbaa5b81d113b2868c1ef4c0a07e5b37c4da134cf864d4e0c0577df3b9c8"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1245,9 +1951,12 @@ pyobjc-framework-FileProvider = ">=9.0.1" name = "pyobjc-framework-findersync" version = "9.0.1" description = "Wrappers for the framework FinderSync on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-FinderSync-9.0.1.tar.gz", hash = "sha256:1661bac4eda64015f331b15fea394a9e10f4778d0307bb9933b9400de7fbb575"}, + {file = "pyobjc_framework_FinderSync-9.0.1-py2.py3-none-any.whl", hash = "sha256:05dad77c6994a89056932f6c876ad87366169a3f8d9136330f71da88317d9f6b"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1257,9 +1966,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-fsevents" version = "9.0.1" description = "Wrappers for the framework FSEvents on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-FSEvents-9.0.1.tar.gz", hash = "sha256:31643db10d27f712a701ca0864adf78426b19d7b3c56dbf0053d13ab4f2f4ae6"}, + {file = "pyobjc_framework_FSEvents-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:e464f68d5b0aae932fc2c99fe1cdbb70c4892b78d0d5c7ee1c7c2815ad7e1f76"}, + {file = "pyobjc_framework_FSEvents-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:d0903b2f6ae09b5042d5a15539a580d18e6f4532d18e8c0e52f1f4b0c05f9028"}, + {file = "pyobjc_framework_FSEvents-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:69d7ed796024c64418f3e848b03e40dbdaf98bf8c375ed621e5ec64e3775331d"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1269,9 +1983,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-gamecenter" version = "9.0.1" description = "Wrappers for the framework GameCenter on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-GameCenter-9.0.1.tar.gz", hash = "sha256:a3a4e7207bc63ec4a9f522781fe4081bff3d03ebc9d773d2b4f8da788ebb6068"}, + {file = "pyobjc_framework_GameCenter-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:bebd6618c5e1eef6bca9a4024c918f20b83b33cb7b7e212d9c45e635aff3a32a"}, + {file = "pyobjc_framework_GameCenter-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:37f5bc6f62fac8ae66c3711bef62782e78a4d898a82962ce99ae79178dea771b"}, + {file = "pyobjc_framework_GameCenter-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:5bdf3e78cc5549b1ce276c4c45178b6049551a1ab1d7d61660302e30e6f0b562"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1281,9 +2000,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-gamecontroller" version = "9.0.1" description = "Wrappers for the framework GameController on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-GameController-9.0.1.tar.gz", hash = "sha256:1a9c3d30a26a249217599be64ae93a0ee9b331b2e2461a30165c646b2e473cfb"}, + {file = "pyobjc_framework_GameController-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:8e6d2c2d16617acaf66f8f8a0b273014bf851314b4fc0a8af57689f51e279a95"}, + {file = "pyobjc_framework_GameController-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:1dc1dfd3aa154993648654f840ed789b08ffa15eac1a158e9d8d311093c34805"}, + {file = "pyobjc_framework_GameController-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:3c276590b14bbc1e110e54bffaa18dbb4777718ff1ea3371e1ec6559cbcade17"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1293,9 +2017,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-gamekit" version = "9.0.1" description = "Wrappers for the framework GameKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-GameKit-9.0.1.tar.gz", hash = "sha256:dba15ad934f048950fb4b8aeaeb79b9c11575970a5ab696d2f37ccce952f669d"}, + {file = "pyobjc_framework_GameKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:656fe06b0fd818670f272a367a00f864ab4428ea982ca7d3dc398995be744225"}, + {file = "pyobjc_framework_GameKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c3880eac357579d2bbe39711e2f15ae58024755ac945aa398a6ac990b4027bac"}, + {file = "pyobjc_framework_GameKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:afaaee6b63b2545b879105e228c873bcdcba87a0f364603513b13065d4d3400a"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1306,9 +2035,14 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-gameplaykit" version = "9.0.1" description = "Wrappers for the framework GameplayKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-GameplayKit-9.0.1.tar.gz", hash = "sha256:a5419cf0d93dfc3cf3937ffbcdb6bf8a4d0ff0f2bab04e3932ec92428c269195"}, + {file = "pyobjc_framework_GameplayKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:cd7384c49466802fb9d5026fc2b700ae3480ce514998f2459994ba0f93023a47"}, + {file = "pyobjc_framework_GameplayKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:e09d6e6e0b6f271505581158bb3e12336b3714d13b2420460588f91012808cda"}, + {file = "pyobjc_framework_GameplayKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:5f6e8ee5fc81c8e06048da632107b15d2824b55c234af582843463634585aad4"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1319,9 +2053,14 @@ pyobjc-framework-SpriteKit = ">=9.0.1" name = "pyobjc-framework-healthkit" version = "9.0.1" description = "Wrappers for the framework HealthKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-HealthKit-9.0.1.tar.gz", hash = "sha256:b8cc849bbdfff195472775be6872ee630e764fa34a362b8ee1ddfe78c4201099"}, + {file = "pyobjc_framework_HealthKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d0797577219489a3968ae611546e3607e8af7a316ed92004e2992cd05f47ab1b"}, + {file = "pyobjc_framework_HealthKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:8a2277f84f82c928fdede7a065d747b6c40ae9c9dec54ff94fbf199bf3c158b6"}, + {file = "pyobjc_framework_HealthKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:0aacfea4dd1d18f13a6969cd873cc422767d125541975997b46e949f1bb86c90"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1331,9 +2070,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-imagecapturecore" version = "9.0.1" description = "Wrappers for the framework ImageCaptureCore on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ImageCaptureCore-9.0.1.tar.gz", hash = "sha256:03a236cb727269ee274e8aeeb970b1eaad10bae7be1b84167253a34cd155fb27"}, + {file = "pyobjc_framework_ImageCaptureCore-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:f065358499942e98fb2299d22ae035fb1f94ccbe3f73e986d2da2a1dcbff8854"}, + {file = "pyobjc_framework_ImageCaptureCore-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:79bf523781399dd921693f39b29de93a2057ba652cc9bef1ab93bab0da8ae553"}, + {file = "pyobjc_framework_ImageCaptureCore-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:112d1543ce6d3d724b55e2a9fb77ca46126751b145c1ce8c326b74e01821d165"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1343,9 +2087,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-imserviceplugin" version = "9.0.1" description = "Wrappers for the framework IMServicePlugIn on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-IMServicePlugIn-9.0.1.tar.gz", hash = "sha256:8ff9078907ca322329c7b69b5eed5a597d46846c840c1056cee63864bb6da832"}, + {file = "pyobjc_framework_IMServicePlugIn-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:fea273597c67d2dce900cb8a225157131969b77490dd00110fa053121360dbfc"}, + {file = "pyobjc_framework_IMServicePlugIn-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:7989be303a045240d5bf28cbc1ab78d139c751fb96b3579a43372d3aa83d6535"}, + {file = "pyobjc_framework_IMServicePlugIn-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:51e5a68202fa3a4f6160a72a497c97ae5a4d7b951a4092cc3cefba9ec825661b"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1355,9 +2104,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-inputmethodkit" version = "9.0.1" description = "Wrappers for the framework InputMethodKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-InputMethodKit-9.0.1.tar.gz", hash = "sha256:c948359e0abcfd3a2287edc35b149afa7b490e74a32bf08c6020b13e54107e82"}, + {file = "pyobjc_framework_InputMethodKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d280f1638d181b1158462c3c0f8f353597704c762507caa534de614c1223df28"}, + {file = "pyobjc_framework_InputMethodKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:227e1b61e5a0ba2ede32edd39483dade4cdc53a1cc00b5c655d11adc94303e67"}, + {file = "pyobjc_framework_InputMethodKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:675dc977b69ecd8d43b26db62c6d26987691da43adffb55922a00af8cb87e89b"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1367,9 +2121,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-installerplugins" version = "9.0.1" description = "Wrappers for the framework InstallerPlugins on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-InstallerPlugins-9.0.1.tar.gz", hash = "sha256:9697f42c49691e269902be9ce32382e0275fd3e5802219da29bf1973c2a3b017"}, + {file = "pyobjc_framework_InstallerPlugins-9.0.1-py2.py3-none-any.whl", hash = "sha256:77f0277eb9851df5d4c803c136d0d7abd52bd3c5208491ec6af67dd49b77165a"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1379,9 +2136,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-instantmessage" version = "9.0.1" description = "Wrappers for the framework InstantMessage on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-InstantMessage-9.0.1.tar.gz", hash = "sha256:4996b7a0d63dcff710ed3463ee27027586d1d9585efedf608e265465064d0a48"}, + {file = "pyobjc_framework_InstantMessage-9.0.1-py2.py3-none-any.whl", hash = "sha256:c2beda162affa8d08bc0ca6dc4db97aff17b8317db6662b1359028c8a41a1483"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1392,9 +2152,14 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-intents" version = "9.0.1" description = "Wrappers for the framework Intents on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Intents-9.0.1.tar.gz", hash = "sha256:556494335d12cefd7344ac1f6a371d6d0a6a573d876cc82fdbdfd351535fc42e"}, + {file = "pyobjc_framework_Intents-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:f4dd68a4ddb268563d97419b5a3d321043b31249b1c1b41d5a92eb366da24ecb"}, + {file = "pyobjc_framework_Intents-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:bf8b9b0a11ffe5069a7301c2a90bc281fc96ef9538a688a692af7eee6cc03946"}, + {file = "pyobjc_framework_Intents-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:f221a1a8ed684d132f8320c775f3a9d79524babc20a61cd6b0909ac1149f1a2a"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1404,9 +2169,17 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-intentsui" version = "9.0.1" description = "Wrappers for the framework Intents on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-IntentsUI-9.0.1.tar.gz", hash = "sha256:f25a4eb6afa8d7c33450a6e718576178d23af00bad522ca20554bd869bc35038"}, + {file = "pyobjc_framework_IntentsUI-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ebf3afcd76855ac9e9ce843c5bff3a8fe03e0553119647d2f2e80631852f2c34"}, + {file = "pyobjc_framework_IntentsUI-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b31c17715e722637a73855d48f510f0962624969f474d082bd8ba28544beeee5"}, + {file = "pyobjc_framework_IntentsUI-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a698dde16f99fa9de9d25706b8a1190822add03dd2c7a258ccb7732b6fb85498"}, + {file = "pyobjc_framework_IntentsUI-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4aa384a06532182110351b17a99fc6743695585215ca3dd586f7a5d037031e6e"}, + {file = "pyobjc_framework_IntentsUI-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:4873145856cde7b85843f8a8fd7d31122ded7445ffc6e03d06bfdf2988e5c788"}, + {file = "pyobjc_framework_IntentsUI-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b37c72d7957f2fbeed7082ae796f1bb19940494afc65db68146ffdee3aea5ef9"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1416,9 +2189,12 @@ pyobjc-framework-Intents = ">=9.0.1" name = "pyobjc-framework-iosurface" version = "9.0.1" description = "Wrappers for the framework IOSurface on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-IOSurface-9.0.1.tar.gz", hash = "sha256:1fcaf483c0bad50363b03cc154b32e66adbab91151a3856051e6b2570fa8990c"}, + {file = "pyobjc_framework_IOSurface-9.0.1-py2.py3-none-any.whl", hash = "sha256:c06c94b8a69350a9f5d6dfad63b7018387b9d90cb0d2cc90942afad5ed049b34"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1428,9 +2204,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-ituneslibrary" version = "9.0.1" description = "Wrappers for the framework iTunesLibrary on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-iTunesLibrary-9.0.1.tar.gz", hash = "sha256:cd4bdd1ac154b9d279c4d62fc89901392468d1e0e7aa12a5dbcdf6dff5a8c572"}, + {file = "pyobjc_framework_iTunesLibrary-9.0.1-py2.py3-none-any.whl", hash = "sha256:f6400c9fc73308d00a171397875562f1b2cb1d6d999790fc5213f341083df8b9"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1440,9 +2219,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-kernelmanagement" version = "9.0.1" description = "Wrappers for the framework KernelManagement on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-KernelManagement-9.0.1.tar.gz", hash = "sha256:22a536ec5309e96dbbc4345f400b20b9619bff645d4079eba27059d4c026cc10"}, + {file = "pyobjc_framework_KernelManagement-9.0.1-py2.py3-none-any.whl", hash = "sha256:6c8ba8a8cd32039f559e7fa1247709d7e712547479b9e13a0a2f2bf4cc3654ce"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1452,9 +2234,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-latentsemanticmapping" version = "9.0.1" description = "Wrappers for the framework LatentSemanticMapping on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-LatentSemanticMapping-9.0.1.tar.gz", hash = "sha256:942fb8850ffd0056ab55f9fa599bbdd71bb970fa324014de21db83d152608bc9"}, + {file = "pyobjc_framework_LatentSemanticMapping-9.0.1-py2.py3-none-any.whl", hash = "sha256:04a77d254c3692984560455aa917caa813b8dd385114eff347d628a7ef39a5a0"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1464,9 +2249,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-launchservices" version = "9.0.1" description = "Wrappers for the framework LaunchServices on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-LaunchServices-9.0.1.tar.gz", hash = "sha256:d448e7990f0e00994bfa2eb9c1413c5a3e07fec84dd7facfabe1162f2e38a65f"}, + {file = "pyobjc_framework_LaunchServices-9.0.1-py2.py3-none-any.whl", hash = "sha256:81513cb767669ff432e062c41fecef87531a006b9efd534026f63515cd94ecf2"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1476,20 +2264,31 @@ pyobjc-framework-CoreServices = ">=9.0.1" name = "pyobjc-framework-libdispatch" version = "9.0.1" description = "Wrappers for libdispatch on macOS" -category = "main" optional = false python-versions = ">=3.7" - -[package.dependencies] -pyobjc-core = ">=9.0.1" - -[[package]] -name = "pyobjc-framework-linkpresentation" -version = "9.0.1" +files = [ + {file = "pyobjc-framework-libdispatch-9.0.1.tar.gz", hash = "sha256:988c4c8608f2059c8b80ac520bc8d20a46ff85f65c50749110c45df610141fce"}, + {file = "pyobjc_framework_libdispatch-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6cd32fea76165157a623ef8871f83cfa627ea2e878417704d6ac9c284c4211d5"}, + {file = "pyobjc_framework_libdispatch-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2a0f8ba6b498a095edef07e7a55f11dda3a6b37706caaa0f954f297c9aa1122e"}, + {file = "pyobjc_framework_libdispatch-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:906f4e705b40ea878d0a7feddddac85965f9709f7a951c3d5459260d48efd56f"}, + {file = "pyobjc_framework_libdispatch-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0bd94e697e3739eaf093a9b6f5be9a2cc34faa96c66cc21d2c42a996a3b01242"}, + {file = "pyobjc_framework_libdispatch-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:7f9798c599acdd21251f57970bafabccc7fa723ae2a6d1fbe82f99ecfa3f7cf9"}, + {file = "pyobjc_framework_libdispatch-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:10a877b31960ee958873e5228f7b588c664014be8ad4d13a76a764482a18bf41"}, +] + +[package.dependencies] +pyobjc-core = ">=9.0.1" + +[[package]] +name = "pyobjc-framework-linkpresentation" +version = "9.0.1" description = "Wrappers for the framework LinkPresentation on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-LinkPresentation-9.0.1.tar.gz", hash = "sha256:f3f6935ded8ff58b41fb31b149535b7838ca7a575e38949e039d226749227bdc"}, + {file = "pyobjc_framework_LinkPresentation-9.0.1-py2.py3-none-any.whl", hash = "sha256:50a8fc89faeea0974dfc3d0201ea3c04c3a5396806077b42548daa1542b3bac5"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1500,9 +2299,12 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-localauthentication" version = "9.0.1" description = "Wrappers for the framework LocalAuthentication on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-LocalAuthentication-9.0.1.tar.gz", hash = "sha256:f440325d33b4ce87200f876940c6d89c91a80bdbfc4926d174a5f11cd664c3dd"}, + {file = "pyobjc_framework_LocalAuthentication-9.0.1-py2.py3-none-any.whl", hash = "sha256:e9daac430507f2fc245a3b714810f52873284905bb8e2f4fb87980dbe659ec34"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1513,9 +2315,12 @@ pyobjc-framework-Security = ">=9.0.1" name = "pyobjc-framework-localauthenticationembeddedui" version = "9.0.1" description = "Wrappers for the framework LocalAuthenticationEmbeddedUI on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-LocalAuthenticationEmbeddedUI-9.0.1.tar.gz", hash = "sha256:cdfe1b35b7ffa4c57113c5aced5536b121a2edd2ef1ac7014cf23d25e354c524"}, + {file = "pyobjc_framework_LocalAuthenticationEmbeddedUI-9.0.1-py2.py3-none-any.whl", hash = "sha256:ed8e3ee8330ae973d76297b37476358e45b0e8e47129c2839a52e3393e9ccd79"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1526,9 +2331,12 @@ pyobjc-framework-LocalAuthentication = ">=9.0.1" name = "pyobjc-framework-mailkit" version = "9.0.1" description = "Wrappers for the framework MailKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MailKit-9.0.1.tar.gz", hash = "sha256:5029867ff09c3ff33d1754a3d57c8c02d20810fab75821432e9bb5e9dea71629"}, + {file = "pyobjc_framework_MailKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:65803da7e051e5bd7cae8c0eb76f0098a73ffdb2d288f9e59af578bb8ac7a15d"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1538,9 +2346,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-mapkit" version = "9.0.1" description = "Wrappers for the framework MapKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MapKit-9.0.1.tar.gz", hash = "sha256:70a0f31276ff51e5ff2d6657681b38121ad5e893db3bb170a2f4d7a22458622b"}, + {file = "pyobjc_framework_MapKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d7ca9b3c8f50a34f0397f2d533963e540f93532c46434bac9dbe282e1bd296b6"}, + {file = "pyobjc_framework_MapKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:125977a927621f6391473e42c13a5eeced43199a995c6de133701402d2af1077"}, + {file = "pyobjc_framework_MapKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:a645fd0b6767e93baa65b5628e2d1912f9967c057596d4d5df3c9aaec6c40cb0"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1552,9 +2365,12 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-mediaaccessibility" version = "9.0.1" description = "Wrappers for the framework MediaAccessibility on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MediaAccessibility-9.0.1.tar.gz", hash = "sha256:c6d864b0fa65d157ce1b621f5cde4023c20d1242cf9eafb2a5e54b021c1789a8"}, + {file = "pyobjc_framework_MediaAccessibility-9.0.1-py2.py3-none-any.whl", hash = "sha256:dd191bb58ed82c635859f8011e44fd39ed6aa76b0e92ebf75b398132cd3413eb"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1564,9 +2380,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-medialibrary" version = "9.0.1" description = "Wrappers for the framework MediaLibrary on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MediaLibrary-9.0.1.tar.gz", hash = "sha256:33115e19393fe807c37989eaa7f947a4d338fab2e10d0864b4a9b0f65edbdc89"}, + {file = "pyobjc_framework_MediaLibrary-9.0.1-py2.py3-none-any.whl", hash = "sha256:4a13451b9ba84dda47d98724765147d616eb66f02649074dcae8cd8392c9ee35"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1577,9 +2396,12 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-mediaplayer" version = "9.0.1" description = "Wrappers for the framework MediaPlayer on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MediaPlayer-9.0.1.tar.gz", hash = "sha256:d070e6cbc408fee2a086b467982489acf9665cdd2cd8d32bb72b4ed75388d5d5"}, + {file = "pyobjc_framework_MediaPlayer-9.0.1-py2.py3-none-any.whl", hash = "sha256:3a97addaef70959c0a9eaa820c95cfa61b0a0b080a3f159e3b68953326dbf621"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1589,9 +2411,14 @@ pyobjc-framework-AVFoundation = ">=9.0.1" name = "pyobjc-framework-mediatoolbox" version = "9.0.1" description = "Wrappers for the framework MediaToolbox on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MediaToolbox-9.0.1.tar.gz", hash = "sha256:7a6e32e9b3d6e641a982ad7ab00b6b750ea8c1033927d0ba4042c9a0eb2ae9f2"}, + {file = "pyobjc_framework_MediaToolbox-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:252bdf27cc29a3c2a9accc2f967f07fcbbe142243648e8cad6b17f5a5a2b0f05"}, + {file = "pyobjc_framework_MediaToolbox-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:f54e0596e294f25a268bdea89afa381390b72156e99771ff6e0a67e1dc34c1aa"}, + {file = "pyobjc_framework_MediaToolbox-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:e48ff50213a995c04e49d2ff1400bf327bb8d0e30e2f3c30d500368c7befda08"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1601,9 +2428,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-metal" version = "9.0.1" description = "Wrappers for the framework Metal on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Metal-9.0.1.tar.gz", hash = "sha256:18ab8fb1ce2255b3527c2a0f3dee34739f5c4a0c9c11b4dcb7336d66a19c230c"}, + {file = "pyobjc_framework_Metal-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:3df130e57be86236f8d1e46a60b57d17a279da5ae492df8dc2d1c9e44507021e"}, + {file = "pyobjc_framework_Metal-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:92fc4160af1edf3404a2bec4b103730e4219f0172ac9e9744a41243edf7ab17b"}, + {file = "pyobjc_framework_Metal-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:b4b3988c364e5f95fc1c28ca56c0dc373978b1dac4c0c1febfa792fb825ff5cc"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1613,9 +2445,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-metalfx" version = "9.0.1" description = "Wrappers for the framework MetalFX on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MetalFX-9.0.1.tar.gz", hash = "sha256:4c3657c10054f882788c9f9ced2fb8a43501229b0ef4a77070f02f38b021d760"}, + {file = "pyobjc_framework_MetalFX-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:458059dba65a792958a5c11c2fd72bd7c7eb979b11a9aa945fe0d64812687078"}, + {file = "pyobjc_framework_MetalFX-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:f6de0a81dc0eb89f584d48dd5189c083fe2fb173a86e9281533d99e8708aef96"}, + {file = "pyobjc_framework_MetalFX-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:37eabc98d97f9eef3190f105d0f8b4fd434b292e91d70ade67c5b07a6912e0d1"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1625,9 +2462,14 @@ pyobjc-framework-Metal = ">=9.0.1" name = "pyobjc-framework-metalkit" version = "9.0.1" description = "Wrappers for the framework MetalKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MetalKit-9.0.1.tar.gz", hash = "sha256:dc6087557e83d67adb907976d8c22954c8e984488ceed773cecffc9cc04e897e"}, + {file = "pyobjc_framework_MetalKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:fae7dc49e8f71bd8974532ed00ac69431b4ac4cc8aa10eb2c3299ba7dee31b08"}, + {file = "pyobjc_framework_MetalKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:148cd5eb0656f7681360f529804321e2af0e4fe9f3a1bd6c02e84e42a9baaabd"}, + {file = "pyobjc_framework_MetalKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:8dfccfe2ceeaea6074ec6a09f576ab722eefa6eaf1343df78e04e864b05be1fd"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1638,9 +2480,14 @@ pyobjc-framework-Metal = ">=9.0.1" name = "pyobjc-framework-metalperformanceshaders" version = "9.0.1" description = "Wrappers for the framework MetalPerformanceShaders on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MetalPerformanceShaders-9.0.1.tar.gz", hash = "sha256:ecddfef23bbdd4f9942bdeabbcbc037c7256e49ed4646707672cf977e00f92c1"}, + {file = "pyobjc_framework_MetalPerformanceShaders-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:69029e3cea62652e3b43d60b6f778b4a9f50c57764d7022b09727b711bbea347"}, + {file = "pyobjc_framework_MetalPerformanceShaders-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:7d882e94a5357dd4e99a9c106965fda8bef2fdab7d93966cc98516834cc02959"}, + {file = "pyobjc_framework_MetalPerformanceShaders-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:704fa3c9b7d66a0708969da09d9f201f6aa316c763691a9420055500ce0dbbab"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1650,9 +2497,12 @@ pyobjc-framework-Metal = ">=9.0.1" name = "pyobjc-framework-metalperformanceshadersgraph" version = "9.0.1" description = "Wrappers for the framework MetalPerformanceShadersGraph on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MetalPerformanceShadersGraph-9.0.1.tar.gz", hash = "sha256:0b8f58b824d01152c2430d8329e94792cf75a535930501326a3a4eaf79b6c581"}, + {file = "pyobjc_framework_MetalPerformanceShadersGraph-9.0.1-py2.py3-none-any.whl", hash = "sha256:83ed5ed80d4fc94771d709a6b7e6534ab14e394a85488f9f649bd7c662bf3432"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1662,9 +2512,17 @@ pyobjc-framework-MetalPerformanceShaders = ">=9.0.1" name = "pyobjc-framework-metrickit" version = "9.0.1" description = "Wrappers for the framework MetricKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MetricKit-9.0.1.tar.gz", hash = "sha256:81260069f8319ecf402968364ebe5af683e568f74cdb6d0005043238473462dc"}, + {file = "pyobjc_framework_MetricKit-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:674a42802d156870c5bb1c59410963e77d4c0289d56e5a0911706a84dd085c1f"}, + {file = "pyobjc_framework_MetricKit-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ce921bc9f52f7aa7f5fe64d0b2b9ce07125e90b36310d33a359bfad28844228d"}, + {file = "pyobjc_framework_MetricKit-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:9a9b50f58ef8c2725f4adfec24bf43ff86038f48c7810bdeaf5c25e1b0667549"}, + {file = "pyobjc_framework_MetricKit-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3acbe3e0c70e72c3da7e2400686aa29d0260eb0e7b5c476ce5d47c6d008a41e9"}, + {file = "pyobjc_framework_MetricKit-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:87a3036da0c89775cd47465c1a70a9e609ae1cba19a1b1d0370edb253eb26016"}, + {file = "pyobjc_framework_MetricKit-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f8c956eaed94e5d7ea2294a8108e0479f73d2173bd704bf7a5e17b4032cadc43"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1674,9 +2532,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-mlcompute" version = "9.0.1" description = "Wrappers for the framework MLCompute on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MLCompute-9.0.1.tar.gz", hash = "sha256:fd02e90f0e18999decaca7e647be64b40a8d30bf47b3d90ddf7b322b6c9315b4"}, + {file = "pyobjc_framework_MLCompute-9.0.1-py2.py3-none-any.whl", hash = "sha256:e1f37f7486e63dfbcdc3059bd52654e29ec3497e89e023eeba517d7c3b6dca1c"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1686,9 +2547,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-modelio" version = "9.0.1" description = "Wrappers for the framework ModelIO on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ModelIO-9.0.1.tar.gz", hash = "sha256:3ab77928b28497bcd1fd4b17bf32fb9b16dbe385344c2ed33ea259770c6b2709"}, + {file = "pyobjc_framework_ModelIO-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:9bdc622e7f503bd4bb69b38ae6c4494aac8008b9556d4ee912ff8771296383af"}, + {file = "pyobjc_framework_ModelIO-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:3359a711f02ae323174da0d6bb3e50d41cb9907df019ebd232d8375096d9a46c"}, + {file = "pyobjc_framework_ModelIO-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:2c1b6f9f30847774a9b810346f1d9d7acc59bc83723e04857706ea725b464fa5"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1699,9 +2565,14 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-multipeerconnectivity" version = "9.0.1" description = "Wrappers for the framework MultipeerConnectivity on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-MultipeerConnectivity-9.0.1.tar.gz", hash = "sha256:8d47607dddb5e13a64e27a7a23194573c6d478f9c8e27d1c4283949fc6adfdad"}, + {file = "pyobjc_framework_MultipeerConnectivity-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:acc3db2f21021f2e30115619f819fb392500aae27dbe4b23ad0eff37d8a44365"}, + {file = "pyobjc_framework_MultipeerConnectivity-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c4ac277625c7f7495f248a81971f5ad7cf171420704082a49191b174903421e3"}, + {file = "pyobjc_framework_MultipeerConnectivity-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:6112d1b7fb5def73b730d37f71b5efc278fb01a3366f9fd2af38fd388009476a"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1711,9 +2582,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-naturallanguage" version = "9.0.1" description = "Wrappers for the framework NaturalLanguage on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-NaturalLanguage-9.0.1.tar.gz", hash = "sha256:89f880ecd93fc7e4e6a82fd9dbc99f75ae0526fb2e5edfb59f7ec2ba5568c919"}, + {file = "pyobjc_framework_NaturalLanguage-9.0.1-py2.py3-none-any.whl", hash = "sha256:6791885064044a769d0324c676e9e2c0e66bd8e13daef201ba06562077885082"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1723,9 +2597,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-netfs" version = "9.0.1" description = "Wrappers for the framework NetFS on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-NetFS-9.0.1.tar.gz", hash = "sha256:da9c0ee6f92dbde748c2526d7c08cb1b00a40af93b8928564d2a1213bd223d20"}, + {file = "pyobjc_framework_NetFS-9.0.1-py2.py3-none-any.whl", hash = "sha256:30cce80d89a7e28e7139b7b46ef7df76f8417e277cdcfe87366666a76d94163a"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1735,9 +2612,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-network" version = "9.0.1" description = "Wrappers for the framework Network on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Network-9.0.1.tar.gz", hash = "sha256:51840027f24f555249db93261b111173408a2736c9aabad4732e7b74117f12cf"}, + {file = "pyobjc_framework_Network-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:8aa43eff5491821398248c0493b8d64769ebe1556aadbcdcc69a1a0a3177aacb"}, + {file = "pyobjc_framework_Network-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:62163f8af137dd8607c9ddf774495cad175d74ae4d2ba04e02cfaf061428445a"}, + {file = "pyobjc_framework_Network-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:43c9d01ea2b96291b0a0f6714a2c9c934ca698fbdb7d733769bae4f59fedeb3d"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1747,9 +2629,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-networkextension" version = "9.0.1" description = "Wrappers for the framework NetworkExtension on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-NetworkExtension-9.0.1.tar.gz", hash = "sha256:a6de4020f52eda61cfb86260782cd547d0d701702ce1d90edd497a155c0157e9"}, + {file = "pyobjc_framework_NetworkExtension-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d9ee62178d792ad55912db60e05b3d1ac4d610dbe57f8a05b886fb23bd4a9286"}, + {file = "pyobjc_framework_NetworkExtension-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:720db94435573de4179be6f02e99c37f6e84395c08ee85bb625b32e3a3b8d91b"}, + {file = "pyobjc_framework_NetworkExtension-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:4a9ee71697693b763e97196a9ff0d262a1b2ed3670a9aff98eeb8d26609eb7b5"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1759,9 +2646,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-notificationcenter" version = "9.0.1" description = "Wrappers for the framework NotificationCenter on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-NotificationCenter-9.0.1.tar.gz", hash = "sha256:24331121e8dd0d7f18ce04a2d696922fe87494426a7903955b413572a6b2096b"}, + {file = "pyobjc_framework_NotificationCenter-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:9ee6d213b27764121c925ccfeb1d5306e0e6b76c32af25a62ad44af2db9b88dd"}, + {file = "pyobjc_framework_NotificationCenter-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:62802484c06b53bf1ec23adec115b44a64f2d3aaa0742e4ce7094d3a65b2a3a6"}, + {file = "pyobjc_framework_NotificationCenter-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:133f199bf52b3b048e8bc6d87f2a9a2adaa2f5a44ce9c88214cabe5e63cfb04f"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1771,9 +2663,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-opendirectory" version = "9.0.1" description = "Wrappers for the framework OpenDirectory on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-OpenDirectory-9.0.1.tar.gz", hash = "sha256:89db260295add0ec107980b7593ce06931f3916c0f7fdb92788fdacbe9cd95de"}, + {file = "pyobjc_framework_OpenDirectory-9.0.1-py2.py3-none-any.whl", hash = "sha256:2235245f1bf157cc956c1e88fdff6906ff7568c2f7d91622b2e2ab66a8c5c81f"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1783,9 +2678,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-osakit" version = "9.0.1" description = "Wrappers for the framework OSAKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-OSAKit-9.0.1.tar.gz", hash = "sha256:c20b9464f5ea0945f8f1b1eaeb0e4358b070854cebd6ce87d772a6c9dc0e8ccd"}, + {file = "pyobjc_framework_OSAKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:061831f13ac75ad3ac9a22df550f651bfcaa983ec3d6a390867fed9df86e716c"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1795,9 +2693,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-oslog" version = "9.0.1" description = "Wrappers for the framework OSLog on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-OSLog-9.0.1.tar.gz", hash = "sha256:964499ffc06ba3b347ef8a96d99a882ee5b5abdbc55c17722344c1d4535ec4f9"}, + {file = "pyobjc_framework_OSLog-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:63972a28a6b0268482a6f56f5f36bd31cc6a8680275d2455811514a1142aa838"}, + {file = "pyobjc_framework_OSLog-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2c66baef93700512d376e79c2e48e4407499c263c20654993b6c883ac15618e1"}, + {file = "pyobjc_framework_OSLog-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:934d952ade3571644d7295d3ac91f25427dccd319f4a2c822cc1e58969e64e86"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1809,9 +2712,14 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-passkit" version = "9.0.1" description = "Wrappers for the framework PassKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-PassKit-9.0.1.tar.gz", hash = "sha256:3d422c41465baa6a9e7f0f4e85cb8dc773103dcbee1d284ca90ce49d036540ae"}, + {file = "pyobjc_framework_PassKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:962ce7609227a5eb36bf7aaa00c115fa9cc9663f4f7b4adede7a2508ce894d77"}, + {file = "pyobjc_framework_PassKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:29eed82852d998eeeb97effeef7d3080c6f36f4c7da64abe3ffd4cd3d2a2a00d"}, + {file = "pyobjc_framework_PassKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:10f9082a4328889ef71072d84d519411a44e1d7e79b78db7b62ebcf850e5eb5e"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1821,9 +2729,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-pencilkit" version = "9.0.1" description = "Wrappers for the framework PencilKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-PencilKit-9.0.1.tar.gz", hash = "sha256:b2f0e8fca577f41e696389bc2571e316382aab22183932180f621c413d7caa9f"}, + {file = "pyobjc_framework_PencilKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:d5d96757ca9170a373af4e5cc52d791aefe3a4f9e6d09034459d684e61aadf37"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1833,9 +2744,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-photos" version = "9.0.1" description = "Wrappers for the framework Photos on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Photos-9.0.1.tar.gz", hash = "sha256:26bb7e2e92deb52d1641ae61faa095ef06dded2d245e00d0fe8be651e062f378"}, + {file = "pyobjc_framework_Photos-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:3618b76a74f1acb9cb18b3b2aa314ff0f2bf8d080682b9a177e03ea8fe9121f0"}, + {file = "pyobjc_framework_Photos-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:abf94d9d0aae89e6f93a22b926b5ddba21da42a1e23989b7824e649a0397d77b"}, + {file = "pyobjc_framework_Photos-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:c5a2db5570e65772e5b5ef13cbfb6298a0f6be8794d9f516cc26dda7c9047fd0"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1845,9 +2761,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-photosui" version = "9.0.1" description = "Wrappers for the framework PhotosUI on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-PhotosUI-9.0.1.tar.gz", hash = "sha256:9fe98cb87dc2547612ae339f7d239c62eec7736e0cc24de2bb572adb3c5df2a8"}, + {file = "pyobjc_framework_PhotosUI-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:4dcd0b4a2de49033778090316eef1c180c378527009dbb14b75ee35094d58430"}, + {file = "pyobjc_framework_PhotosUI-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:1282d95844c474f3b59320c6860561d7b30fe6a5d4b36fc635f41892ab7dad96"}, + {file = "pyobjc_framework_PhotosUI-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:736b1cdf8de7f952d9742f5587371e04dc80217847166bcbfb26603f8c8a2a90"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1857,9 +2778,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-preferencepanes" version = "9.0.1" description = "Wrappers for the framework PreferencePanes on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-PreferencePanes-9.0.1.tar.gz", hash = "sha256:cf15472798ba16f0097326de1bb42e46f78b6c40447f528fe732cfee500e13a1"}, + {file = "pyobjc_framework_PreferencePanes-9.0.1-py2.py3-none-any.whl", hash = "sha256:3895ad636420cff1f4f1d7e4bad566e0b918a270e5cca0532f45010a61211fda"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1869,9 +2793,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-pubsub" version = "9.0.1" description = "Wrappers for the framework PubSub on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-PubSub-9.0.1.tar.gz", hash = "sha256:18c96b948e4575c26f4b43e5532755d31b9228bd00c5d39b2977dc67dd47361a"}, + {file = "pyobjc_framework_PubSub-9.0.1-py2.py3-none-any.whl", hash = "sha256:7946f9a7cefc930518763766c540a79aa93a254e6f7edb80452656da2324d297"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1881,9 +2808,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-pushkit" version = "9.0.1" description = "Wrappers for the framework PushKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-PushKit-9.0.1.tar.gz", hash = "sha256:444102fce2244cf8fc3853848707643c4bf204e60bf720687da69fc9982efef3"}, + {file = "pyobjc_framework_PushKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:80da0335ec9b9dfa21b12528e1a84864e6d90b6cd203084b53cbfd88b8c5a347"}, + {file = "pyobjc_framework_PushKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:f87ad6fd0698410dc4df71a6a2bfc157816c3b53c8819bf7aeb1863e56527431"}, + {file = "pyobjc_framework_PushKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:7f5ec168557fe93d3fa3cb37fba2e49f83c04c8b31ca14783bfff41544a41f7a"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1893,9 +2825,17 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-quartz" version = "9.0.1" description = "Wrappers for the Quartz frameworks on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Quartz-9.0.1.tar.gz", hash = "sha256:7e2e37fc5c01bbdc37c1355d886e6184d1977043d5a05d1d956573fa8503dac3"}, + {file = "pyobjc_framework_Quartz-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:13a546a2af7c1c5c2bbf88cce6891896a449e92466415ad14d9a5ee93fba6ef3"}, + {file = "pyobjc_framework_Quartz-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:93ee6e339ab6928115a92188a0162ec80bf62cd0bd908d54695c1b9f9381ea45"}, + {file = "pyobjc_framework_Quartz-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:066ffbe26de1456f79a6d9467dabd6a3b9ef228318a0ba3f3fedbdbc0e2d3444"}, + {file = "pyobjc_framework_Quartz-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9b553be6ef672e0886b0d2c77d1841b1a942c7b1dc9a67f6e1376dc5493513"}, + {file = "pyobjc_framework_Quartz-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:7b39f85d0b747b0a13a11d0d538001b757c82d05e656eab437167b5b118307df"}, + {file = "pyobjc_framework_Quartz-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0bedb6e1b7789d5b24fd5c790f0d53e4c62930313c97a891068bfa0e966ccc0b"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1905,9 +2845,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-quicklookthumbnailing" version = "9.0.1" description = "Wrappers for the framework QuickLookThumbnailing on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-QuickLookThumbnailing-9.0.1.tar.gz", hash = "sha256:72ca8581820e4a431e9518cddcb0b00c3a1d0c234dfd996b3969d3e6208e1cdb"}, + {file = "pyobjc_framework_QuickLookThumbnailing-9.0.1-py2.py3-none-any.whl", hash = "sha256:1cac31fec11adb108357591856b07602812358f9adbb0e7611644a1e3d7d6ef4"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1918,9 +2861,14 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-replaykit" version = "9.0.1" description = "Wrappers for the framework ReplayKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ReplayKit-9.0.1.tar.gz", hash = "sha256:6242ca6f61458f5d0aea53a8d0ec5dc1bf32bce018a169b8293c17a0b7ba0e6b"}, + {file = "pyobjc_framework_ReplayKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:ab076969b7b4996d2d289cbdb4704ada202679e4c9b87cc07f3786d1f6b727b5"}, + {file = "pyobjc_framework_ReplayKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:9bf2dbaac9241dfcf6b353a4b8feef9839cf71cb483a458ffb3dc72ffc435cc3"}, + {file = "pyobjc_framework_ReplayKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:15383b58d767776cd1c1ea843d0148202d133947acd812ccd275cbb2a438ea4e"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1930,9 +2878,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-safariservices" version = "9.0.1" description = "Wrappers for the framework SafariServices on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-SafariServices-9.0.1.tar.gz", hash = "sha256:a6433583192e30f7f70b0d3282237389f56bfc1ab3ac00fc616606b869e9e0d8"}, + {file = "pyobjc_framework_SafariServices-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:3ac96bc34b7b1075ba28e237e5b2c014fcf4d4d9b777e666af318204f57e290e"}, + {file = "pyobjc_framework_SafariServices-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:38d368c1369141489b0eab7dccf9c42fdf000909bace79f8d9f2dbbec2b2ae96"}, + {file = "pyobjc_framework_SafariServices-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:d5860e055611aba04301731ae16562b58848dc19c42d299db28b544acfeb4c57"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1942,9 +2895,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-safetykit" version = "9.0.1" description = "Wrappers for the framework SafetyKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-SafetyKit-9.0.1.tar.gz", hash = "sha256:afa2b0012555c9f5b390d1fd8d4283bcb0ede09c9b109f5fdc4143e103a12627"}, + {file = "pyobjc_framework_SafetyKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:71c771813cb2ff83725e2abe9d138ca45eeb2efc05e7135dd5396456e2ba5265"}, + {file = "pyobjc_framework_SafetyKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:811d9a9546a4a1515cba455cdc45e04fba0bd4a0500c5c945edbeb0b9e802647"}, + {file = "pyobjc_framework_SafetyKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:56580f6298630a01b044349aad0ad5cb0e25dd299d7a6b3f053c7501ce37e6f1"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1955,9 +2913,14 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-scenekit" version = "9.0.1" description = "Wrappers for the framework SceneKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-SceneKit-9.0.1.tar.gz", hash = "sha256:55861c560bfc987236100e68e4ecd39155888492e392a4caa78991e314f86f59"}, + {file = "pyobjc_framework_SceneKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:bfdeae0b0c6e5efaca3341953b0e209af9bc9220489adc7d6b48fef8b064e8e2"}, + {file = "pyobjc_framework_SceneKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:36833dc44b0809f3dd15649fa64c7092406bfe61b1b88f1022c429fbaf29b990"}, + {file = "pyobjc_framework_SceneKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:cc1dc6fd03396bfb6b4e81bcf95b4660ac4637bde68a038d1256856064f985d3"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1968,9 +2931,17 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-screencapturekit" version = "9.0.1" description = "Wrappers for the framework ScreenCaptureKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ScreenCaptureKit-9.0.1.tar.gz", hash = "sha256:4fc0b5701b69ce218a574749df561e091b3a36f53450ed66386c6eac2c8d1c7b"}, + {file = "pyobjc_framework_ScreenCaptureKit-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:defc0763bcc627488546c89d1f17147a9416df918a0eb7ce6846f3d48c6ded1f"}, + {file = "pyobjc_framework_ScreenCaptureKit-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45dfaaa2cab263b4f2799d4329cd9062f28c51466d120152225b45d82ca87824"}, + {file = "pyobjc_framework_ScreenCaptureKit-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:33964a34849ccaabb41cfacc969290f3c45f4ad6c82362745afa3db4d793eb59"}, + {file = "pyobjc_framework_ScreenCaptureKit-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e2055759c3dca6b9d6778d763fe7bebdc62787b1f8d7d51c73b81dd58e0b633d"}, + {file = "pyobjc_framework_ScreenCaptureKit-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:377a84085b036e0f9ab268ef0587be013285a8f3254f16f4af37faaa00d58bb8"}, + {file = "pyobjc_framework_ScreenCaptureKit-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:519460f5a905ecf2d84758b1fe0895def4860cb3b2410aa47ae19e1f366b0859"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1980,9 +2951,14 @@ pyobjc-framework-CoreMedia = ">=9.0.1" name = "pyobjc-framework-screensaver" version = "9.0.1" description = "Wrappers for the framework ScreenSaver on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ScreenSaver-9.0.1.tar.gz", hash = "sha256:632a1fb94105554d53a2b329fdf47f9fd1ccfe6401d40d7be4b87312f3ec1f94"}, + {file = "pyobjc_framework_ScreenSaver-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:b63761613e000d19325f6f0791c816ae237235388b4074039077903630dd6e4e"}, + {file = "pyobjc_framework_ScreenSaver-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:7621fda2359091344641f608c23d184027ac3c3930aff3c474ab40c2882683d4"}, + {file = "pyobjc_framework_ScreenSaver-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:8d653e98af35a7d72c4be628577bd70827c88e475f830f464e4c659c7fd20165"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -1992,9 +2968,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-screentime" version = "9.0.1" description = "Wrappers for the framework ScreenTime on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ScreenTime-9.0.1.tar.gz", hash = "sha256:04dc7c49a91b54fcd529fa5e453031f9b80c0fa11c3500db62c72019df487fcc"}, + {file = "pyobjc_framework_ScreenTime-9.0.1-py2.py3-none-any.whl", hash = "sha256:39d52381a07fd1933c4a38fe9497a19e83c0b4d5384601427c4c8dd49643bdb3"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2004,9 +2983,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-scriptingbridge" version = "9.0.1" description = "Wrappers for the framework ScriptingBridge on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ScriptingBridge-9.0.1.tar.gz", hash = "sha256:2ae301056dfe2e6d338da2523d29a08a4b0edb0bf547efa94e283b2022a8e5d8"}, + {file = "pyobjc_framework_ScriptingBridge-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:bee5273baf962cb7ba754a2e859d4d719489c482c7b7db2cad76b318ce6ab42c"}, + {file = "pyobjc_framework_ScriptingBridge-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:3e1d3c9160fdad19f1390a85e10f4e2d79b71371bd2d4eca22243e10cf2373c7"}, + {file = "pyobjc_framework_ScriptingBridge-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:60343aaa89421b8ca3cff7d3da802e9b852a41ab0e787358d4a6db3df548747e"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2016,9 +3000,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-searchkit" version = "9.0.1" description = "Wrappers for the framework SearchKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-SearchKit-9.0.1.tar.gz", hash = "sha256:dfcd1b0281a6aabf717be3ce787fc3f28174e8251eac2c12183d708c2a98ca95"}, + {file = "pyobjc_framework_SearchKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:7ea06eed275da1faf4da352fdddf073ee15855b26019cc7b0641516a5399893b"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2028,9 +3015,17 @@ pyobjc-framework-CoreServices = ">=9.0.1" name = "pyobjc-framework-security" version = "9.0.1" description = "Wrappers for the framework Security on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Security-9.0.1.tar.gz", hash = "sha256:d2093debe7467d85dd7ecef130d592abe6c13ffdbaf943d6624bae4a081046e0"}, + {file = "pyobjc_framework_Security-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4e7d01fa5d023497f5d42f2e8b0eb9c204ebfcb33301f23f6745ab69e11d06a7"}, + {file = "pyobjc_framework_Security-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:147071f8791bce15a4a8a52c1b2e33640cc2eecc6ca465746339e6a1476628d2"}, + {file = "pyobjc_framework_Security-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6ef7bdc1ec30e096c0955351d866cdead2b0de23353b9c2e4bab33b02b1820e3"}, + {file = "pyobjc_framework_Security-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0a84eaa1a71ae043ba46982ad4860f3ad065e4142770f485cbc6a7b9eb8a1bf6"}, + {file = "pyobjc_framework_Security-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:95f37d0f78766e125b4c1c5b98c87feff66d55195e828882dc6b1affe9398d68"}, + {file = "pyobjc_framework_Security-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:68ed6fbcd772a8056f54d1d4792aa6e4b9531de2749fee6118b9c977e6fbce65"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2040,9 +3035,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-securityfoundation" version = "9.0.1" description = "Wrappers for the framework SecurityFoundation on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-SecurityFoundation-9.0.1.tar.gz", hash = "sha256:d054c7bf831735f533c6b697c53a7d62098b8c7505050e1d261f55dd4ed97c87"}, + {file = "pyobjc_framework_SecurityFoundation-9.0.1-py2.py3-none-any.whl", hash = "sha256:548ffe20222aecafbe8bdb4b838cb9cb4a91b1780b2e88babd42899ecf2b1fd8"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2053,9 +3051,14 @@ pyobjc-framework-Security = ">=9.0.1" name = "pyobjc-framework-securityinterface" version = "9.0.1" description = "Wrappers for the framework SecurityInterface on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-SecurityInterface-9.0.1.tar.gz", hash = "sha256:2971724b3ea089275046dc0ffd1864259cd68e5e2a37da1c02718833e4631e22"}, + {file = "pyobjc_framework_SecurityInterface-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:35bfc10555f8ad7e2e81b75707661eff66624538345fbe85db51312331e0c2b0"}, + {file = "pyobjc_framework_SecurityInterface-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:f2065c7797380380d749eb41384c76982928bad9877c0491b5f2a8f506050ee7"}, + {file = "pyobjc_framework_SecurityInterface-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:30224f539ae65eea371021a228b6551263a3aa30c5915e559d8f698f91a5df1b"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2066,9 +3069,12 @@ pyobjc-framework-Security = ">=9.0.1" name = "pyobjc-framework-servicemanagement" version = "9.0.1" description = "Wrappers for the framework ServiceManagement on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ServiceManagement-9.0.1.tar.gz", hash = "sha256:4499ad8e4422d7fa3d8c274ff8f4f90e6839374ef2eec8f8fdca05e2b3d56829"}, + {file = "pyobjc_framework_ServiceManagement-9.0.1-py2.py3-none-any.whl", hash = "sha256:a3c4ff85036f43c9f3ee41a81ae5d9f0ce75bb3f8b974bf8a613c2da6008f454"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2078,9 +3084,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-sharedwithyou" version = "9.0.1" description = "Wrappers for the framework SharedWithYou on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-SharedWithYou-9.0.1.tar.gz", hash = "sha256:78637b858aeb99ec0830813f945e15db259c9cee0b916df371910b28af275008"}, + {file = "pyobjc_framework_SharedWithYou-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d2d19ad6eaa425c79e35863bf47de1605731d9e863d3b5b7db6d37030545a53b"}, + {file = "pyobjc_framework_SharedWithYou-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:19e69a7e2a98386f77d3bac076effc0b1edf00ece485526250b3364b51a9a037"}, + {file = "pyobjc_framework_SharedWithYou-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:dfb21782c107f5a67815a916643f7d5a14c12e0f923c333846c38b7564536c4f"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2090,9 +3101,14 @@ pyobjc-framework-SharedWithYouCore = ">=9.0.1" name = "pyobjc-framework-sharedwithyoucore" version = "9.0.1" description = "Wrappers for the framework SharedWithYouCore on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-SharedWithYouCore-9.0.1.tar.gz", hash = "sha256:715f4dc0295182cb6164f508163b094c0edb8b5bdb846cd3bda979535cfdbb9a"}, + {file = "pyobjc_framework_SharedWithYouCore-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:8c5583892ed11b2015d676927517b432ac56ae353cfd5b012477d661b8ff6435"}, + {file = "pyobjc_framework_SharedWithYouCore-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:0724580d4eba42929f5e67d27bfc62f2170bbed76fbc4669c454d3d27c9ea1fc"}, + {file = "pyobjc_framework_SharedWithYouCore-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:ca709ff2d2e87be5bcc5d0ae12b1655986ccc3a54fdf912e099f45a7be4a4d24"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2102,9 +3118,17 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-shazamkit" version = "9.0.1" description = "Wrappers for the framework ShazamKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ShazamKit-9.0.1.tar.gz", hash = "sha256:e9b6d2554b876754613b6ebc668f4b0f1d22ac5d373fa10c3d8eea4d3bd972eb"}, + {file = "pyobjc_framework_ShazamKit-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4053375d7402650cf5e9af8dc7833b75cfae05f0a26e48c54d2a0f570839c9ac"}, + {file = "pyobjc_framework_ShazamKit-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e9706cc3cf27f01930348f19114d4d2984b8fbed9e3328a9c945a0fe44af2b99"}, + {file = "pyobjc_framework_ShazamKit-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:392de93bc94c47356aac438a163aba89ea16429d246dc95afe556a307e67f5c8"}, + {file = "pyobjc_framework_ShazamKit-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:af49cc2dd7ca889b47910b5dd8ca075944e787b07651b70abfadb88bc59b7f6c"}, + {file = "pyobjc_framework_ShazamKit-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:3cf8eda1b27ad6665b2c55ecfce7f03930994f17e23ba0a62ab0a2e28df9c7e9"}, + {file = "pyobjc_framework_ShazamKit-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f03a71290c3d7e37cda8eab000feb5b408efabbd8868fbaa64ac944fd86ffcd1"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2114,9 +3138,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-social" version = "9.0.1" description = "Wrappers for the framework Social on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Social-9.0.1.tar.gz", hash = "sha256:ac0552f7bcc3bfd35b4874821c9ee812b762f9c054450644cd520753c8579b6d"}, + {file = "pyobjc_framework_Social-9.0.1-py2.py3-none-any.whl", hash = "sha256:fd5395ab95c271514f6befe0023c49636853efb32156408d9df9423fdd7bd75c"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2126,9 +3153,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-soundanalysis" version = "9.0.1" description = "Wrappers for the framework SoundAnalysis on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-SoundAnalysis-9.0.1.tar.gz", hash = "sha256:52ac3b7534afa19b8b9f3a3ec808f8c27d0a6b0dc2e3e87cadbc5ea03010e867"}, + {file = "pyobjc_framework_SoundAnalysis-9.0.1-py2.py3-none-any.whl", hash = "sha256:580135eedaf10b64721e4fc0120c1f8a1cbcb1398fff1656dabf573819a9a24c"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2138,9 +3168,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-speech" version = "9.0.1" description = "Wrappers for the framework Speech on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Speech-9.0.1.tar.gz", hash = "sha256:ec85948f88cc4a1f77c0cddca93046c0d0b4af526e3bc2aa90f77bdea916f288"}, + {file = "pyobjc_framework_Speech-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:60722fdd68a8d93f087da893a02f9cf759549be54428664081bac1c4119337df"}, + {file = "pyobjc_framework_Speech-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:5e315e5ca17c7c7b79a3d05a375b3ade972ae3177c29ba3be519211b4e2f53b8"}, + {file = "pyobjc_framework_Speech-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:d50240d21a6e5104ed7e2bd3fef11fe7f8eca1fb4deff2e7fb46784cb483aa9a"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2150,11 +3185,19 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-spritekit" version = "9.0.1" description = "Wrappers for the framework SpriteKit on macOS" -category = "main" optional = false python-versions = ">=3.7" - -[package.dependencies] +files = [ + {file = "pyobjc-framework-SpriteKit-9.0.1.tar.gz", hash = "sha256:7484dd95c055fdeda925ae1eec69379cc6fbb39da514c9ec71fcdeb6b0af181a"}, + {file = "pyobjc_framework_SpriteKit-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:201520a4ed454e65597393617d4216953a758dd8eb3a2277b7dba5d43a6beb2b"}, + {file = "pyobjc_framework_SpriteKit-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c2ac9d671f04b29d587c0760cc6653d7d4e3da3ccca274572db0753fd462a523"}, + {file = "pyobjc_framework_SpriteKit-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:82ed2de66175448a9a6ce3d6b638fbcc79bfaf0922b6bb5d975fadc96a8c3ec4"}, + {file = "pyobjc_framework_SpriteKit-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cdd4b0322d5c2feaedfb59d08c27f6bf94974c8e8795755306979f11326d7270"}, + {file = "pyobjc_framework_SpriteKit-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:5e877e8e7af1c07873a324e9309f95f35f5f662ec32b2d5f19bdff2e5bf336fb"}, + {file = "pyobjc_framework_SpriteKit-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:10616d3707e315fda9631ba57bc6c8a2bf5f2565204342c8bed923d995e5d6e4"}, +] + +[package.dependencies] pyobjc-core = ">=9.0.1" pyobjc-framework-Cocoa = ">=9.0.1" pyobjc-framework-Quartz = ">=9.0.1" @@ -2163,9 +3206,14 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-storekit" version = "9.0.1" description = "Wrappers for the framework StoreKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-StoreKit-9.0.1.tar.gz", hash = "sha256:f6dc49a17b6befb4d4d891c26080265edc1c260dbf14e66bca1ad037a72a7adc"}, + {file = "pyobjc_framework_StoreKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:5a9df236fb4fba130deb7d5e1b4ab8d2c08a8c7ff8009e437171fb26e3fee5a0"}, + {file = "pyobjc_framework_StoreKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:66bc9260e9987afc2f28435dc1485b61b86b25dba583c80edef1c0466d5c83fd"}, + {file = "pyobjc_framework_StoreKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:60aab6cf4b6bbce5c3237cb0cd9d1eb9811cdb1797964a792d73d5f7f57a6bbb"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2175,9 +3223,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-syncservices" version = "9.0.1" description = "Wrappers for the framework SyncServices on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-SyncServices-9.0.1.tar.gz", hash = "sha256:9a038f6d857f92f9a4c34329905821726405c07f7be0e0f4a958f423e925633a"}, + {file = "pyobjc_framework_SyncServices-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d5a252805c802966c2b910efe92b5ac2323d5f624fb1b5ded0f6e79122073ac0"}, + {file = "pyobjc_framework_SyncServices-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:8cf55195a4672e127506f46eef325c8901577e10d1ba07fac32a95ecec7c1210"}, + {file = "pyobjc_framework_SyncServices-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:3525ea12627a8fb7aab3fbe3f2b509e52070e2f3485e93be02ca70d0be7102cd"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2188,9 +3241,14 @@ pyobjc-framework-CoreData = ">=9.0.1" name = "pyobjc-framework-systemconfiguration" version = "9.0.1" description = "Wrappers for the framework SystemConfiguration on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-SystemConfiguration-9.0.1.tar.gz", hash = "sha256:0d328f3908b272d987aeaf56913dd4acf35bdb85a0a783cd3907c60e39b75bf3"}, + {file = "pyobjc_framework_SystemConfiguration-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:903bef65bea55d351792b642101795425148692ec0863b18724e2def12da7681"}, + {file = "pyobjc_framework_SystemConfiguration-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:d33a781ca04fb64e437c08e0d06be472e9e7c1f755d8459718fedc56b768f16a"}, + {file = "pyobjc_framework_SystemConfiguration-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:0a0f6b63dacdb118c15975119fb5f3edf116fdf79a1d1f71f32877facbd80e7b"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2200,9 +3258,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-systemextensions" version = "9.0.1" description = "Wrappers for the framework SystemExtensions on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-SystemExtensions-9.0.1.tar.gz", hash = "sha256:0b95decfa84f863d5418c6ab341285b1f4c7344566c2cb6dbc62b6380a8d39ba"}, + {file = "pyobjc_framework_SystemExtensions-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:f44ce5151f47efe5c3f20c5215350548bd97a02aba91b3ec3e18417267b7f875"}, + {file = "pyobjc_framework_SystemExtensions-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6146da97513e44d8edafe4e3fb30373f7b57a97c66cfbbd58901db8f81af83f5"}, + {file = "pyobjc_framework_SystemExtensions-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:2e2bd5fcde4dd115012e621c7c6d327f120e23dce68b116ddbe35cd7b2165eba"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2212,9 +3275,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-threadnetwork" version = "9.0.1" description = "Wrappers for the framework ThreadNetwork on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-ThreadNetwork-9.0.1.tar.gz", hash = "sha256:426ed4d476cdb8a0c09752b8f85d586d40a6a0247e0c6f1ed40fe16689a93c54"}, + {file = "pyobjc_framework_ThreadNetwork-9.0.1-py2.py3-none-any.whl", hash = "sha256:791fcb393d0ba4c42dd0225b852b07f84ab52faff938370cdc63892ebd871512"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2224,9 +3290,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-uniformtypeidentifiers" version = "9.0.1" description = "Wrappers for the framework UniformTypeIdentifiers on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-UniformTypeIdentifiers-9.0.1.tar.gz", hash = "sha256:027e0c12923c361be01f19604049fff0ef3b4b3c920477dbe746b7e8c312355f"}, + {file = "pyobjc_framework_UniformTypeIdentifiers-9.0.1-py2.py3-none-any.whl", hash = "sha256:32ec96c1f99678cb1052d90c9582d78b3f61fcfb485a7b30f034345839370cce"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2236,9 +3305,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-usernotifications" version = "9.0.1" description = "Wrappers for the framework UserNotifications on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-UserNotifications-9.0.1.tar.gz", hash = "sha256:38894aefa85bebb855559b16f798c2b8cf34cbcb7b292cd52fe143c64c6e411b"}, + {file = "pyobjc_framework_UserNotifications-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:36be81d5b5018d7e2ca769e517af48e72e47c9b4471e9225e5ee4a9107ffe00c"}, + {file = "pyobjc_framework_UserNotifications-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:057692c2ef4c57e5347c82be1fd53ddef7d02b4a7efd0455ede04dee5c78edc1"}, + {file = "pyobjc_framework_UserNotifications-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:705bfa9ff3cb999f4a53c38a6b0e97fe5bdc9c06ac294b07b5d6e7f2603caecd"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2248,9 +3322,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-usernotificationsui" version = "9.0.1" description = "Wrappers for the framework UserNotificationsUI on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-UserNotificationsUI-9.0.1.tar.gz", hash = "sha256:7ce84ee3133fca72ea4187e820e86910a5c320422cb30e85043652917c008698"}, + {file = "pyobjc_framework_UserNotificationsUI-9.0.1-py2.py3-none-any.whl", hash = "sha256:6fb9f16e74893fde59bd2323cfd24764acc74a5fa3652c79b52aea4e62896b65"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2261,9 +3338,12 @@ pyobjc-framework-UserNotifications = ">=9.0.1" name = "pyobjc-framework-videosubscriberaccount" version = "9.0.1" description = "Wrappers for the framework VideoSubscriberAccount on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-VideoSubscriberAccount-9.0.1.tar.gz", hash = "sha256:38e0fde0cdfdab53352f880370cc5cea49b6c6f703f58dd0c14e0f1f09bedf42"}, + {file = "pyobjc_framework_VideoSubscriberAccount-9.0.1-py2.py3-none-any.whl", hash = "sha256:4a40c908d8590a75bf71006df7429c3cbe8f4a3ccbbab8e56b6d09ad92ac1b9e"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2273,9 +3353,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-videotoolbox" version = "9.0.1" description = "Wrappers for the framework VideoToolbox on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-VideoToolbox-9.0.1.tar.gz", hash = "sha256:3ff52b8a9c06bb25a6894fafbffa97607da7294cf10ad8337dc7d707d524f9f3"}, + {file = "pyobjc_framework_VideoToolbox-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:2da628f91c7dc4208edf581effdc826909c7c970807f186c0301df3e7527b19c"}, + {file = "pyobjc_framework_VideoToolbox-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:706482e2f21e5c37f44aceb2e0df4d4f67157fb11877e75e210a137a743e0ae3"}, + {file = "pyobjc_framework_VideoToolbox-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:405d519058d51da6e6f9e6e183325b01ab49386547bd61faaa07b19a237fe916"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2287,9 +3372,14 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-virtualization" version = "9.0.1" description = "Wrappers for the framework Virtualization on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Virtualization-9.0.1.tar.gz", hash = "sha256:98ecb1e7b8021013edd2905c63d23dfd5cea58c8baaf67715060c84b120a2e95"}, + {file = "pyobjc_framework_Virtualization-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:b2c4d6ed95845da4fce43440686b07c89dc6a3b9d4225ecc828ebf7bd9e0ec6e"}, + {file = "pyobjc_framework_Virtualization-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:9c038560122c873e5bd389f249ba463b7a2f6f7b472777aadd018ab8370407c8"}, + {file = "pyobjc_framework_Virtualization-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:1f663ac0694d91788c5ab0fa1ddcd6d1764f431f45106575ce66c546749d450b"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2299,9 +3389,14 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyobjc-framework-vision" version = "9.0.1" description = "Wrappers for the framework Vision on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-Vision-9.0.1.tar.gz", hash = "sha256:0f5a6f56fd4a2d9ea340aeafe06479b500aebfcc2b81aa2a496d438a00598222"}, + {file = "pyobjc_framework_Vision-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:ce1e8b4d84481ac2e66fb9075e5f1c2693db02d45283fa1797b7c483b4870a75"}, + {file = "pyobjc_framework_Vision-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6151dcdb296933efa26d0d1003d34904dd6935ba1b69649483255c1aa67742bc"}, + {file = "pyobjc_framework_Vision-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:0a0195a9802fcae8b5b17ab8da7187d0be6903572a3bbb64c0e979015469ddd4"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2313,9 +3408,14 @@ pyobjc-framework-Quartz = ">=9.0.1" name = "pyobjc-framework-webkit" version = "9.0.1" description = "Wrappers for the framework WebKit on macOS" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pyobjc-framework-WebKit-9.0.1.tar.gz", hash = "sha256:82ed0cb273012b48f7489072d6e00579f42d54bc4543471c262db3e5c4bb9e87"}, + {file = "pyobjc_framework_WebKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:037082f72fa1f1d87889fdc172726c3381769de24ca5207d596f3925df9b25f0"}, + {file = "pyobjc_framework_WebKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:952685b820545036833ed737600d32c344916a83b2af4e04acb4b618aaac9431"}, + {file = "pyobjc_framework_WebKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:28a7859401b5af7c47e17612b4b3baca6669e76f974f6f6bfe5e93921a00adec"}, +] [package.dependencies] pyobjc-core = ">=9.0.1" @@ -2325,9 +3425,12 @@ pyobjc-framework-Cocoa = ">=9.0.1" name = "pyparsing" version = "3.0.8" description = "pyparsing module - Classes and methods to define and execute parsing grammars" -category = "dev" optional = false python-versions = ">=3.6.8" +files = [ + {file = "pyparsing-3.0.8-py3-none-any.whl", hash = "sha256:ef7b523f6356f763771559412c0d7134753f037822dad1b16945b7b846f7ad06"}, + {file = "pyparsing-3.0.8.tar.gz", hash = "sha256:7bf433498c016c4314268d95df76c81b842a4cb2b276fa3312cfb1e1d85f6954"}, +] [package.extras] diagrams = ["jinja2", "railroad-diagrams"] @@ -2336,9 +3439,12 @@ diagrams = ["jinja2", "railroad-diagrams"] name = "pytest" version = "7.1.2" description = "pytest: simple powerful testing with Python" -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "pytest-7.1.2-py3-none-any.whl", hash = "sha256:13d0e3ccfc2b6e26be000cb6568c832ba67ba32e719443bfe725814d3c42433c"}, + {file = "pytest-7.1.2.tar.gz", hash = "sha256:a06a0425453864a270bc45e71f783330a7428defb4230fb5e6a731fde06ecd45"}, +] [package.dependencies] atomicwrites = {version = ">=1.0", markers = "sys_platform == \"win32\""} @@ -2357,9 +3463,12 @@ testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2. name = "python-dateutil" version = "2.8.2" description = "Extensions to the standard Python datetime module" -category = "dev" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] [package.dependencies] six = ">=1.5" @@ -2368,25 +3477,34 @@ six = ">=1.5" name = "python-romkan-ng" version = "0.3.0" description = "A Romaji/Kana conversion library" -category = "main" optional = false python-versions = ">=3.9,<4.0" +files = [ + {file = "python-romkan-ng-0.3.0.tar.gz", hash = "sha256:dcb0826cb612ddbe6df8834b86c85b496504e9bd02b684d9f327390da977d385"}, + {file = "python_romkan_ng-0.3.0-py3-none-any.whl", hash = "sha256:4466a0c80d0cde9eefefbf017596ad7a77dc93068f95b2f8a2119ef5165887bc"}, +] [[package]] name = "pytz" version = "2022.1" description = "World timezone definitions, modern and historical" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "pytz-2022.1-py2.py3-none-any.whl", hash = "sha256:e68985985296d9a66a881eb3193b0906246245294a881e7c8afe623866ac6a5c"}, + {file = "pytz-2022.1.tar.gz", hash = "sha256:1e760e2fe6a8163bc0b3d9a19c4f84342afa0a2affebfaa84b01b978a02ecaa7"}, +] [[package]] name = "requests" version = "2.28.1" description = "Python HTTP for Humans." -category = "main" optional = false python-versions = ">=3.7, <4" +files = [ + {file = "requests-2.28.1-py3-none-any.whl", hash = "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349"}, + {file = "requests-2.28.1.tar.gz", hash = "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983"}, +] [package.dependencies] certifi = ">=2017.4.17" @@ -2402,25 +3520,34 @@ use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] name = "six" version = "1.16.0" description = "Python 2 and 3 compatibility utilities" -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] [[package]] name = "snowballstemmer" version = "2.2.0" description = "This package provides 29 stemmers for 28 languages generated from Snowball algorithms." -category = "dev" optional = false python-versions = "*" +files = [ + {file = "snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a"}, + {file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"}, +] [[package]] name = "sphinx" version = "5.1.1" description = "Python documentation generator" -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "Sphinx-5.1.1-py3-none-any.whl", hash = "sha256:309a8da80cb6da9f4713438e5b55861877d5d7976b69d87e336733637ea12693"}, + {file = "Sphinx-5.1.1.tar.gz", hash = "sha256:ba3224a4e206e1fbdecf98a4fae4992ef9b24b85ebf7b584bb340156eaf08d89"}, +] [package.dependencies] alabaster = ">=0.7,<0.8" @@ -2450,9 +3577,12 @@ test = ["cython", "html5lib", "pytest (>=4.6)", "typed-ast"] name = "sphinx-rtd-theme" version = "1.0.0" description = "Read the Docs theme for Sphinx" -category = "dev" optional = false python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*" +files = [ + {file = "sphinx_rtd_theme-1.0.0-py2.py3-none-any.whl", hash = "sha256:4d35a56f4508cfee4c4fb604373ede6feae2a306731d533f409ef5c3496fdbd8"}, + {file = "sphinx_rtd_theme-1.0.0.tar.gz", hash = "sha256:eec6d497e4c2195fa0e8b2016b337532b8a699a68bcb22a512870e16925c6a5c"}, +] [package.dependencies] docutils = "<0.18" @@ -2465,9 +3595,12 @@ dev = ["bump2version", "sphinxcontrib-httpdomain", "transifex-client"] name = "sphinxcontrib-applehelp" version = "1.0.2" description = "sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books" -category = "dev" optional = false python-versions = ">=3.5" +files = [ + {file = "sphinxcontrib-applehelp-1.0.2.tar.gz", hash = "sha256:a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58"}, + {file = "sphinxcontrib_applehelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:806111e5e962be97c29ec4c1e7fe277bfd19e9652fb1a4392105b43e01af885a"}, +] [package.extras] lint = ["docutils-stubs", "flake8", "mypy"] @@ -2477,9 +3610,12 @@ test = ["pytest"] name = "sphinxcontrib-devhelp" version = "1.0.2" description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document." -category = "dev" optional = false python-versions = ">=3.5" +files = [ + {file = "sphinxcontrib-devhelp-1.0.2.tar.gz", hash = "sha256:ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4"}, + {file = "sphinxcontrib_devhelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:8165223f9a335cc1af7ffe1ed31d2871f325254c0423bc0c4c7cd1c1e4734a2e"}, +] [package.extras] lint = ["docutils-stubs", "flake8", "mypy"] @@ -2489,9 +3625,12 @@ test = ["pytest"] name = "sphinxcontrib-htmlhelp" version = "2.0.0" description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "sphinxcontrib-htmlhelp-2.0.0.tar.gz", hash = "sha256:f5f8bb2d0d629f398bf47d0d69c07bc13b65f75a81ad9e2f71a63d4b7a2f6db2"}, + {file = "sphinxcontrib_htmlhelp-2.0.0-py2.py3-none-any.whl", hash = "sha256:d412243dfb797ae3ec2b59eca0e52dac12e75a241bf0e4eb861e450d06c6ed07"}, +] [package.extras] lint = ["docutils-stubs", "flake8", "mypy"] @@ -2501,9 +3640,12 @@ test = ["html5lib", "pytest"] name = "sphinxcontrib-jsmath" version = "1.0.1" description = "A sphinx extension which renders display math in HTML via JavaScript" -category = "dev" optional = false python-versions = ">=3.5" +files = [ + {file = "sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8"}, + {file = "sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178"}, +] [package.extras] test = ["flake8", "mypy", "pytest"] @@ -2512,9 +3654,12 @@ test = ["flake8", "mypy", "pytest"] name = "sphinxcontrib-napoleon" version = "0.7" description = "Sphinx \"napoleon\" extension." -category = "dev" optional = false python-versions = "*" +files = [ + {file = "sphinxcontrib-napoleon-0.7.tar.gz", hash = "sha256:407382beed396e9f2d7f3043fad6afda95719204a1e1a231ac865f40abcbfcf8"}, + {file = "sphinxcontrib_napoleon-0.7-py2.py3-none-any.whl", hash = "sha256:711e41a3974bdf110a484aec4c1a556799eb0b3f3b897521a018ad7e2db13fef"}, +] [package.dependencies] pockets = ">=0.3" @@ -2524,9 +3669,12 @@ six = ">=1.5.2" name = "sphinxcontrib-qthelp" version = "1.0.3" description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document." -category = "dev" optional = false python-versions = ">=3.5" +files = [ + {file = "sphinxcontrib-qthelp-1.0.3.tar.gz", hash = "sha256:4c33767ee058b70dba89a6fc5c1892c0d57a54be67ddd3e7875a18d14cba5a72"}, + {file = "sphinxcontrib_qthelp-1.0.3-py2.py3-none-any.whl", hash = "sha256:bd9fc24bcb748a8d51fd4ecaade681350aa63009a347a8c14e637895444dfab6"}, +] [package.extras] lint = ["docutils-stubs", "flake8", "mypy"] @@ -2536,1264 +3684,100 @@ test = ["pytest"] name = "sphinxcontrib-serializinghtml" version = "1.1.5" description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)." -category = "dev" optional = false python-versions = ">=3.5" +files = [ + {file = "sphinxcontrib-serializinghtml-1.1.5.tar.gz", hash = "sha256:aa5f6de5dfdf809ef505c4895e51ef5c9eac17d0f287933eb49ec495280b6952"}, + {file = "sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl", hash = "sha256:352a9a00ae864471d3a7ead8d7d79f5fc0b57e8b3f95e9867eb9eb28999b92fd"}, +] [package.extras] lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] +[[package]] +name = "tinycss2" +version = "1.2.1" +description = "A tiny CSS parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tinycss2-1.2.1-py3-none-any.whl", hash = "sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847"}, + {file = "tinycss2-1.2.1.tar.gz", hash = "sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627"}, +] + +[package.dependencies] +webencodings = ">=0.4" + +[package.extras] +doc = ["sphinx", "sphinx_rtd_theme"] +test = ["flake8", "isort", "pytest"] + [[package]] name = "tomli" version = "2.0.1" description = "A lil' TOML parser" -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] [[package]] name = "typing-extensions" version = "4.2.0" description = "Backported and Experimental Type Hints for Python 3.7+" -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.2.0-py3-none-any.whl", hash = "sha256:6657594ee297170d19f67d55c05852a874e7eb634f4f753dbd667855e07c1708"}, + {file = "typing_extensions-4.2.0.tar.gz", hash = "sha256:f1c24655a0da0d1b67f07e17a5e6b2a105894e6824b92096378bb3668ef02376"}, +] [[package]] name = "urllib3" version = "1.26.9" description = "HTTP library with thread-safe connection pooling, file post, and more." -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4" +files = [ + {file = "urllib3-1.26.9-py2.py3-none-any.whl", hash = "sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14"}, + {file = "urllib3-1.26.9.tar.gz", hash = "sha256:aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e"}, +] [package.extras] brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)"] socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] +[[package]] +name = "webencodings" +version = "0.5.1" +description = "Character encoding aliases for legacy web content" +optional = false +python-versions = "*" +files = [ + {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, + {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, +] + [[package]] name = "zipp" version = "3.8.0" description = "Backport of pathlib-compatible object wrapper for zip files" -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "zipp-3.8.0-py3-none-any.whl", hash = "sha256:c4f6e5bbf48e74f7a38e7cc5b0480ff42b0ae5178957d564d18932525d5cf099"}, + {file = "zipp-3.8.0.tar.gz", hash = "sha256:56bf8aadb83c24db6c4b577e13de374ccfb67da2078beba1d037c17980bf43ad"}, +] [package.extras] docs = ["jaraco.packaging (>=9)", "rst.linker (>=1.9)", "sphinx"] testing = ["func-timeout", "jaraco.itertools", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy (>=0.9.1)"] [metadata] -lock-version = "1.1" +lock-version = "2.0" python-versions = "^3.9" -content-hash = "1bbe46ef80066c6d8d1aed05095047e0040c192d5dbbfaaf0d4e858ca11d91dd" - -[metadata.files] -alabaster = [ - {file = "alabaster-0.7.12-py2.py3-none-any.whl", hash = "sha256:446438bdcca0e05bd45ea2de1668c1d9b032e1a9154c2c259092d77031ddd359"}, - {file = "alabaster-0.7.12.tar.gz", hash = "sha256:a661d72d58e6ea8a57f7a86e37d86716863ee5e92788398526d58b26a4e4dc02"}, -] -ascii-magic = [ - {file = "ascii_magic-1.6-py3-none-any.whl", hash = "sha256:937447d8677b7428856729c298c0264afd62fc2b8e7ff90c82000492cdc5f8d4"}, - {file = "ascii_magic-1.6.tar.gz", hash = "sha256:7da5518f7368e73f11e2151a0c060804aa149e267b369b7ee7653fbd7b046a51"}, -] -atomicwrites = [ - {file = "atomicwrites-1.4.0-py2.py3-none-any.whl", hash = "sha256:6d1784dea7c0c8d4a5172b6c620f40b6e4cbfdf96d783691f2e1302a7b88e197"}, - {file = "atomicwrites-1.4.0.tar.gz", hash = "sha256:ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a"}, -] -attrs = [ - {file = "attrs-21.4.0-py2.py3-none-any.whl", hash = "sha256:2d27e3784d7a565d36ab851fe94887c5eccd6a463168875832a1be79c82828b4"}, - {file = "attrs-21.4.0.tar.gz", hash = "sha256:626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"}, -] -babel = [ - {file = "Babel-2.10.1-py3-none-any.whl", hash = "sha256:3f349e85ad3154559ac4930c3918247d319f21910d5ce4b25d439ed8693b98d2"}, - {file = "Babel-2.10.1.tar.gz", hash = "sha256:98aeaca086133efb3e1e2aad0396987490c8425929ddbcfe0550184fdc54cd13"}, -] -black = [ - {file = "black-22.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2497f9c2386572e28921fa8bec7be3e51de6801f7459dffd6e62492531c47e09"}, - {file = "black-22.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5795a0375eb87bfe902e80e0c8cfaedf8af4d49694d69161e5bd3206c18618bb"}, - {file = "black-22.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e3556168e2e5c49629f7b0f377070240bd5511e45e25a4497bb0073d9dda776a"}, - {file = "black-22.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:67c8301ec94e3bcc8906740fe071391bce40a862b7be0b86fb5382beefecd968"}, - {file = "black-22.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:fd57160949179ec517d32ac2ac898b5f20d68ed1a9c977346efbac9c2f1e779d"}, - {file = "black-22.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cc1e1de68c8e5444e8f94c3670bb48a2beef0e91dddfd4fcc29595ebd90bb9ce"}, - {file = "black-22.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d2fc92002d44746d3e7db7cf9313cf4452f43e9ea77a2c939defce3b10b5c82"}, - {file = "black-22.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:a6342964b43a99dbc72f72812bf88cad8f0217ae9acb47c0d4f141a6416d2d7b"}, - {file = "black-22.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:328efc0cc70ccb23429d6be184a15ce613f676bdfc85e5fe8ea2a9354b4e9015"}, - {file = "black-22.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06f9d8846f2340dfac80ceb20200ea5d1b3f181dd0556b47af4e8e0b24fa0a6b"}, - {file = "black-22.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:ad4efa5fad66b903b4a5f96d91461d90b9507a812b3c5de657d544215bb7877a"}, - {file = "black-22.3.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8477ec6bbfe0312c128e74644ac8a02ca06bcdb8982d4ee06f209be28cdf163"}, - {file = "black-22.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:637a4014c63fbf42a692d22b55d8ad6968a946b4a6ebc385c5505d9625b6a464"}, - {file = "black-22.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:863714200ada56cbc366dc9ae5291ceb936573155f8bf8e9de92aef51f3ad0f0"}, - {file = "black-22.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10dbe6e6d2988049b4655b2b739f98785a884d4d6b85bc35133a8fb9a2233176"}, - {file = "black-22.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:cee3e11161dde1b2a33a904b850b0899e0424cc331b7295f2a9698e79f9a69a0"}, - {file = "black-22.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5891ef8abc06576985de8fa88e95ab70641de6c1fca97e2a15820a9b69e51b20"}, - {file = "black-22.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:30d78ba6bf080eeaf0b7b875d924b15cd46fec5fd044ddfbad38c8ea9171043a"}, - {file = "black-22.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ee8f1f7228cce7dffc2b464f07ce769f478968bfb3dd1254a4c2eeed84928aad"}, - {file = "black-22.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ee227b696ca60dd1c507be80a6bc849a5a6ab57ac7352aad1ffec9e8b805f21"}, - {file = "black-22.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:9b542ced1ec0ceeff5b37d69838106a6348e60db7b8fdd245294dc1d26136265"}, - {file = "black-22.3.0-py3-none-any.whl", hash = "sha256:bc58025940a896d7e5356952228b68f793cf5fcb342be703c3a2669a1488cb72"}, - {file = "black-22.3.0.tar.gz", hash = "sha256:35020b8886c022ced9282b51b5a875b6d1ab0c387b31a065b84db7c33085ca79"}, -] -certifi = [ - {file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"}, - {file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"}, -] -charset-normalizer = [ - {file = "charset-normalizer-2.0.12.tar.gz", hash = "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"}, - {file = "charset_normalizer-2.0.12-py3-none-any.whl", hash = "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"}, -] -click = [ - {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, - {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, -] -colorama = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] -coverage = [ - {file = "coverage-6.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:50ed480b798febce113709846b11f5d5ed1e529c88d8ae92f707806c50297abf"}, - {file = "coverage-6.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:26f8f92699756cb7af2b30720de0c5bb8d028e923a95b6d0c891088025a1ac8f"}, - {file = "coverage-6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:60c2147921da7f4d2d04f570e1838db32b95c5509d248f3fe6417e91437eaf41"}, - {file = "coverage-6.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:750e13834b597eeb8ae6e72aa58d1d831b96beec5ad1d04479ae3772373a8088"}, - {file = "coverage-6.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af5b9ee0fc146e907aa0f5fb858c3b3da9199d78b7bb2c9973d95550bd40f701"}, - {file = "coverage-6.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:a022394996419142b33a0cf7274cb444c01d2bb123727c4bb0b9acabcb515dea"}, - {file = "coverage-6.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5a78cf2c43b13aa6b56003707c5203f28585944c277c1f3f109c7b041b16bd39"}, - {file = "coverage-6.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9229d074e097f21dfe0643d9d0140ee7433814b3f0fc3706b4abffd1e3038632"}, - {file = "coverage-6.4-cp310-cp310-win32.whl", hash = "sha256:fb45fe08e1abc64eb836d187b20a59172053999823f7f6ef4f18a819c44ba16f"}, - {file = "coverage-6.4-cp310-cp310-win_amd64.whl", hash = "sha256:3cfd07c5889ddb96a401449109a8b97a165be9d67077df6802f59708bfb07720"}, - {file = "coverage-6.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:03014a74023abaf5a591eeeaf1ac66a73d54eba178ff4cb1fa0c0a44aae70383"}, - {file = "coverage-6.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c82f2cd69c71698152e943f4a5a6b83a3ab1db73b88f6e769fabc86074c3b08"}, - {file = "coverage-6.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b546cf2b1974ddc2cb222a109b37c6ed1778b9be7e6b0c0bc0cf0438d9e45a6"}, - {file = "coverage-6.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc173f1ce9ffb16b299f51c9ce53f66a62f4d975abe5640e976904066f3c835d"}, - {file = "coverage-6.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c53ad261dfc8695062fc8811ac7c162bd6096a05a19f26097f411bdf5747aee7"}, - {file = "coverage-6.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:eef5292b60b6de753d6e7f2d128d5841c7915fb1e3321c3a1fe6acfe76c38052"}, - {file = "coverage-6.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:543e172ce4c0de533fa892034cce260467b213c0ea8e39da2f65f9a477425211"}, - {file = "coverage-6.4-cp37-cp37m-win32.whl", hash = "sha256:00c8544510f3c98476bbd58201ac2b150ffbcce46a8c3e4fb89ebf01998f806a"}, - {file = "coverage-6.4-cp37-cp37m-win_amd64.whl", hash = "sha256:b84ab65444dcc68d761e95d4d70f3cfd347ceca5a029f2ffec37d4f124f61311"}, - {file = "coverage-6.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d548edacbf16a8276af13063a2b0669d58bbcfca7c55a255f84aac2870786a61"}, - {file = "coverage-6.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:033ebec282793bd9eb988d0271c211e58442c31077976c19c442e24d827d356f"}, - {file = "coverage-6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:742fb8b43835078dd7496c3c25a1ec8d15351df49fb0037bffb4754291ef30ce"}, - {file = "coverage-6.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d55fae115ef9f67934e9f1103c9ba826b4c690e4c5bcf94482b8b2398311bf9c"}, - {file = "coverage-6.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5cd698341626f3c77784858427bad0cdd54a713115b423d22ac83a28303d1d95"}, - {file = "coverage-6.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:62d382f7d77eeeaff14b30516b17bcbe80f645f5cf02bb755baac376591c653c"}, - {file = "coverage-6.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:016d7f5cf1c8c84f533a3c1f8f36126fbe00b2ec0ccca47cc5731c3723d327c6"}, - {file = "coverage-6.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:69432946f154c6add0e9ede03cc43b96e2ef2733110a77444823c053b1ff5166"}, - {file = "coverage-6.4-cp38-cp38-win32.whl", hash = "sha256:83bd142cdec5e4a5c4ca1d4ff6fa807d28460f9db919f9f6a31babaaa8b88426"}, - {file = "coverage-6.4-cp38-cp38-win_amd64.whl", hash = "sha256:4002f9e8c1f286e986fe96ec58742b93484195defc01d5cc7809b8f7acb5ece3"}, - {file = "coverage-6.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e4f52c272fdc82e7c65ff3f17a7179bc5f710ebc8ce8a5cadac81215e8326740"}, - {file = "coverage-6.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b5578efe4038be02d76c344007b13119b2b20acd009a88dde8adec2de4f630b5"}, - {file = "coverage-6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8099ea680201c2221f8468c372198ceba9338a5fec0e940111962b03b3f716a"}, - {file = "coverage-6.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a00441f5ea4504f5abbc047589d09e0dc33eb447dc45a1a527c8b74bfdd32c65"}, - {file = "coverage-6.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e76bd16f0e31bc2b07e0fb1379551fcd40daf8cdf7e24f31a29e442878a827c"}, - {file = "coverage-6.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:8d2e80dd3438e93b19e1223a9850fa65425e77f2607a364b6fd134fcd52dc9df"}, - {file = "coverage-6.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:341e9c2008c481c5c72d0e0dbf64980a4b2238631a7f9780b0fe2e95755fb018"}, - {file = "coverage-6.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:21e6686a95025927775ac501e74f5940cdf6fe052292f3a3f7349b0abae6d00f"}, - {file = "coverage-6.4-cp39-cp39-win32.whl", hash = "sha256:968ed5407f9460bd5a591cefd1388cc00a8f5099de9e76234655ae48cfdbe2c3"}, - {file = "coverage-6.4-cp39-cp39-win_amd64.whl", hash = "sha256:e35217031e4b534b09f9b9a5841b9344a30a6357627761d4218818b865d45055"}, - {file = "coverage-6.4-pp36.pp37.pp38-none-any.whl", hash = "sha256:e637ae0b7b481905358624ef2e81d7fb0b1af55f5ff99f9ba05442a444b11e45"}, - {file = "coverage-6.4.tar.gz", hash = "sha256:727dafd7f67a6e1cad808dc884bd9c5a2f6ef1f8f6d2f22b37b96cb0080d4f49"}, -] -docutils = [ - {file = "docutils-0.17.1-py2.py3-none-any.whl", hash = "sha256:cf316c8370a737a022b72b56874f6602acf974a37a9fba42ec2876387549fc61"}, - {file = "docutils-0.17.1.tar.gz", hash = "sha256:686577d2e4c32380bb50cbb22f575ed742d58168cee37e99117a854bcd88f125"}, -] -flake8 = [ - {file = "flake8-4.0.1-py2.py3-none-any.whl", hash = "sha256:479b1304f72536a55948cb40a32dce8bb0ffe3501e26eaf292c7e60eb5e0428d"}, - {file = "flake8-4.0.1.tar.gz", hash = "sha256:806e034dda44114815e23c16ef92f95c91e4c71100ff52813adf7132a6ad870d"}, -] -freezegun = [ - {file = "freezegun-1.2.1-py3-none-any.whl", hash = "sha256:15103a67dfa868ad809a8f508146e396be2995172d25f927e48ce51c0bf5cb09"}, - {file = "freezegun-1.2.1.tar.gz", hash = "sha256:b4c64efb275e6bc68dc6e771b17ffe0ff0f90b81a2a5189043550b6519926ba4"}, -] -idna = [ - {file = "idna-3.3-py3-none-any.whl", hash = "sha256:84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff"}, - {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"}, -] -imagesize = [ - {file = "imagesize-1.3.0-py2.py3-none-any.whl", hash = "sha256:1db2f82529e53c3e929e8926a1fa9235aa82d0bd0c580359c67ec31b2fddaa8c"}, - {file = "imagesize-1.3.0.tar.gz", hash = "sha256:cd1750d452385ca327479d45b64d9c7729ecf0b3969a58148298c77092261f9d"}, -] -importlib-metadata = [ - {file = "importlib_metadata-4.11.3-py3-none-any.whl", hash = "sha256:1208431ca90a8cca1a6b8af391bb53c1a2db74e5d1cef6ddced95d4b2062edc6"}, - {file = "importlib_metadata-4.11.3.tar.gz", hash = "sha256:ea4c597ebf37142f827b8f39299579e31685c31d3a438b59f469406afd0f2539"}, -] -iniconfig = [ - {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, - {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, -] -jinja2 = [ - {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, - {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, -] -markupsafe = [ - {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"}, - {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"}, -] -mccabe = [ - {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"}, - {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, -] -mutagen = [ - {file = "mutagen-1.46.0-py3-none-any.whl", hash = "sha256:8af0728aa2d5c3ee5a727e28d0627966641fddfe804c23eabb5926a4d770aed5"}, - {file = "mutagen-1.46.0.tar.gz", hash = "sha256:6e5f8ba84836b99fe60be5fb27f84be4ad919bbb6b49caa6ae81e70584b55e58"}, -] -mypy-extensions = [ - {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, - {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, -] -packaging = [ - {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, - {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, -] -pathspec = [ - {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"}, - {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"}, -] -pillow = [ - {file = "Pillow-9.4.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:2968c58feca624bb6c8502f9564dd187d0e1389964898f5e9e1fbc8533169157"}, - {file = "Pillow-9.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c5c1362c14aee73f50143d74389b2c158707b4abce2cb055b7ad37ce60738d47"}, - {file = "Pillow-9.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd752c5ff1b4a870b7661234694f24b1d2b9076b8bf337321a814c612665f343"}, - {file = "Pillow-9.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9a3049a10261d7f2b6514d35bbb7a4dfc3ece4c4de14ef5876c4b7a23a0e566d"}, - {file = "Pillow-9.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16a8df99701f9095bea8a6c4b3197da105df6f74e6176c5b410bc2df2fd29a57"}, - {file = "Pillow-9.4.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:94cdff45173b1919350601f82d61365e792895e3c3a3443cf99819e6fbf717a5"}, - {file = "Pillow-9.4.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:ed3e4b4e1e6de75fdc16d3259098de7c6571b1a6cc863b1a49e7d3d53e036070"}, - {file = "Pillow-9.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d5b2f8a31bd43e0f18172d8ac82347c8f37ef3e0b414431157718aa234991b28"}, - {file = "Pillow-9.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:09b89ddc95c248ee788328528e6a2996e09eaccddeeb82a5356e92645733be35"}, - {file = "Pillow-9.4.0-cp310-cp310-win32.whl", hash = "sha256:f09598b416ba39a8f489c124447b007fe865f786a89dbfa48bb5cf395693132a"}, - {file = "Pillow-9.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:f6e78171be3fb7941f9910ea15b4b14ec27725865a73c15277bc39f5ca4f8391"}, - {file = "Pillow-9.4.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:3fa1284762aacca6dc97474ee9c16f83990b8eeb6697f2ba17140d54b453e133"}, - {file = "Pillow-9.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:eaef5d2de3c7e9b21f1e762f289d17b726c2239a42b11e25446abf82b26ac132"}, - {file = "Pillow-9.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a4dfdae195335abb4e89cc9762b2edc524f3c6e80d647a9a81bf81e17e3fb6f0"}, - {file = "Pillow-9.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6abfb51a82e919e3933eb137e17c4ae9c0475a25508ea88993bb59faf82f3b35"}, - {file = "Pillow-9.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:451f10ef963918e65b8869e17d67db5e2f4ab40e716ee6ce7129b0cde2876eab"}, - {file = "Pillow-9.4.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:6663977496d616b618b6cfa43ec86e479ee62b942e1da76a2c3daa1c75933ef4"}, - {file = "Pillow-9.4.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:60e7da3a3ad1812c128750fc1bc14a7ceeb8d29f77e0a2356a8fb2aa8925287d"}, - {file = "Pillow-9.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:19005a8e58b7c1796bc0167862b1f54a64d3b44ee5d48152b06bb861458bc0f8"}, - {file = "Pillow-9.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f715c32e774a60a337b2bb8ad9839b4abf75b267a0f18806f6f4f5f1688c4b5a"}, - {file = "Pillow-9.4.0-cp311-cp311-win32.whl", hash = "sha256:b222090c455d6d1a64e6b7bb5f4035c4dff479e22455c9eaa1bdd4c75b52c80c"}, - {file = "Pillow-9.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:ba6612b6548220ff5e9df85261bddc811a057b0b465a1226b39bfb8550616aee"}, - {file = "Pillow-9.4.0-cp37-cp37m-macosx_10_10_x86_64.whl", hash = "sha256:5f532a2ad4d174eb73494e7397988e22bf427f91acc8e6ebf5bb10597b49c493"}, - {file = "Pillow-9.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dd5a9c3091a0f414a963d427f920368e2b6a4c2f7527fdd82cde8ef0bc7a327"}, - {file = "Pillow-9.4.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef21af928e807f10bf4141cad4746eee692a0dd3ff56cfb25fce076ec3cc8abe"}, - {file = "Pillow-9.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:847b114580c5cc9ebaf216dd8c8dbc6b00a3b7ab0131e173d7120e6deade1f57"}, - {file = "Pillow-9.4.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:653d7fb2df65efefbcbf81ef5fe5e5be931f1ee4332c2893ca638c9b11a409c4"}, - {file = "Pillow-9.4.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:46f39cab8bbf4a384ba7cb0bc8bae7b7062b6a11cfac1ca4bc144dea90d4a9f5"}, - {file = "Pillow-9.4.0-cp37-cp37m-win32.whl", hash = "sha256:7ac7594397698f77bce84382929747130765f66406dc2cd8b4ab4da68ade4c6e"}, - {file = "Pillow-9.4.0-cp37-cp37m-win_amd64.whl", hash = "sha256:46c259e87199041583658457372a183636ae8cd56dbf3f0755e0f376a7f9d0e6"}, - {file = "Pillow-9.4.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:0e51f608da093e5d9038c592b5b575cadc12fd748af1479b5e858045fff955a9"}, - {file = "Pillow-9.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:765cb54c0b8724a7c12c55146ae4647e0274a839fb6de7bcba841e04298e1011"}, - {file = "Pillow-9.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:519e14e2c49fcf7616d6d2cfc5c70adae95682ae20f0395e9280db85e8d6c4df"}, - {file = "Pillow-9.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d197df5489004db87d90b918033edbeee0bd6df3848a204bca3ff0a903bef837"}, - {file = "Pillow-9.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0845adc64fe9886db00f5ab68c4a8cd933ab749a87747555cec1c95acea64b0b"}, - {file = "Pillow-9.4.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:e1339790c083c5a4de48f688b4841f18df839eb3c9584a770cbd818b33e26d5d"}, - {file = "Pillow-9.4.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:a96e6e23f2b79433390273eaf8cc94fec9c6370842e577ab10dabdcc7ea0a66b"}, - {file = "Pillow-9.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7cfc287da09f9d2a7ec146ee4d72d6ea1342e770d975e49a8621bf54eaa8f30f"}, - {file = "Pillow-9.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d7081c084ceb58278dd3cf81f836bc818978c0ccc770cbbb202125ddabec6628"}, - {file = "Pillow-9.4.0-cp38-cp38-win32.whl", hash = "sha256:df41112ccce5d47770a0c13651479fbcd8793f34232a2dd9faeccb75eb5d0d0d"}, - {file = "Pillow-9.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:7a21222644ab69ddd9967cfe6f2bb420b460dae4289c9d40ff9a4896e7c35c9a"}, - {file = "Pillow-9.4.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:0f3269304c1a7ce82f1759c12ce731ef9b6e95b6df829dccd9fe42912cc48569"}, - {file = "Pillow-9.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cb362e3b0976dc994857391b776ddaa8c13c28a16f80ac6522c23d5257156bed"}, - {file = "Pillow-9.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2e0f87144fcbbe54297cae708c5e7f9da21a4646523456b00cc956bd4c65815"}, - {file = "Pillow-9.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:28676836c7796805914b76b1837a40f76827ee0d5398f72f7dcc634bae7c6264"}, - {file = "Pillow-9.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0884ba7b515163a1a05440a138adeb722b8a6ae2c2b33aea93ea3118dd3a899e"}, - {file = "Pillow-9.4.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:53dcb50fbdc3fb2c55431a9b30caeb2f7027fcd2aeb501459464f0214200a503"}, - {file = "Pillow-9.4.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:e8c5cf126889a4de385c02a2c3d3aba4b00f70234bfddae82a5eaa3ee6d5e3e6"}, - {file = "Pillow-9.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6c6b1389ed66cdd174d040105123a5a1bc91d0aa7059c7261d20e583b6d8cbd2"}, - {file = "Pillow-9.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0dd4c681b82214b36273c18ca7ee87065a50e013112eea7d78c7a1b89a739153"}, - {file = "Pillow-9.4.0-cp39-cp39-win32.whl", hash = "sha256:6d9dfb9959a3b0039ee06c1a1a90dc23bac3b430842dcb97908ddde05870601c"}, - {file = "Pillow-9.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:54614444887e0d3043557d9dbc697dbb16cfb5a35d672b7a0fcc1ed0cf1c600b"}, - {file = "Pillow-9.4.0-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:b9b752ab91e78234941e44abdecc07f1f0d8f51fb62941d32995b8161f68cfe5"}, - {file = "Pillow-9.4.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3b56206244dc8711f7e8b7d6cad4663917cd5b2d950799425076681e8766286"}, - {file = "Pillow-9.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aabdab8ec1e7ca7f1434d042bf8b1e92056245fb179790dc97ed040361f16bfd"}, - {file = "Pillow-9.4.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:db74f5562c09953b2c5f8ec4b7dfd3f5421f31811e97d1dbc0a7c93d6e3a24df"}, - {file = "Pillow-9.4.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:e9d7747847c53a16a729b6ee5e737cf170f7a16611c143d95aa60a109a59c336"}, - {file = "Pillow-9.4.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:b52ff4f4e002f828ea6483faf4c4e8deea8d743cf801b74910243c58acc6eda3"}, - {file = "Pillow-9.4.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:575d8912dca808edd9acd6f7795199332696d3469665ef26163cd090fa1f8bfa"}, - {file = "Pillow-9.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c4ed2ff6760e98d262e0cc9c9a7f7b8a9f61aa4d47c58835cdaf7b0b8811bb"}, - {file = "Pillow-9.4.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e621b0246192d3b9cb1dc62c78cfa4c6f6d2ddc0ec207d43c0dedecb914f152a"}, - {file = "Pillow-9.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:8f127e7b028900421cad64f51f75c051b628db17fb00e099eb148761eed598c9"}, - {file = "Pillow-9.4.0.tar.gz", hash = "sha256:a1c2d7780448eb93fbcc3789bf3916aa5720d942e37945f4056680317f1cd23e"}, -] -platformdirs = [ - {file = "platformdirs-2.5.2-py3-none-any.whl", hash = "sha256:027d8e83a2d7de06bbac4e5ef7e023c02b863d7ea5d079477e722bb41ab25788"}, - {file = "platformdirs-2.5.2.tar.gz", hash = "sha256:58c8abb07dcb441e6ee4b11d8df0ac856038f944ab98b7be6b27b2a3c7feef19"}, -] -playsound = [ - {file = "playsound-1.2.2-py2.py3-none-any.whl", hash = "sha256:1e83750a5325cbccee03d6e751ba3e78c037ac95b95a3ba1f38d0c5aca9e1a34"}, -] -pluggy = [ - {file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"}, - {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, -] -pockets = [ - {file = "pockets-0.9.1-py2.py3-none-any.whl", hash = "sha256:68597934193c08a08eb2bf6a1d85593f627c22f9b065cc727a4f03f669d96d86"}, - {file = "pockets-0.9.1.tar.gz", hash = "sha256:9320f1a3c6f7a9133fe3b571f283bcf3353cd70249025ae8d618e40e9f7e92b3"}, -] -py = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] -pycairo = [ - {file = "pycairo-1.21.0-cp310-cp310-win32.whl", hash = "sha256:44a2ecf34968de07b3b9dfdcdbccbd25aa3cab267200f234f84e81481a73bbf6"}, - {file = "pycairo-1.21.0-cp310-cp310-win_amd64.whl", hash = "sha256:f63c153a9ea3d21aff85e2caeee4b0c5d566b2368b4ed64826020d12953d76a4"}, - {file = "pycairo-1.21.0-cp37-cp37m-win32.whl", hash = "sha256:70936b19f967fa3cb3cd200c2608911227fa5d09dae21c166f64bc15e714ee41"}, - {file = "pycairo-1.21.0-cp37-cp37m-win_amd64.whl", hash = "sha256:31e1c4850db03201d33929cbe1905ce1b33202683ebda7bb0d4dba489115066b"}, - {file = "pycairo-1.21.0-cp38-cp38-win32.whl", hash = "sha256:dace6b356c476de27f8e1522428ac21a799c225703f746e2957d441f885dcb6c"}, - {file = "pycairo-1.21.0-cp38-cp38-win_amd64.whl", hash = "sha256:4357f20a6b1de8f1e8072a74ff68ab4c9a0ae698cd9f5c0f2b2cdd9b28b635f6"}, - {file = "pycairo-1.21.0-cp39-cp39-win32.whl", hash = "sha256:6d37375aab9f2bb6136f076c19815d72108383baae89fbc0d6cb8e5092217d02"}, - {file = "pycairo-1.21.0-cp39-cp39-win_amd64.whl", hash = "sha256:26b72b813c6f9d495f71057eab89c13e70a21c92360e9265abc049e0a931fa39"}, - {file = "pycairo-1.21.0.tar.gz", hash = "sha256:251907f18a552df938aa3386657ff4b5a4937dde70e11aa042bc297957f4b74b"}, -] -pycodestyle = [ - {file = "pycodestyle-2.8.0-py2.py3-none-any.whl", hash = "sha256:720f8b39dde8b293825e7ff02c475f3077124006db4f440dcbc9a20b76548a20"}, - {file = "pycodestyle-2.8.0.tar.gz", hash = "sha256:eddd5847ef438ea1c7870ca7eb78a9d47ce0cdb4851a5523949f2601d0cbbe7f"}, -] -pyflakes = [ - {file = "pyflakes-2.4.0-py2.py3-none-any.whl", hash = "sha256:3bb3a3f256f4b7968c9c788781e4ff07dce46bdf12339dcda61053375426ee2e"}, - {file = "pyflakes-2.4.0.tar.gz", hash = "sha256:05a85c2872edf37a4ed30b0cce2f6093e1d0581f8c19d7393122da7e25b2b24c"}, -] -pygments = [ - {file = "Pygments-2.12.0-py3-none-any.whl", hash = "sha256:dc9c10fb40944260f6ed4c688ece0cd2048414940f1cea51b8b226318411c519"}, - {file = "Pygments-2.12.0.tar.gz", hash = "sha256:5eb116118f9612ff1ee89ac96437bb6b49e8f04d8a13b514ba26f620208e26eb"}, -] -pygobject = [ - {file = "PyGObject-3.42.2.tar.gz", hash = "sha256:21524cef33100c8fd59dc135948b703d79d303e368ce71fa60521cc971cd8aa7"}, -] -pyobjc = [ - {file = "pyobjc-9.0.1-py3-none-any.whl", hash = "sha256:cf1c26226f23df4cfe65224db9eef03749ec3bf336c389aa2c7736f8c4e51f35"}, - {file = "pyobjc-9.0.1.tar.gz", hash = "sha256:e9608194a94c321e6cf545a3f8af0382e74b7c44af9ca36f3d3474af41661305"}, -] -pyobjc-core = [ - {file = "pyobjc-core-9.0.1.tar.gz", hash = "sha256:5ce1510bb0bdff527c597079a42b2e13a19b7592e76850be7960a2775b59c929"}, - {file = "pyobjc_core-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:b614406d46175b1438a9596b664bf61952323116704d19bc1dea68052a0aad98"}, - {file = "pyobjc_core-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:bd397e729f6271c694fb70df8f5d3d3c9b2f2b8ac02fbbdd1757ca96027b94bb"}, - {file = "pyobjc_core-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d919934eaa6d1cf1505ff447a5c2312be4c5651efcb694eb9f59e86f5bd25e6b"}, - {file = "pyobjc_core-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:67d67ca8b164f38ceacce28a18025845c3ec69613f3301935d4d2c4ceb22e3fd"}, - {file = "pyobjc_core-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:39d11d71f6161ac0bd93cffc8ea210bb0178b56d16a7408bf74283d6ecfa7430"}, - {file = "pyobjc_core-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:25be1c4d530e473ed98b15063b8d6844f0733c98914de6f09fe1f7652b772bbc"}, -] -pyobjc-framework-accessibility = [ - {file = "pyobjc-framework-Accessibility-9.0.1.tar.gz", hash = "sha256:3dd6bdff7597e454846e6171a6c58da3e414bef1fc155ae4255d49a91da527c3"}, - {file = "pyobjc_framework_Accessibility-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:b4e36fb5cd364956fc12e800bc3ff58bac958035a320b7946c7f59bc6ad38452"}, - {file = "pyobjc_framework_Accessibility-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:53f3b9a267819bcc5853ea9cca2767d5cc33c200fe6d71eb8a2b623ac6c723b1"}, - {file = "pyobjc_framework_Accessibility-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:a4e454e0424662fa14f62e3c9e8d56a25fe0cc8f8eb9c93cbc1a1df12d7cf3aa"}, -] -pyobjc-framework-accounts = [ - {file = "pyobjc-framework-Accounts-9.0.1.tar.gz", hash = "sha256:3cfd824ec78fb1728b9d020d8a91313e25ea862574051da82c0616df57f5fc87"}, - {file = "pyobjc_framework_Accounts-9.0.1-py2.py3-none-any.whl", hash = "sha256:3cdef323228580f28d2e444d77086a542a7824c26ac0aa769fe55259a869d44a"}, -] -pyobjc-framework-addressbook = [ - {file = "pyobjc-framework-AddressBook-9.0.1.tar.gz", hash = "sha256:1f2f2426122d69a9a981b8c3d9f408d9d9440a47e31a31f725c09997c7698ff9"}, - {file = "pyobjc_framework_AddressBook-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:df590230a178e01f42ad7d53da1343e2b0842580bea21de861ad7096607fd15f"}, - {file = "pyobjc_framework_AddressBook-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:1846ca3389361462e0dbf16518824f2077ceea9c06eea6642a8d27ff562c7b74"}, - {file = "pyobjc_framework_AddressBook-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:a820ded6064fb02cd30426da6d6c1ec1d9203a64d61605395ff0a6c4a567e6e9"}, -] -pyobjc-framework-adservices = [ - {file = "pyobjc-framework-AdServices-9.0.1.tar.gz", hash = "sha256:d5a3a82990809ec8d4f322d63f0fc02f11c892888e1d91706294b9cb7e15c038"}, - {file = "pyobjc_framework_AdServices-9.0.1-py2.py3-none-any.whl", hash = "sha256:a9e6265a26446ce897aecd97662659d8b861fe8fd808ad1dd4b808dff60b5a05"}, -] -pyobjc-framework-adsupport = [ - {file = "pyobjc-framework-AdSupport-9.0.1.tar.gz", hash = "sha256:eca02dc5d3c26064883184dab494ed5cdd043681043f4b4ceb290388e5bc6a01"}, - {file = "pyobjc_framework_AdSupport-9.0.1-py2.py3-none-any.whl", hash = "sha256:290dccba0b234ec3a635ddbe3f3095816e2a76783b69e96c4d0799a1922d694b"}, -] -pyobjc-framework-applescriptkit = [ - {file = "pyobjc-framework-AppleScriptKit-9.0.1.tar.gz", hash = "sha256:44ea535b4faf77b01c3df0ce4d56e30190a3a3ce62e04a78e010627bd158d857"}, - {file = "pyobjc_framework_AppleScriptKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:276ece60cae045351496295cf9f1491c80be76c92e25642eb99db828190b6ee6"}, -] -pyobjc-framework-applescriptobjc = [ - {file = "pyobjc-framework-AppleScriptObjC-9.0.1.tar.gz", hash = "sha256:c581c27af7da728a3df4fb6f0dddfcabf905f43815aba7d2c1e440fbcd1b5513"}, - {file = "pyobjc_framework_AppleScriptObjC-9.0.1-py2.py3-none-any.whl", hash = "sha256:793d854fb27286016dc6621e9a7af7e520c390cd46d68308d142b918b4a16d70"}, -] -pyobjc-framework-applicationservices = [ - {file = "pyobjc-framework-ApplicationServices-9.0.1.tar.gz", hash = "sha256:e3a350781fdcab6c1da4343dfc54ae3c0523e59e61147432f61dcfb365752fde"}, - {file = "pyobjc_framework_ApplicationServices-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:c4214febf3cc2e417ae15d45b6502e5c20f1097cd042b025760d019fe69b07b6"}, - {file = "pyobjc_framework_ApplicationServices-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c62693e01ba272fbadcd66677881311d2d63fda84b9662533fcc883c54be76d7"}, - {file = "pyobjc_framework_ApplicationServices-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6829df4dc4cf012bdc221d4e0296d6699b33ca89741569df153989a0c18aa40e"}, - {file = "pyobjc_framework_ApplicationServices-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5af5d12871499c429dd68c5ec4be56c631ec8439aa953c266eed9afdffb5ec2b"}, - {file = "pyobjc_framework_ApplicationServices-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:724da9dfae6ab0505b90340231a685720288caecfcca335b08903102e97a93dc"}, - {file = "pyobjc_framework_ApplicationServices-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8e1dbfc8f482c433ce642724d4bed0c527c7f2f2f8b9ba1ac3f778a68cf1538d"}, -] -pyobjc-framework-apptrackingtransparency = [ - {file = "pyobjc-framework-AppTrackingTransparency-9.0.1.tar.gz", hash = "sha256:90f31de4c9fb91d28a9a2625dcb2ec3890a435301237860b99cedbb455cc8ae4"}, - {file = "pyobjc_framework_AppTrackingTransparency-9.0.1-py2.py3-none-any.whl", hash = "sha256:b371ce30e8c9f4b92148f9df60c36aff809b55be41a5cc41718fe11a7889b43e"}, -] -pyobjc-framework-audiovideobridging = [ - {file = "pyobjc-framework-AudioVideoBridging-9.0.1.tar.gz", hash = "sha256:11da47b7024e8616d74ae786cbe1f8767c9097d097bf4d6da8a5d024f7f32b27"}, - {file = "pyobjc_framework_AudioVideoBridging-9.0.1-py2.py3-none-any.whl", hash = "sha256:1f9b94380bbfa7cc82a82cdc078f8d78a572a5debefe7343571fdd4050c2e6eb"}, -] -pyobjc-framework-authenticationservices = [ - {file = "pyobjc-framework-AuthenticationServices-9.0.1.tar.gz", hash = "sha256:746b02771f1b53d4649a1014b8986aa595100790202fd3e9f8160074ceb0083b"}, - {file = "pyobjc_framework_AuthenticationServices-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:ffc9e4fc20e9836a1c186ec35bada23d8a45a03dff8595c5083411d547080498"}, - {file = "pyobjc_framework_AuthenticationServices-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:92395d49a6164e161ad83eb95a2065e4e34c5ebd82b1894209776a4a4d38d0d5"}, - {file = "pyobjc_framework_AuthenticationServices-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:5c6a33f9d37aa9cc02b71908caab9e95010e896c87b00e6ce01e451fbef9d574"}, -] -pyobjc-framework-automaticassessmentconfiguration = [ - {file = "pyobjc-framework-AutomaticAssessmentConfiguration-9.0.1.tar.gz", hash = "sha256:2f79daec218f27f0941253238d8ea22d17bf37f9cc3af8ab0ef264c27575a9aa"}, - {file = "pyobjc_framework_AutomaticAssessmentConfiguration-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:3961ac8dafe085d80902e2f2c662843e4131cfd7267c978874674928e125d4a7"}, - {file = "pyobjc_framework_AutomaticAssessmentConfiguration-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:407b629ed27ca0d657f43fd5d6efd8f614b032b02675c9d361054b8aeaf55e83"}, - {file = "pyobjc_framework_AutomaticAssessmentConfiguration-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:77971db9d3c9d68b33356683bcef47432d11db8200252667e25d407e84446ccb"}, -] -pyobjc-framework-automator = [ - {file = "pyobjc-framework-Automator-9.0.1.tar.gz", hash = "sha256:862f71d0778c6adfb1ae5b3d5af9363ca6e04d41e7fb1099d9759a86e83f60cf"}, - {file = "pyobjc_framework_Automator-9.0.1-py2.py3-none-any.whl", hash = "sha256:d03bc0b92f5baede2eb35bde373774f708b9cfdf5fdde631d36e262eb5f63220"}, -] -pyobjc-framework-avfoundation = [ - {file = "pyobjc-framework-AVFoundation-9.0.1.tar.gz", hash = "sha256:4afa1d9b2bdf73b8d776f857b217942382c019a709697d266aa9c48b3f9cc620"}, - {file = "pyobjc_framework_AVFoundation-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d697089cee120688305c7832e06213312fa31c658a6223a8cfa26268968c05b3"}, - {file = "pyobjc_framework_AVFoundation-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:24c39907257c5b61a5709a2b337a465512bee1664d4ca50222cc764fd6abe43b"}, - {file = "pyobjc_framework_AVFoundation-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:a463d8790de3a1a8a3c68ee82d07d1d39bad4d78d7c5064509250ba68751d973"}, -] -pyobjc-framework-avkit = [ - {file = "pyobjc-framework-AVKit-9.0.1.tar.gz", hash = "sha256:382815a5ffab7444cade994cc3335898eaf25fd627af2adf7a5a9d982a62a273"}, - {file = "pyobjc_framework_AVKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:0f6775127029ffa489d6e03dc82c8952dea56f1e91965c171e337d97b78df5ad"}, - {file = "pyobjc_framework_AVKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:a87a9a59691f24981b2b323ec128a223ff31087ee7793ef012f01afefbdee397"}, - {file = "pyobjc_framework_AVKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:bf5c723633aac929861ca31ded7374f8270066da85256d9d448f80a2edd28bcb"}, -] -pyobjc-framework-avrouting = [ - {file = "pyobjc-framework-AVRouting-9.0.1.tar.gz", hash = "sha256:1236a46bece3766383b3bd73d78f49e9b501cc9824474c3db6bfc2ab84cb3cb4"}, - {file = "pyobjc_framework_AVRouting-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:ff3845107e30308250a4d48ce1845fd2210358cf3422f8c7337fb9011704d323"}, - {file = "pyobjc_framework_AVRouting-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:09b7e268a4c5fc0e18835f6e7c3636f3b57a525e58419a0844454364cd199604"}, - {file = "pyobjc_framework_AVRouting-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:182e534f9a74e597c66a0c32a9bcc564300ec7e782f14ca56abbbda93cea704a"}, -] -pyobjc-framework-backgroundassets = [ - {file = "pyobjc-framework-BackgroundAssets-9.0.1.tar.gz", hash = "sha256:354c3602e55f93fd7bb08bf6468db62972c02da8b05bfa3e41dd0aa532e085ce"}, - {file = "pyobjc_framework_BackgroundAssets-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:ef0c31674bbd167bed295b6d463ae4f4e6e875d59cbc631311befa0f19eca457"}, - {file = "pyobjc_framework_BackgroundAssets-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:e356040a509dcf94415124ad62900325ed7b524a2b2c93d4901987f0eaac7106"}, - {file = "pyobjc_framework_BackgroundAssets-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:30c840272dc78fe07a99163162fb32ba771dad096bd023621af2416f249cee0b"}, -] -pyobjc-framework-businesschat = [ - {file = "pyobjc-framework-BusinessChat-9.0.1.tar.gz", hash = "sha256:18e8343e714fb9ef68c75124ec74658bd8f188fbdf266f7dca0b04d46dedf6dd"}, - {file = "pyobjc_framework_BusinessChat-9.0.1-py2.py3-none-any.whl", hash = "sha256:f1f853e715b7ee6b90e01c42481cbb0bef50942bed8af9ad908914fb5f0e782e"}, -] -pyobjc-framework-calendarstore = [ - {file = "pyobjc-framework-CalendarStore-9.0.1.tar.gz", hash = "sha256:69cb60ae61ee35cd6bac613fc2429903884211bc9f2df994029b308dddfb891a"}, - {file = "pyobjc_framework_CalendarStore-9.0.1-py2.py3-none-any.whl", hash = "sha256:ddb62bc90fbd772dfc233ebefe06075b59de5735110979c5efff599159d30d40"}, -] -pyobjc-framework-callkit = [ - {file = "pyobjc-framework-CallKit-9.0.1.tar.gz", hash = "sha256:375c143c768d926e79d77a8cbf7394a4107a74c19b84f83b044a3cc2773022a4"}, - {file = "pyobjc_framework_CallKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:b80104ef5d94b5f7545ff378a7f1e67afcd248cff37a1cf4490e6e24817c7103"}, -] -pyobjc-framework-cfnetwork = [ - {file = "pyobjc-framework-CFNetwork-9.0.1.tar.gz", hash = "sha256:7f0c05d1575bbf2de31fe38ee8ff18840640463ad530827af88cfbca817e130b"}, - {file = "pyobjc_framework_CFNetwork-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:366f7f48bce4de4199103236ef7dfba4afcacc5644a3a9c7cd4dfa8c4c4e444c"}, - {file = "pyobjc_framework_CFNetwork-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:bc9ae8413b29ad798646ddf3e453e85b47fe00676b21dde3c9e2ae51e9231ad1"}, - {file = "pyobjc_framework_CFNetwork-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:964e5b8922c647f77ed1826f73d7ef753474b5dd8d66241ff52282194c1247a6"}, -] -pyobjc-framework-classkit = [ - {file = "pyobjc-framework-ClassKit-9.0.1.tar.gz", hash = "sha256:35aa002e9d24a86e0b41edef11522ab0b5dc4336c7ddaa4951ddb0e02054fbed"}, - {file = "pyobjc_framework_ClassKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:1727572bfdaa7bdf18f00c93d2c4f99ae5ba2e265c4c6862b0d5039ae8f14d50"}, - {file = "pyobjc_framework_ClassKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:56b78857e94578174a149856ab265345f49dc2aefd86313b88ea02306cfdc3f1"}, - {file = "pyobjc_framework_ClassKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:fe08810caff050692489ba39ae29fabf41a39a5bd99e4167fbe627b62b6dbdcb"}, -] -pyobjc-framework-cloudkit = [ - {file = "pyobjc-framework-CloudKit-9.0.1.tar.gz", hash = "sha256:2cc56ddfecb6c4463a6cb83a405a1ee57b1cb008a6bc529ca95824163cc93ed0"}, - {file = "pyobjc_framework_CloudKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:2e92516a4efcbc26968260d23683d7641b08866a881b3d391486c24bf81a757d"}, -] -pyobjc-framework-cocoa = [ - {file = "pyobjc-framework-Cocoa-9.0.1.tar.gz", hash = "sha256:a8b53b3426f94307a58e2f8214dc1094c19afa9dcb96f21be12f937d968b2df3"}, - {file = "pyobjc_framework_Cocoa-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5f94b0f92a62b781e633e58f09bcaded63d612f9b1e15202f5f372ea59e4aebd"}, - {file = "pyobjc_framework_Cocoa-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f062c3bb5cc89902e6d164aa9a66ffc03638645dd5f0468b6f525ac997c86e51"}, - {file = "pyobjc_framework_Cocoa-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0b374c0a9d32ba4fc5610ab2741cb05a005f1dfb82a47dbf2dbb2b3a34b73ce5"}, - {file = "pyobjc_framework_Cocoa-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8928080cebbce91ac139e460d3dfc94c7cb6935be032dcae9c0a51b247f9c2d9"}, - {file = "pyobjc_framework_Cocoa-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:9d2bd86a0a98d906f762f5dc59f2fc67cce32ae9633b02ff59ac8c8a33dd862d"}, - {file = "pyobjc_framework_Cocoa-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:2a41053cbcee30e1e8914efa749c50b70bf782527d5938f2bc2a6393740969ce"}, -] -pyobjc-framework-collaboration = [ - {file = "pyobjc-framework-Collaboration-9.0.1.tar.gz", hash = "sha256:9b61a3c113c0eaefa5a21effd3e28f3cc5955faad385b7ddba2a5df44f68a1d2"}, - {file = "pyobjc_framework_Collaboration-9.0.1-py2.py3-none-any.whl", hash = "sha256:7496248e3013d43cf609a8ba0612f4bdc069105e6bd2dd1b8363125bb1ec277d"}, -] -pyobjc-framework-colorsync = [ - {file = "pyobjc-framework-ColorSync-9.0.1.tar.gz", hash = "sha256:05835196a81a9362d3a263a4092c6c6709ca48ef218d233cf2ec69f5c57a9266"}, - {file = "pyobjc_framework_ColorSync-9.0.1-py2.py3-none-any.whl", hash = "sha256:ca3ff3558febd237c4bf4db36b0e417540569ec7b05af17c3805012bb3a438c0"}, -] -pyobjc-framework-contacts = [ - {file = "pyobjc-framework-Contacts-9.0.1.tar.gz", hash = "sha256:b58f12b9b42b1c33215ebb90663b8e44d53001f2c169e889008ddc715b349e5f"}, - {file = "pyobjc_framework_Contacts-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:19c8bdbcdd2478b125529b9bb493a5c547ad4af6f03ca2bb7480eb10e54468a3"}, - {file = "pyobjc_framework_Contacts-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:1cdf6902fbc1f8c7fb31fbd36e60e41e1264b5b971726edcb6de4e829d25c88c"}, - {file = "pyobjc_framework_Contacts-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:db5112f2c4dbf070d1a986657fb40c23ec6cdea98b33eff454dff31ddaecf6bf"}, -] -pyobjc-framework-contactsui = [ - {file = "pyobjc-framework-ContactsUI-9.0.1.tar.gz", hash = "sha256:235d7692b2ec778d31568d8996cad36b2497bb273f309f8976c5239c77242a75"}, - {file = "pyobjc_framework_ContactsUI-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:69514c821233471bc2c17a29da426dafcadac100276f929e0227518421382ab8"}, - {file = "pyobjc_framework_ContactsUI-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:95a6263469c4dfc23a4c04924479a5a748cb6de7ff06a8299b8b1db78e74f08b"}, - {file = "pyobjc_framework_ContactsUI-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:9bfe5686cb126587fd6f309252a181cb213cca59e14aa1f829f7dfd5faef1e57"}, -] -pyobjc-framework-coreaudio = [ - {file = "pyobjc-framework-CoreAudio-9.0.1.tar.gz", hash = "sha256:f02a1d61296b38d82477cbcbb2ddd4e8585e88b0dabbf8655450690c1bfb7254"}, - {file = "pyobjc_framework_CoreAudio-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2ea443b5b2e57a457eded82f6560302556903d63232bb816b525804582e7eebe"}, - {file = "pyobjc_framework_CoreAudio-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3eb9f784332d797d3d27047d05e6cb273911705987268789eec49a33b8536324"}, - {file = "pyobjc_framework_CoreAudio-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:759b50a5c0311a8a5a9000e16b21cdc2bb7c6e69f66cd7d9c67dc9f19b57faa4"}, - {file = "pyobjc_framework_CoreAudio-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5f081853becaca774c42bd0d3fd2d145747543d631b6beb0160ba5cbb619e4f2"}, - {file = "pyobjc_framework_CoreAudio-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:34b57b0320407729ce3a67d1a7a3e5b2f81e43c64ebbba87e390f467c4825c0a"}, - {file = "pyobjc_framework_CoreAudio-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75eeefe51560df195ec456b8acb810a41942cd5e4e8bc72d11ebc4d0da93ce35"}, -] -pyobjc-framework-coreaudiokit = [ - {file = "pyobjc-framework-CoreAudioKit-9.0.1.tar.gz", hash = "sha256:61a39f00e25214486be432fd31eb2b9d8e54da9a1361b9b3a1025201876417ef"}, - {file = "pyobjc_framework_CoreAudioKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:0bd5f6d903de7e8507a8ed77d7663d2b03eae0b558f58c1823e525848e133130"}, - {file = "pyobjc_framework_CoreAudioKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:1ae4899d5c969f760f8dfa8b65856cc5b95a0c88feb341265d39909ca35d69ce"}, - {file = "pyobjc_framework_CoreAudioKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:95f2c281e3c38bdeb62843e0a2a309dd0e821258e2030e06136f9b0adc4d6f2f"}, -] -pyobjc-framework-corebluetooth = [ - {file = "pyobjc-framework-CoreBluetooth-9.0.1.tar.gz", hash = "sha256:bf008d7bfe13cda12a43ed82346acfad262e90824086b145394c154531b51841"}, - {file = "pyobjc_framework_CoreBluetooth-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:62f15fc6e1d864a5e6afd26fe01947e5879b5322af23719d988981ca65b34a30"}, - {file = "pyobjc_framework_CoreBluetooth-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:15673b480b3695aba87ce9574154bd1997f03a784969642b0da5e990e9679f48"}, - {file = "pyobjc_framework_CoreBluetooth-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:3560c55de7799cd7468b1282d6c2fca4823896ffbcb7d53be69b55c01a44592e"}, -] -pyobjc-framework-coredata = [ - {file = "pyobjc-framework-CoreData-9.0.1.tar.gz", hash = "sha256:aca27739366621c6986651f0ea68d47341b1e9b2bf0f118b6972a68ebdab7abd"}, - {file = "pyobjc_framework_CoreData-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:7f07fadd9ab57840ed1e3eebcfcaab866dcc9df07ee4a29466983e6854edcc5e"}, - {file = "pyobjc_framework_CoreData-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:4edad2b587fd77cde90b60253514e212825efa56b3a298249ac396e126bcff53"}, - {file = "pyobjc_framework_CoreData-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:f0a1c3eb3a0f4817251356a3ed47d223f3eeadf49d6d2d8c3ee173c437b6636d"}, -] -pyobjc-framework-corehaptics = [ - {file = "pyobjc-framework-CoreHaptics-9.0.1.tar.gz", hash = "sha256:cb5e08a19509d7bc00a9e17a0b412a66aee64aa020dd0114767603b1aa1da789"}, - {file = "pyobjc_framework_CoreHaptics-9.0.1-py2.py3-none-any.whl", hash = "sha256:a262912910e51ec6417160d66827c05a99b6fbee89908ead4e346dc710ec1eed"}, -] -pyobjc-framework-corelocation = [ - {file = "pyobjc-framework-CoreLocation-9.0.1.tar.gz", hash = "sha256:a1454ed210ffb3eb46df3876741fabe8ebe7b877074868df9ee550345a6ee6d5"}, - {file = "pyobjc_framework_CoreLocation-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:0d37300e3bc5ed5a4b3f15e1d31f3f6a6c6868adaf318a59676755f7f49412e8"}, - {file = "pyobjc_framework_CoreLocation-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:0bc61b23dc8d43095b7e8e83db0aab3a97ab8d3a00e821bcf5001aa325682d30"}, - {file = "pyobjc_framework_CoreLocation-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:f7ade875bef13d0aa91ec0bd3f4f615a0c86516c1beee2607c44993c0c663a06"}, -] -pyobjc-framework-coremedia = [ - {file = "pyobjc-framework-CoreMedia-9.0.1.tar.gz", hash = "sha256:0d99adad1404525f44a2493b3fe73c3ded61c67f2973c4d940ff9fafb3f85d8f"}, - {file = "pyobjc_framework_CoreMedia-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:12d430da863393f1b9c250ea18f6da5e237a936aed3779cff64c5d468d7ae2e8"}, - {file = "pyobjc_framework_CoreMedia-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:182b89c85afa068ba077ff6c0ef4ed17e1f3997512bfb8aca2d4c3c7f58da771"}, - {file = "pyobjc_framework_CoreMedia-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:79450db21e54840f51301f84dfbe22dab227563176f7894de3ec5891e6ba9a5f"}, - {file = "pyobjc_framework_CoreMedia-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:853d9ba4299b168a59d034a7c68fbd9d6c5a128aa9c4e9f275abf1fac339f4c7"}, - {file = "pyobjc_framework_CoreMedia-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:b69b4c1a86f43b3d8b1daf414907290c731fc463eb90ab33dcc451a0c607df9f"}, - {file = "pyobjc_framework_CoreMedia-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c8cf230181b75bf4892e0f328c289bb9250d177617195cfaa39351f4fa5a9bc1"}, -] -pyobjc-framework-coremediaio = [ - {file = "pyobjc-framework-CoreMediaIO-9.0.1.tar.gz", hash = "sha256:0e561f1c4de73495d87bef01649cb777338b149808dcd90ded5bbc14e4bd5e0e"}, - {file = "pyobjc_framework_CoreMediaIO-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:4dfdd57b32429efbd345f326ac3dda8f58ec2a981afdf8b853b591cf8be92976"}, - {file = "pyobjc_framework_CoreMediaIO-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:249fef3192358d45ca3354a653481a1a335c406efb9a74bcaa1e37b5f66f3c6c"}, - {file = "pyobjc_framework_CoreMediaIO-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:30d5cbfe45e0307813d740a8f71825a1087358b7fdc8a4a7372ba96e5a7928cd"}, -] -pyobjc-framework-coremidi = [ - {file = "pyobjc-framework-CoreMIDI-9.0.1.tar.gz", hash = "sha256:b0294311db2f9421cfad4aafaa925c1e649faf3847fb3c6c9cd9892e094783c3"}, - {file = "pyobjc_framework_CoreMIDI-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:de93a87b16eb569b5911d5084ec79ac90c0c83aaa56d407ac63306eecf344971"}, - {file = "pyobjc_framework_CoreMIDI-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:338f2aaa09c1278ba3c75736969a31bcd2a1f5f9ad8df420dea67ae25afbe581"}, - {file = "pyobjc_framework_CoreMIDI-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:2691a896520850b80d73bd943e9665a35d044f2ff9a3eef4f011ed6d3b738096"}, -] -pyobjc-framework-coreml = [ - {file = "pyobjc-framework-CoreML-9.0.1.tar.gz", hash = "sha256:216731388c85a2d8d00b6d9045e4637b5375c8777fe59795edd8e91a0cb2c4aa"}, - {file = "pyobjc_framework_CoreML-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:c2368c25203509f4765f512afe4dedec9eaf39a20ce95c2fe8ef7edd757815b2"}, - {file = "pyobjc_framework_CoreML-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:1f52b3324fca825b0c89e3e2a3432a39aae0bf4dd17f7b89c2d0cf5fdfb67610"}, - {file = "pyobjc_framework_CoreML-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:4e8586b78b40d62f3aa0e731cc494a39f342c674626659bcfcf6bb05de2d5473"}, -] -pyobjc-framework-coremotion = [ - {file = "pyobjc-framework-CoreMotion-9.0.1.tar.gz", hash = "sha256:7a5d2e9e2134779902dbfee8f1d8d9b3920f7399a85b5f8c91079600788423f6"}, - {file = "pyobjc_framework_CoreMotion-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d1634e114b9fff03b376ee560d5d62f1bb0d2945a0411bacfa6c78f24d3bfbd0"}, - {file = "pyobjc_framework_CoreMotion-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:20e7ff571574d08d8ba198241826e20eea598e94c77adaf82ad7af97b9a17efe"}, - {file = "pyobjc_framework_CoreMotion-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:81bfb7e2c74115c048d0ac0ed980f36d32be5521493b403bea72a47f6e95502c"}, - {file = "pyobjc_framework_CoreMotion-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:071882530abfbc6dcad4cca7023f8d39df0c22a22438acbe6f96051a501b45ae"}, - {file = "pyobjc_framework_CoreMotion-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:29115ca6dfe5630475a97381a16beedffe5d36e2a3cd9d7b843c4ac3c5156152"}, - {file = "pyobjc_framework_CoreMotion-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a27b70a240cf448dadd6693165dad5ad312f44be20feb1668d7fb72c7f28c042"}, -] -pyobjc-framework-coreservices = [ - {file = "pyobjc-framework-CoreServices-9.0.1.tar.gz", hash = "sha256:35dee25133c935593b8eb71333166b9b69b25a85e2d648eaabd9fa1eec57d10f"}, - {file = "pyobjc_framework_CoreServices-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:8c2527cba2c2e7af7c47d0a8fdb0b4291f3ca994ff2bfd458f10a69402b2d92f"}, - {file = "pyobjc_framework_CoreServices-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:33a739c2c9efdf8aaf41fcd916553bc7203bdf16e9455fe8299471eaf4604cc9"}, - {file = "pyobjc_framework_CoreServices-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:539fd0b018c19281ef1d7c9f5e9e0cf757c7f8541eeb9691e21aa19f42cbdbc1"}, -] -pyobjc-framework-corespotlight = [ - {file = "pyobjc-framework-CoreSpotlight-9.0.1.tar.gz", hash = "sha256:c436faf70d29f0eabb22b0c3f96189bc1168dc8ab6f1872b0618e3c7accbcfeb"}, - {file = "pyobjc_framework_CoreSpotlight-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:ca9a586015f781331e7904af8f32b5c07687978f42b198f541656a7ac40bb6a2"}, - {file = "pyobjc_framework_CoreSpotlight-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:444c3e7089f97d2744bbbde51f4c4887d400358100aa4a1055f1203962235011"}, - {file = "pyobjc_framework_CoreSpotlight-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:67a41f953cb128dbf3c7497ad710feb11cd1af4e249fe6eb8146c4eeb67a9144"}, -] -pyobjc-framework-coretext = [ - {file = "pyobjc-framework-CoreText-9.0.1.tar.gz", hash = "sha256:0128b6360a492a2a6560f36ae4fb721991b545faed4da1dab3664d8ed2083676"}, - {file = "pyobjc_framework_CoreText-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:54110ae9b21db1e74302d8ba245febe21ae0f366b25197739ac62c31dfd257eb"}, - {file = "pyobjc_framework_CoreText-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:749b352e1ae35f94b9b10e3c41d3194648d2eea30a8103c86f6218ffb9d6f4de"}, - {file = "pyobjc_framework_CoreText-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e74a295693ae11a8f333ea94e7beb930f1ffec465549d860ba9a97f0658d1c42"}, - {file = "pyobjc_framework_CoreText-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5af27750b5f6c1ee5952c04940561563cf22c0b6aedd92eb8c04b08004ef9531"}, - {file = "pyobjc_framework_CoreText-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:f93f0d81edc2fad32ec997bfa87cae3137571dd2c4728f3ea5299979c5081083"}, - {file = "pyobjc_framework_CoreText-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:cef114e352c3404b57ebec9a9b78600754494ccf2ad3dd9c6c29dbf553701269"}, -] -pyobjc-framework-corewlan = [ - {file = "pyobjc-framework-CoreWLAN-9.0.1.tar.gz", hash = "sha256:1193f2d06c92ec8afe7438c3110957f599ee39d2ccdfc2fcabb749306faacbae"}, - {file = "pyobjc_framework_CoreWLAN-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:4d26bb108b0489d6a1021f1800bec299993879181f1c37b9b56120fd92931f7f"}, - {file = "pyobjc_framework_CoreWLAN-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:71cf4b4e4dcfa42f436a6269ce8b2b2b8def5a81616a87daf85170ce7bb37692"}, - {file = "pyobjc_framework_CoreWLAN-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:84b2f731594b2afdd0b8b39909818ff70597df9f325712d936bfb5194b153a82"}, -] -pyobjc-framework-cryptotokenkit = [ - {file = "pyobjc-framework-CryptoTokenKit-9.0.1.tar.gz", hash = "sha256:b2f88362a2a9cc4b2e1df3163a2ad931f8db02a617f8536a630cc5bf6a64774c"}, - {file = "pyobjc_framework_CryptoTokenKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:61fa881fbd0eded09f6aac2e8e1ab695a9074b5569f6dbcd476fac917d48fc1a"}, - {file = "pyobjc_framework_CryptoTokenKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c56284e295f93a4fcab9cd159284cf6c5cbafca153148ee6b7526fbf037627b8"}, - {file = "pyobjc_framework_CryptoTokenKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:8b138df105b38b0c922c498c2e06df30246744de349e66fdd961e42bf8ac3d2f"}, -] -pyobjc-framework-datadetection = [ - {file = "pyobjc-framework-DataDetection-9.0.1.tar.gz", hash = "sha256:cfe623dec691e6e58ad9e057173b929f88292860a41aab26033dcad002b4ca57"}, - {file = "pyobjc_framework_DataDetection-9.0.1-py2.py3-none-any.whl", hash = "sha256:5b0bc15a9ceb9dc9bc24717dc293b3e8c1caf0741beef0a479cb6df10039051e"}, -] -pyobjc-framework-devicecheck = [ - {file = "pyobjc-framework-DeviceCheck-9.0.1.tar.gz", hash = "sha256:e866c3dd80dc91c8d88bd0e8065d9b2c366ee061b5597f1ea6be1a3fc0efd6df"}, - {file = "pyobjc_framework_DeviceCheck-9.0.1-py2.py3-none-any.whl", hash = "sha256:3817406c6923789c586d40f33e3518b085c11080e6459e3a1749998e39e7c577"}, -] -pyobjc-framework-dictionaryservices = [ - {file = "pyobjc-framework-DictionaryServices-9.0.1.tar.gz", hash = "sha256:c14357e58047ec92f9bd9e3c3bdbf06e66f2b7793300209faab760583d61e074"}, - {file = "pyobjc_framework_DictionaryServices-9.0.1-py2.py3-none-any.whl", hash = "sha256:e2f2fd8d0d833d2a211c0aea601d6291e118ac0e2c5da6445db9903b63f6d197"}, -] -pyobjc-framework-discrecording = [ - {file = "pyobjc-framework-DiscRecording-9.0.1.tar.gz", hash = "sha256:06def981e8c25e6c51e8918eedfb56fa983f2b71f1c7ae43a54f84416dc75d69"}, - {file = "pyobjc_framework_DiscRecording-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:9da94ab4370ed5b5d81e07ab626c7fa497b009e2d6d2918c096263dead797c6a"}, - {file = "pyobjc_framework_DiscRecording-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:0c79273077720bc0bc1a4f76ca3a8ee2f6cccc1e77fc39bf92b935c78bf6cb91"}, - {file = "pyobjc_framework_DiscRecording-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:7f61a356a1e0b7f98c2014714683ec1a1e69a9164b08d48fa2c4fbdaf05b298e"}, -] -pyobjc-framework-discrecordingui = [ - {file = "pyobjc-framework-DiscRecordingUI-9.0.1.tar.gz", hash = "sha256:db61399c2661232df599509db23e3c1ad2175bface2018d9e18e9240b4f181d4"}, - {file = "pyobjc_framework_DiscRecordingUI-9.0.1-py2.py3-none-any.whl", hash = "sha256:e21443da92bd121ea63732ce0367760f422fe9e72a3c210a179b47e34ec6e09f"}, -] -pyobjc-framework-diskarbitration = [ - {file = "pyobjc-framework-DiskArbitration-9.0.1.tar.gz", hash = "sha256:22a9f1bdd54822e65795a971f2a5e951ef89817cd6ad06d0ff1981b694942c3e"}, - {file = "pyobjc_framework_DiskArbitration-9.0.1-py2.py3-none-any.whl", hash = "sha256:6609768207e7008693cbb20efaeabfe8342ddbca59d0a90304b4717b3624f04e"}, -] -pyobjc-framework-dvdplayback = [ - {file = "pyobjc-framework-DVDPlayback-9.0.1.tar.gz", hash = "sha256:8593bbb207ff9287d97ad24e837b88b948ee79bd4f0ae2ae9e7ca449f2e4dc25"}, - {file = "pyobjc_framework_DVDPlayback-9.0.1-py2.py3-none-any.whl", hash = "sha256:c46e58f539659c3619fe66ed52cc3d7105149b83deee6a6360d3b12576cc9471"}, -] -pyobjc-framework-eventkit = [ - {file = "pyobjc-framework-EventKit-9.0.1.tar.gz", hash = "sha256:d6364f5a8858d4f806248be3ce0e7f30acae3943980ae4801c8d520623b9fed4"}, - {file = "pyobjc_framework_EventKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:714c35bd2dfc3b7ef55ac1d9339cec80762572f064f54a2fbc2d49a7c009692d"}, -] -pyobjc-framework-exceptionhandling = [ - {file = "pyobjc-framework-ExceptionHandling-9.0.1.tar.gz", hash = "sha256:9070bd892cc325f7f49a134007ffc30a6d2e5caa7a4fe0716bd19622b107e4e0"}, - {file = "pyobjc_framework_ExceptionHandling-9.0.1-py2.py3-none-any.whl", hash = "sha256:2e853b20911dae4532ddc5655602b14ac7d60e4c24b784e07f7879db24b6f179"}, -] -pyobjc-framework-executionpolicy = [ - {file = "pyobjc-framework-ExecutionPolicy-9.0.1.tar.gz", hash = "sha256:16bb5e1b26049d5cbf3f66cec40ee0ccb9cbb57594ee9d5abb1e9cde0572d2e5"}, - {file = "pyobjc_framework_ExecutionPolicy-9.0.1-py2.py3-none-any.whl", hash = "sha256:2c86a869846a2daac39117f2989f3b079214a1dcd06e528a73adb5908237a8ad"}, -] -pyobjc-framework-extensionkit = [ - {file = "pyobjc-framework-ExtensionKit-9.0.1.tar.gz", hash = "sha256:9752522f5e681c2e19519ff8b0bdaad0e48e33e6c5b23bdcec37ef997573a013"}, - {file = "pyobjc_framework_ExtensionKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:dd3c46e459e572485289f8e74c40bc99e8e7157c6fc42faa8a949e1de9cff169"}, - {file = "pyobjc_framework_ExtensionKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:cd94347faf3b1694d3b7d119d6323e3718004430b7aa335732bbb70b8fc1193d"}, - {file = "pyobjc_framework_ExtensionKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:4d75117470968dc8cf6e35dd789b645de78075719f17927c16609892d7d26da0"}, -] -pyobjc-framework-externalaccessory = [ - {file = "pyobjc-framework-ExternalAccessory-9.0.1.tar.gz", hash = "sha256:533f2a814ab9afcc8594d34f761017d30f0b66518af682fbcafc16b5cd612078"}, - {file = "pyobjc_framework_ExternalAccessory-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:3185689db07ad6389d7c2c80abcc8acf593472aee8d6891bd3e49012c3dad8b2"}, - {file = "pyobjc_framework_ExternalAccessory-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:d3846312bb59181d6f390dbc2ff300665f95a02118fd66c86bd830a623f833e2"}, - {file = "pyobjc_framework_ExternalAccessory-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:0d0d0d139bc35cbe160215d48c3c7712d583f09d135f53099e217b9bce46d010"}, -] -pyobjc-framework-fileprovider = [ - {file = "pyobjc-framework-FileProvider-9.0.1.tar.gz", hash = "sha256:80405ce146e2556a36a3918f7fa37d60905d9338483cb0521415a10dffb6027e"}, - {file = "pyobjc_framework_FileProvider-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cbc7e424916bd9e2c736b61a9d819f59b3b8de4f95debaf26e766c97f8d24ef8"}, - {file = "pyobjc_framework_FileProvider-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:44d89238c8d9413b3f6c726ceba2c2b9462a847429cb41ee4564028104c7a79d"}, - {file = "pyobjc_framework_FileProvider-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:284bdb82dc0d3c3b41d248691c4e2a8ff0ee820970cf2c359f6aa0b710ae5f58"}, - {file = "pyobjc_framework_FileProvider-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b1cf68dbe1101ba215141f8da3f58a14ca0b8f2faa86b9ad81bb54e36d0afc0e"}, - {file = "pyobjc_framework_FileProvider-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:ff916b7b10bc4e68018276456fd96ceb20e7acd0eafd492c84addd6f96a48ded"}, - {file = "pyobjc_framework_FileProvider-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a46a45c02a848a5b372c7f73a1da739687ceccecd66016cf8fa047680cc3dac2"}, -] -pyobjc-framework-fileproviderui = [ - {file = "pyobjc-framework-FileProviderUI-9.0.1.tar.gz", hash = "sha256:a93161410e66150131cc32ca99749950be870b47f8f599ea4b112c5125ac1a27"}, - {file = "pyobjc_framework_FileProviderUI-9.0.1-py2.py3-none-any.whl", hash = "sha256:70bddbaa5b81d113b2868c1ef4c0a07e5b37c4da134cf864d4e0c0577df3b9c8"}, -] -pyobjc-framework-findersync = [ - {file = "pyobjc-framework-FinderSync-9.0.1.tar.gz", hash = "sha256:1661bac4eda64015f331b15fea394a9e10f4778d0307bb9933b9400de7fbb575"}, - {file = "pyobjc_framework_FinderSync-9.0.1-py2.py3-none-any.whl", hash = "sha256:05dad77c6994a89056932f6c876ad87366169a3f8d9136330f71da88317d9f6b"}, -] -pyobjc-framework-fsevents = [ - {file = "pyobjc-framework-FSEvents-9.0.1.tar.gz", hash = "sha256:31643db10d27f712a701ca0864adf78426b19d7b3c56dbf0053d13ab4f2f4ae6"}, - {file = "pyobjc_framework_FSEvents-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:e464f68d5b0aae932fc2c99fe1cdbb70c4892b78d0d5c7ee1c7c2815ad7e1f76"}, - {file = "pyobjc_framework_FSEvents-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:d0903b2f6ae09b5042d5a15539a580d18e6f4532d18e8c0e52f1f4b0c05f9028"}, - {file = "pyobjc_framework_FSEvents-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:69d7ed796024c64418f3e848b03e40dbdaf98bf8c375ed621e5ec64e3775331d"}, -] -pyobjc-framework-gamecenter = [ - {file = "pyobjc-framework-GameCenter-9.0.1.tar.gz", hash = "sha256:a3a4e7207bc63ec4a9f522781fe4081bff3d03ebc9d773d2b4f8da788ebb6068"}, - {file = "pyobjc_framework_GameCenter-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:bebd6618c5e1eef6bca9a4024c918f20b83b33cb7b7e212d9c45e635aff3a32a"}, - {file = "pyobjc_framework_GameCenter-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:37f5bc6f62fac8ae66c3711bef62782e78a4d898a82962ce99ae79178dea771b"}, - {file = "pyobjc_framework_GameCenter-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:5bdf3e78cc5549b1ce276c4c45178b6049551a1ab1d7d61660302e30e6f0b562"}, -] -pyobjc-framework-gamecontroller = [ - {file = "pyobjc-framework-GameController-9.0.1.tar.gz", hash = "sha256:1a9c3d30a26a249217599be64ae93a0ee9b331b2e2461a30165c646b2e473cfb"}, - {file = "pyobjc_framework_GameController-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:8e6d2c2d16617acaf66f8f8a0b273014bf851314b4fc0a8af57689f51e279a95"}, - {file = "pyobjc_framework_GameController-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:1dc1dfd3aa154993648654f840ed789b08ffa15eac1a158e9d8d311093c34805"}, - {file = "pyobjc_framework_GameController-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:3c276590b14bbc1e110e54bffaa18dbb4777718ff1ea3371e1ec6559cbcade17"}, -] -pyobjc-framework-gamekit = [ - {file = "pyobjc-framework-GameKit-9.0.1.tar.gz", hash = "sha256:dba15ad934f048950fb4b8aeaeb79b9c11575970a5ab696d2f37ccce952f669d"}, - {file = "pyobjc_framework_GameKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:656fe06b0fd818670f272a367a00f864ab4428ea982ca7d3dc398995be744225"}, - {file = "pyobjc_framework_GameKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c3880eac357579d2bbe39711e2f15ae58024755ac945aa398a6ac990b4027bac"}, - {file = "pyobjc_framework_GameKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:afaaee6b63b2545b879105e228c873bcdcba87a0f364603513b13065d4d3400a"}, -] -pyobjc-framework-gameplaykit = [ - {file = "pyobjc-framework-GameplayKit-9.0.1.tar.gz", hash = "sha256:a5419cf0d93dfc3cf3937ffbcdb6bf8a4d0ff0f2bab04e3932ec92428c269195"}, - {file = "pyobjc_framework_GameplayKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:cd7384c49466802fb9d5026fc2b700ae3480ce514998f2459994ba0f93023a47"}, - {file = "pyobjc_framework_GameplayKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:e09d6e6e0b6f271505581158bb3e12336b3714d13b2420460588f91012808cda"}, - {file = "pyobjc_framework_GameplayKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:5f6e8ee5fc81c8e06048da632107b15d2824b55c234af582843463634585aad4"}, -] -pyobjc-framework-healthkit = [ - {file = "pyobjc-framework-HealthKit-9.0.1.tar.gz", hash = "sha256:b8cc849bbdfff195472775be6872ee630e764fa34a362b8ee1ddfe78c4201099"}, - {file = "pyobjc_framework_HealthKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d0797577219489a3968ae611546e3607e8af7a316ed92004e2992cd05f47ab1b"}, - {file = "pyobjc_framework_HealthKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:8a2277f84f82c928fdede7a065d747b6c40ae9c9dec54ff94fbf199bf3c158b6"}, - {file = "pyobjc_framework_HealthKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:0aacfea4dd1d18f13a6969cd873cc422767d125541975997b46e949f1bb86c90"}, -] -pyobjc-framework-imagecapturecore = [ - {file = "pyobjc-framework-ImageCaptureCore-9.0.1.tar.gz", hash = "sha256:03a236cb727269ee274e8aeeb970b1eaad10bae7be1b84167253a34cd155fb27"}, - {file = "pyobjc_framework_ImageCaptureCore-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:f065358499942e98fb2299d22ae035fb1f94ccbe3f73e986d2da2a1dcbff8854"}, - {file = "pyobjc_framework_ImageCaptureCore-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:79bf523781399dd921693f39b29de93a2057ba652cc9bef1ab93bab0da8ae553"}, - {file = "pyobjc_framework_ImageCaptureCore-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:112d1543ce6d3d724b55e2a9fb77ca46126751b145c1ce8c326b74e01821d165"}, -] -pyobjc-framework-imserviceplugin = [ - {file = "pyobjc-framework-IMServicePlugIn-9.0.1.tar.gz", hash = "sha256:8ff9078907ca322329c7b69b5eed5a597d46846c840c1056cee63864bb6da832"}, - {file = "pyobjc_framework_IMServicePlugIn-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:fea273597c67d2dce900cb8a225157131969b77490dd00110fa053121360dbfc"}, - {file = "pyobjc_framework_IMServicePlugIn-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:7989be303a045240d5bf28cbc1ab78d139c751fb96b3579a43372d3aa83d6535"}, - {file = "pyobjc_framework_IMServicePlugIn-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:51e5a68202fa3a4f6160a72a497c97ae5a4d7b951a4092cc3cefba9ec825661b"}, -] -pyobjc-framework-inputmethodkit = [ - {file = "pyobjc-framework-InputMethodKit-9.0.1.tar.gz", hash = "sha256:c948359e0abcfd3a2287edc35b149afa7b490e74a32bf08c6020b13e54107e82"}, - {file = "pyobjc_framework_InputMethodKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d280f1638d181b1158462c3c0f8f353597704c762507caa534de614c1223df28"}, - {file = "pyobjc_framework_InputMethodKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:227e1b61e5a0ba2ede32edd39483dade4cdc53a1cc00b5c655d11adc94303e67"}, - {file = "pyobjc_framework_InputMethodKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:675dc977b69ecd8d43b26db62c6d26987691da43adffb55922a00af8cb87e89b"}, -] -pyobjc-framework-installerplugins = [ - {file = "pyobjc-framework-InstallerPlugins-9.0.1.tar.gz", hash = "sha256:9697f42c49691e269902be9ce32382e0275fd3e5802219da29bf1973c2a3b017"}, - {file = "pyobjc_framework_InstallerPlugins-9.0.1-py2.py3-none-any.whl", hash = "sha256:77f0277eb9851df5d4c803c136d0d7abd52bd3c5208491ec6af67dd49b77165a"}, -] -pyobjc-framework-instantmessage = [ - {file = "pyobjc-framework-InstantMessage-9.0.1.tar.gz", hash = "sha256:4996b7a0d63dcff710ed3463ee27027586d1d9585efedf608e265465064d0a48"}, - {file = "pyobjc_framework_InstantMessage-9.0.1-py2.py3-none-any.whl", hash = "sha256:c2beda162affa8d08bc0ca6dc4db97aff17b8317db6662b1359028c8a41a1483"}, -] -pyobjc-framework-intents = [ - {file = "pyobjc-framework-Intents-9.0.1.tar.gz", hash = "sha256:556494335d12cefd7344ac1f6a371d6d0a6a573d876cc82fdbdfd351535fc42e"}, - {file = "pyobjc_framework_Intents-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:f4dd68a4ddb268563d97419b5a3d321043b31249b1c1b41d5a92eb366da24ecb"}, - {file = "pyobjc_framework_Intents-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:bf8b9b0a11ffe5069a7301c2a90bc281fc96ef9538a688a692af7eee6cc03946"}, - {file = "pyobjc_framework_Intents-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:f221a1a8ed684d132f8320c775f3a9d79524babc20a61cd6b0909ac1149f1a2a"}, -] -pyobjc-framework-intentsui = [ - {file = "pyobjc-framework-IntentsUI-9.0.1.tar.gz", hash = "sha256:f25a4eb6afa8d7c33450a6e718576178d23af00bad522ca20554bd869bc35038"}, - {file = "pyobjc_framework_IntentsUI-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ebf3afcd76855ac9e9ce843c5bff3a8fe03e0553119647d2f2e80631852f2c34"}, - {file = "pyobjc_framework_IntentsUI-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b31c17715e722637a73855d48f510f0962624969f474d082bd8ba28544beeee5"}, - {file = "pyobjc_framework_IntentsUI-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a698dde16f99fa9de9d25706b8a1190822add03dd2c7a258ccb7732b6fb85498"}, - {file = "pyobjc_framework_IntentsUI-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4aa384a06532182110351b17a99fc6743695585215ca3dd586f7a5d037031e6e"}, - {file = "pyobjc_framework_IntentsUI-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:4873145856cde7b85843f8a8fd7d31122ded7445ffc6e03d06bfdf2988e5c788"}, - {file = "pyobjc_framework_IntentsUI-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b37c72d7957f2fbeed7082ae796f1bb19940494afc65db68146ffdee3aea5ef9"}, -] -pyobjc-framework-iosurface = [ - {file = "pyobjc-framework-IOSurface-9.0.1.tar.gz", hash = "sha256:1fcaf483c0bad50363b03cc154b32e66adbab91151a3856051e6b2570fa8990c"}, - {file = "pyobjc_framework_IOSurface-9.0.1-py2.py3-none-any.whl", hash = "sha256:c06c94b8a69350a9f5d6dfad63b7018387b9d90cb0d2cc90942afad5ed049b34"}, -] -pyobjc-framework-ituneslibrary = [ - {file = "pyobjc-framework-iTunesLibrary-9.0.1.tar.gz", hash = "sha256:cd4bdd1ac154b9d279c4d62fc89901392468d1e0e7aa12a5dbcdf6dff5a8c572"}, - {file = "pyobjc_framework_iTunesLibrary-9.0.1-py2.py3-none-any.whl", hash = "sha256:f6400c9fc73308d00a171397875562f1b2cb1d6d999790fc5213f341083df8b9"}, -] -pyobjc-framework-kernelmanagement = [ - {file = "pyobjc-framework-KernelManagement-9.0.1.tar.gz", hash = "sha256:22a536ec5309e96dbbc4345f400b20b9619bff645d4079eba27059d4c026cc10"}, - {file = "pyobjc_framework_KernelManagement-9.0.1-py2.py3-none-any.whl", hash = "sha256:6c8ba8a8cd32039f559e7fa1247709d7e712547479b9e13a0a2f2bf4cc3654ce"}, -] -pyobjc-framework-latentsemanticmapping = [ - {file = "pyobjc-framework-LatentSemanticMapping-9.0.1.tar.gz", hash = "sha256:942fb8850ffd0056ab55f9fa599bbdd71bb970fa324014de21db83d152608bc9"}, - {file = "pyobjc_framework_LatentSemanticMapping-9.0.1-py2.py3-none-any.whl", hash = "sha256:04a77d254c3692984560455aa917caa813b8dd385114eff347d628a7ef39a5a0"}, -] -pyobjc-framework-launchservices = [ - {file = "pyobjc-framework-LaunchServices-9.0.1.tar.gz", hash = "sha256:d448e7990f0e00994bfa2eb9c1413c5a3e07fec84dd7facfabe1162f2e38a65f"}, - {file = "pyobjc_framework_LaunchServices-9.0.1-py2.py3-none-any.whl", hash = "sha256:81513cb767669ff432e062c41fecef87531a006b9efd534026f63515cd94ecf2"}, -] -pyobjc-framework-libdispatch = [ - {file = "pyobjc-framework-libdispatch-9.0.1.tar.gz", hash = "sha256:988c4c8608f2059c8b80ac520bc8d20a46ff85f65c50749110c45df610141fce"}, - {file = "pyobjc_framework_libdispatch-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6cd32fea76165157a623ef8871f83cfa627ea2e878417704d6ac9c284c4211d5"}, - {file = "pyobjc_framework_libdispatch-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2a0f8ba6b498a095edef07e7a55f11dda3a6b37706caaa0f954f297c9aa1122e"}, - {file = "pyobjc_framework_libdispatch-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:906f4e705b40ea878d0a7feddddac85965f9709f7a951c3d5459260d48efd56f"}, - {file = "pyobjc_framework_libdispatch-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0bd94e697e3739eaf093a9b6f5be9a2cc34faa96c66cc21d2c42a996a3b01242"}, - {file = "pyobjc_framework_libdispatch-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:7f9798c599acdd21251f57970bafabccc7fa723ae2a6d1fbe82f99ecfa3f7cf9"}, - {file = "pyobjc_framework_libdispatch-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:10a877b31960ee958873e5228f7b588c664014be8ad4d13a76a764482a18bf41"}, -] -pyobjc-framework-linkpresentation = [ - {file = "pyobjc-framework-LinkPresentation-9.0.1.tar.gz", hash = "sha256:f3f6935ded8ff58b41fb31b149535b7838ca7a575e38949e039d226749227bdc"}, - {file = "pyobjc_framework_LinkPresentation-9.0.1-py2.py3-none-any.whl", hash = "sha256:50a8fc89faeea0974dfc3d0201ea3c04c3a5396806077b42548daa1542b3bac5"}, -] -pyobjc-framework-localauthentication = [ - {file = "pyobjc-framework-LocalAuthentication-9.0.1.tar.gz", hash = "sha256:f440325d33b4ce87200f876940c6d89c91a80bdbfc4926d174a5f11cd664c3dd"}, - {file = "pyobjc_framework_LocalAuthentication-9.0.1-py2.py3-none-any.whl", hash = "sha256:e9daac430507f2fc245a3b714810f52873284905bb8e2f4fb87980dbe659ec34"}, -] -pyobjc-framework-localauthenticationembeddedui = [ - {file = "pyobjc-framework-LocalAuthenticationEmbeddedUI-9.0.1.tar.gz", hash = "sha256:cdfe1b35b7ffa4c57113c5aced5536b121a2edd2ef1ac7014cf23d25e354c524"}, - {file = "pyobjc_framework_LocalAuthenticationEmbeddedUI-9.0.1-py2.py3-none-any.whl", hash = "sha256:ed8e3ee8330ae973d76297b37476358e45b0e8e47129c2839a52e3393e9ccd79"}, -] -pyobjc-framework-mailkit = [ - {file = "pyobjc-framework-MailKit-9.0.1.tar.gz", hash = "sha256:5029867ff09c3ff33d1754a3d57c8c02d20810fab75821432e9bb5e9dea71629"}, - {file = "pyobjc_framework_MailKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:65803da7e051e5bd7cae8c0eb76f0098a73ffdb2d288f9e59af578bb8ac7a15d"}, -] -pyobjc-framework-mapkit = [ - {file = "pyobjc-framework-MapKit-9.0.1.tar.gz", hash = "sha256:70a0f31276ff51e5ff2d6657681b38121ad5e893db3bb170a2f4d7a22458622b"}, - {file = "pyobjc_framework_MapKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d7ca9b3c8f50a34f0397f2d533963e540f93532c46434bac9dbe282e1bd296b6"}, - {file = "pyobjc_framework_MapKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:125977a927621f6391473e42c13a5eeced43199a995c6de133701402d2af1077"}, - {file = "pyobjc_framework_MapKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:a645fd0b6767e93baa65b5628e2d1912f9967c057596d4d5df3c9aaec6c40cb0"}, -] -pyobjc-framework-mediaaccessibility = [ - {file = "pyobjc-framework-MediaAccessibility-9.0.1.tar.gz", hash = "sha256:c6d864b0fa65d157ce1b621f5cde4023c20d1242cf9eafb2a5e54b021c1789a8"}, - {file = "pyobjc_framework_MediaAccessibility-9.0.1-py2.py3-none-any.whl", hash = "sha256:dd191bb58ed82c635859f8011e44fd39ed6aa76b0e92ebf75b398132cd3413eb"}, -] -pyobjc-framework-medialibrary = [ - {file = "pyobjc-framework-MediaLibrary-9.0.1.tar.gz", hash = "sha256:33115e19393fe807c37989eaa7f947a4d338fab2e10d0864b4a9b0f65edbdc89"}, - {file = "pyobjc_framework_MediaLibrary-9.0.1-py2.py3-none-any.whl", hash = "sha256:4a13451b9ba84dda47d98724765147d616eb66f02649074dcae8cd8392c9ee35"}, -] -pyobjc-framework-mediaplayer = [ - {file = "pyobjc-framework-MediaPlayer-9.0.1.tar.gz", hash = "sha256:d070e6cbc408fee2a086b467982489acf9665cdd2cd8d32bb72b4ed75388d5d5"}, - {file = "pyobjc_framework_MediaPlayer-9.0.1-py2.py3-none-any.whl", hash = "sha256:3a97addaef70959c0a9eaa820c95cfa61b0a0b080a3f159e3b68953326dbf621"}, -] -pyobjc-framework-mediatoolbox = [ - {file = "pyobjc-framework-MediaToolbox-9.0.1.tar.gz", hash = "sha256:7a6e32e9b3d6e641a982ad7ab00b6b750ea8c1033927d0ba4042c9a0eb2ae9f2"}, - {file = "pyobjc_framework_MediaToolbox-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:252bdf27cc29a3c2a9accc2f967f07fcbbe142243648e8cad6b17f5a5a2b0f05"}, - {file = "pyobjc_framework_MediaToolbox-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:f54e0596e294f25a268bdea89afa381390b72156e99771ff6e0a67e1dc34c1aa"}, - {file = "pyobjc_framework_MediaToolbox-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:e48ff50213a995c04e49d2ff1400bf327bb8d0e30e2f3c30d500368c7befda08"}, -] -pyobjc-framework-metal = [ - {file = "pyobjc-framework-Metal-9.0.1.tar.gz", hash = "sha256:18ab8fb1ce2255b3527c2a0f3dee34739f5c4a0c9c11b4dcb7336d66a19c230c"}, - {file = "pyobjc_framework_Metal-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:3df130e57be86236f8d1e46a60b57d17a279da5ae492df8dc2d1c9e44507021e"}, - {file = "pyobjc_framework_Metal-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:92fc4160af1edf3404a2bec4b103730e4219f0172ac9e9744a41243edf7ab17b"}, - {file = "pyobjc_framework_Metal-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:b4b3988c364e5f95fc1c28ca56c0dc373978b1dac4c0c1febfa792fb825ff5cc"}, -] -pyobjc-framework-metalfx = [ - {file = "pyobjc-framework-MetalFX-9.0.1.tar.gz", hash = "sha256:4c3657c10054f882788c9f9ced2fb8a43501229b0ef4a77070f02f38b021d760"}, - {file = "pyobjc_framework_MetalFX-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:458059dba65a792958a5c11c2fd72bd7c7eb979b11a9aa945fe0d64812687078"}, - {file = "pyobjc_framework_MetalFX-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:f6de0a81dc0eb89f584d48dd5189c083fe2fb173a86e9281533d99e8708aef96"}, - {file = "pyobjc_framework_MetalFX-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:37eabc98d97f9eef3190f105d0f8b4fd434b292e91d70ade67c5b07a6912e0d1"}, -] -pyobjc-framework-metalkit = [ - {file = "pyobjc-framework-MetalKit-9.0.1.tar.gz", hash = "sha256:dc6087557e83d67adb907976d8c22954c8e984488ceed773cecffc9cc04e897e"}, - {file = "pyobjc_framework_MetalKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:fae7dc49e8f71bd8974532ed00ac69431b4ac4cc8aa10eb2c3299ba7dee31b08"}, - {file = "pyobjc_framework_MetalKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:148cd5eb0656f7681360f529804321e2af0e4fe9f3a1bd6c02e84e42a9baaabd"}, - {file = "pyobjc_framework_MetalKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:8dfccfe2ceeaea6074ec6a09f576ab722eefa6eaf1343df78e04e864b05be1fd"}, -] -pyobjc-framework-metalperformanceshaders = [ - {file = "pyobjc-framework-MetalPerformanceShaders-9.0.1.tar.gz", hash = "sha256:ecddfef23bbdd4f9942bdeabbcbc037c7256e49ed4646707672cf977e00f92c1"}, - {file = "pyobjc_framework_MetalPerformanceShaders-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:69029e3cea62652e3b43d60b6f778b4a9f50c57764d7022b09727b711bbea347"}, - {file = "pyobjc_framework_MetalPerformanceShaders-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:7d882e94a5357dd4e99a9c106965fda8bef2fdab7d93966cc98516834cc02959"}, - {file = "pyobjc_framework_MetalPerformanceShaders-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:704fa3c9b7d66a0708969da09d9f201f6aa316c763691a9420055500ce0dbbab"}, -] -pyobjc-framework-metalperformanceshadersgraph = [ - {file = "pyobjc-framework-MetalPerformanceShadersGraph-9.0.1.tar.gz", hash = "sha256:0b8f58b824d01152c2430d8329e94792cf75a535930501326a3a4eaf79b6c581"}, - {file = "pyobjc_framework_MetalPerformanceShadersGraph-9.0.1-py2.py3-none-any.whl", hash = "sha256:83ed5ed80d4fc94771d709a6b7e6534ab14e394a85488f9f649bd7c662bf3432"}, -] -pyobjc-framework-metrickit = [ - {file = "pyobjc-framework-MetricKit-9.0.1.tar.gz", hash = "sha256:81260069f8319ecf402968364ebe5af683e568f74cdb6d0005043238473462dc"}, - {file = "pyobjc_framework_MetricKit-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:674a42802d156870c5bb1c59410963e77d4c0289d56e5a0911706a84dd085c1f"}, - {file = "pyobjc_framework_MetricKit-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ce921bc9f52f7aa7f5fe64d0b2b9ce07125e90b36310d33a359bfad28844228d"}, - {file = "pyobjc_framework_MetricKit-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:9a9b50f58ef8c2725f4adfec24bf43ff86038f48c7810bdeaf5c25e1b0667549"}, - {file = "pyobjc_framework_MetricKit-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3acbe3e0c70e72c3da7e2400686aa29d0260eb0e7b5c476ce5d47c6d008a41e9"}, - {file = "pyobjc_framework_MetricKit-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:87a3036da0c89775cd47465c1a70a9e609ae1cba19a1b1d0370edb253eb26016"}, - {file = "pyobjc_framework_MetricKit-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f8c956eaed94e5d7ea2294a8108e0479f73d2173bd704bf7a5e17b4032cadc43"}, -] -pyobjc-framework-mlcompute = [ - {file = "pyobjc-framework-MLCompute-9.0.1.tar.gz", hash = "sha256:fd02e90f0e18999decaca7e647be64b40a8d30bf47b3d90ddf7b322b6c9315b4"}, - {file = "pyobjc_framework_MLCompute-9.0.1-py2.py3-none-any.whl", hash = "sha256:e1f37f7486e63dfbcdc3059bd52654e29ec3497e89e023eeba517d7c3b6dca1c"}, -] -pyobjc-framework-modelio = [ - {file = "pyobjc-framework-ModelIO-9.0.1.tar.gz", hash = "sha256:3ab77928b28497bcd1fd4b17bf32fb9b16dbe385344c2ed33ea259770c6b2709"}, - {file = "pyobjc_framework_ModelIO-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:9bdc622e7f503bd4bb69b38ae6c4494aac8008b9556d4ee912ff8771296383af"}, - {file = "pyobjc_framework_ModelIO-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:3359a711f02ae323174da0d6bb3e50d41cb9907df019ebd232d8375096d9a46c"}, - {file = "pyobjc_framework_ModelIO-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:2c1b6f9f30847774a9b810346f1d9d7acc59bc83723e04857706ea725b464fa5"}, -] -pyobjc-framework-multipeerconnectivity = [ - {file = "pyobjc-framework-MultipeerConnectivity-9.0.1.tar.gz", hash = "sha256:8d47607dddb5e13a64e27a7a23194573c6d478f9c8e27d1c4283949fc6adfdad"}, - {file = "pyobjc_framework_MultipeerConnectivity-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:acc3db2f21021f2e30115619f819fb392500aae27dbe4b23ad0eff37d8a44365"}, - {file = "pyobjc_framework_MultipeerConnectivity-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c4ac277625c7f7495f248a81971f5ad7cf171420704082a49191b174903421e3"}, - {file = "pyobjc_framework_MultipeerConnectivity-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:6112d1b7fb5def73b730d37f71b5efc278fb01a3366f9fd2af38fd388009476a"}, -] -pyobjc-framework-naturallanguage = [ - {file = "pyobjc-framework-NaturalLanguage-9.0.1.tar.gz", hash = "sha256:89f880ecd93fc7e4e6a82fd9dbc99f75ae0526fb2e5edfb59f7ec2ba5568c919"}, - {file = "pyobjc_framework_NaturalLanguage-9.0.1-py2.py3-none-any.whl", hash = "sha256:6791885064044a769d0324c676e9e2c0e66bd8e13daef201ba06562077885082"}, -] -pyobjc-framework-netfs = [ - {file = "pyobjc-framework-NetFS-9.0.1.tar.gz", hash = "sha256:da9c0ee6f92dbde748c2526d7c08cb1b00a40af93b8928564d2a1213bd223d20"}, - {file = "pyobjc_framework_NetFS-9.0.1-py2.py3-none-any.whl", hash = "sha256:30cce80d89a7e28e7139b7b46ef7df76f8417e277cdcfe87366666a76d94163a"}, -] -pyobjc-framework-network = [ - {file = "pyobjc-framework-Network-9.0.1.tar.gz", hash = "sha256:51840027f24f555249db93261b111173408a2736c9aabad4732e7b74117f12cf"}, - {file = "pyobjc_framework_Network-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:8aa43eff5491821398248c0493b8d64769ebe1556aadbcdcc69a1a0a3177aacb"}, - {file = "pyobjc_framework_Network-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:62163f8af137dd8607c9ddf774495cad175d74ae4d2ba04e02cfaf061428445a"}, - {file = "pyobjc_framework_Network-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:43c9d01ea2b96291b0a0f6714a2c9c934ca698fbdb7d733769bae4f59fedeb3d"}, -] -pyobjc-framework-networkextension = [ - {file = "pyobjc-framework-NetworkExtension-9.0.1.tar.gz", hash = "sha256:a6de4020f52eda61cfb86260782cd547d0d701702ce1d90edd497a155c0157e9"}, - {file = "pyobjc_framework_NetworkExtension-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d9ee62178d792ad55912db60e05b3d1ac4d610dbe57f8a05b886fb23bd4a9286"}, - {file = "pyobjc_framework_NetworkExtension-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:720db94435573de4179be6f02e99c37f6e84395c08ee85bb625b32e3a3b8d91b"}, - {file = "pyobjc_framework_NetworkExtension-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:4a9ee71697693b763e97196a9ff0d262a1b2ed3670a9aff98eeb8d26609eb7b5"}, -] -pyobjc-framework-notificationcenter = [ - {file = "pyobjc-framework-NotificationCenter-9.0.1.tar.gz", hash = "sha256:24331121e8dd0d7f18ce04a2d696922fe87494426a7903955b413572a6b2096b"}, - {file = "pyobjc_framework_NotificationCenter-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:9ee6d213b27764121c925ccfeb1d5306e0e6b76c32af25a62ad44af2db9b88dd"}, - {file = "pyobjc_framework_NotificationCenter-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:62802484c06b53bf1ec23adec115b44a64f2d3aaa0742e4ce7094d3a65b2a3a6"}, - {file = "pyobjc_framework_NotificationCenter-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:133f199bf52b3b048e8bc6d87f2a9a2adaa2f5a44ce9c88214cabe5e63cfb04f"}, -] -pyobjc-framework-opendirectory = [ - {file = "pyobjc-framework-OpenDirectory-9.0.1.tar.gz", hash = "sha256:89db260295add0ec107980b7593ce06931f3916c0f7fdb92788fdacbe9cd95de"}, - {file = "pyobjc_framework_OpenDirectory-9.0.1-py2.py3-none-any.whl", hash = "sha256:2235245f1bf157cc956c1e88fdff6906ff7568c2f7d91622b2e2ab66a8c5c81f"}, -] -pyobjc-framework-osakit = [ - {file = "pyobjc-framework-OSAKit-9.0.1.tar.gz", hash = "sha256:c20b9464f5ea0945f8f1b1eaeb0e4358b070854cebd6ce87d772a6c9dc0e8ccd"}, - {file = "pyobjc_framework_OSAKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:061831f13ac75ad3ac9a22df550f651bfcaa983ec3d6a390867fed9df86e716c"}, -] -pyobjc-framework-oslog = [ - {file = "pyobjc-framework-OSLog-9.0.1.tar.gz", hash = "sha256:964499ffc06ba3b347ef8a96d99a882ee5b5abdbc55c17722344c1d4535ec4f9"}, - {file = "pyobjc_framework_OSLog-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:63972a28a6b0268482a6f56f5f36bd31cc6a8680275d2455811514a1142aa838"}, - {file = "pyobjc_framework_OSLog-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:2c66baef93700512d376e79c2e48e4407499c263c20654993b6c883ac15618e1"}, - {file = "pyobjc_framework_OSLog-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:934d952ade3571644d7295d3ac91f25427dccd319f4a2c822cc1e58969e64e86"}, -] -pyobjc-framework-passkit = [ - {file = "pyobjc-framework-PassKit-9.0.1.tar.gz", hash = "sha256:3d422c41465baa6a9e7f0f4e85cb8dc773103dcbee1d284ca90ce49d036540ae"}, - {file = "pyobjc_framework_PassKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:962ce7609227a5eb36bf7aaa00c115fa9cc9663f4f7b4adede7a2508ce894d77"}, - {file = "pyobjc_framework_PassKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:29eed82852d998eeeb97effeef7d3080c6f36f4c7da64abe3ffd4cd3d2a2a00d"}, - {file = "pyobjc_framework_PassKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:10f9082a4328889ef71072d84d519411a44e1d7e79b78db7b62ebcf850e5eb5e"}, -] -pyobjc-framework-pencilkit = [ - {file = "pyobjc-framework-PencilKit-9.0.1.tar.gz", hash = "sha256:b2f0e8fca577f41e696389bc2571e316382aab22183932180f621c413d7caa9f"}, - {file = "pyobjc_framework_PencilKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:d5d96757ca9170a373af4e5cc52d791aefe3a4f9e6d09034459d684e61aadf37"}, -] -pyobjc-framework-photos = [ - {file = "pyobjc-framework-Photos-9.0.1.tar.gz", hash = "sha256:26bb7e2e92deb52d1641ae61faa095ef06dded2d245e00d0fe8be651e062f378"}, - {file = "pyobjc_framework_Photos-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:3618b76a74f1acb9cb18b3b2aa314ff0f2bf8d080682b9a177e03ea8fe9121f0"}, - {file = "pyobjc_framework_Photos-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:abf94d9d0aae89e6f93a22b926b5ddba21da42a1e23989b7824e649a0397d77b"}, - {file = "pyobjc_framework_Photos-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:c5a2db5570e65772e5b5ef13cbfb6298a0f6be8794d9f516cc26dda7c9047fd0"}, -] -pyobjc-framework-photosui = [ - {file = "pyobjc-framework-PhotosUI-9.0.1.tar.gz", hash = "sha256:9fe98cb87dc2547612ae339f7d239c62eec7736e0cc24de2bb572adb3c5df2a8"}, - {file = "pyobjc_framework_PhotosUI-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:4dcd0b4a2de49033778090316eef1c180c378527009dbb14b75ee35094d58430"}, - {file = "pyobjc_framework_PhotosUI-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:1282d95844c474f3b59320c6860561d7b30fe6a5d4b36fc635f41892ab7dad96"}, - {file = "pyobjc_framework_PhotosUI-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:736b1cdf8de7f952d9742f5587371e04dc80217847166bcbfb26603f8c8a2a90"}, -] -pyobjc-framework-preferencepanes = [ - {file = "pyobjc-framework-PreferencePanes-9.0.1.tar.gz", hash = "sha256:cf15472798ba16f0097326de1bb42e46f78b6c40447f528fe732cfee500e13a1"}, - {file = "pyobjc_framework_PreferencePanes-9.0.1-py2.py3-none-any.whl", hash = "sha256:3895ad636420cff1f4f1d7e4bad566e0b918a270e5cca0532f45010a61211fda"}, -] -pyobjc-framework-pubsub = [ - {file = "pyobjc-framework-PubSub-9.0.1.tar.gz", hash = "sha256:18c96b948e4575c26f4b43e5532755d31b9228bd00c5d39b2977dc67dd47361a"}, - {file = "pyobjc_framework_PubSub-9.0.1-py2.py3-none-any.whl", hash = "sha256:7946f9a7cefc930518763766c540a79aa93a254e6f7edb80452656da2324d297"}, -] -pyobjc-framework-pushkit = [ - {file = "pyobjc-framework-PushKit-9.0.1.tar.gz", hash = "sha256:444102fce2244cf8fc3853848707643c4bf204e60bf720687da69fc9982efef3"}, - {file = "pyobjc_framework_PushKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:80da0335ec9b9dfa21b12528e1a84864e6d90b6cd203084b53cbfd88b8c5a347"}, - {file = "pyobjc_framework_PushKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:f87ad6fd0698410dc4df71a6a2bfc157816c3b53c8819bf7aeb1863e56527431"}, - {file = "pyobjc_framework_PushKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:7f5ec168557fe93d3fa3cb37fba2e49f83c04c8b31ca14783bfff41544a41f7a"}, -] -pyobjc-framework-quartz = [ - {file = "pyobjc-framework-Quartz-9.0.1.tar.gz", hash = "sha256:7e2e37fc5c01bbdc37c1355d886e6184d1977043d5a05d1d956573fa8503dac3"}, - {file = "pyobjc_framework_Quartz-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:13a546a2af7c1c5c2bbf88cce6891896a449e92466415ad14d9a5ee93fba6ef3"}, - {file = "pyobjc_framework_Quartz-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:93ee6e339ab6928115a92188a0162ec80bf62cd0bd908d54695c1b9f9381ea45"}, - {file = "pyobjc_framework_Quartz-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:066ffbe26de1456f79a6d9467dabd6a3b9ef228318a0ba3f3fedbdbc0e2d3444"}, - {file = "pyobjc_framework_Quartz-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9b553be6ef672e0886b0d2c77d1841b1a942c7b1dc9a67f6e1376dc5493513"}, - {file = "pyobjc_framework_Quartz-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:7b39f85d0b747b0a13a11d0d538001b757c82d05e656eab437167b5b118307df"}, - {file = "pyobjc_framework_Quartz-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:0bedb6e1b7789d5b24fd5c790f0d53e4c62930313c97a891068bfa0e966ccc0b"}, -] -pyobjc-framework-quicklookthumbnailing = [ - {file = "pyobjc-framework-QuickLookThumbnailing-9.0.1.tar.gz", hash = "sha256:72ca8581820e4a431e9518cddcb0b00c3a1d0c234dfd996b3969d3e6208e1cdb"}, - {file = "pyobjc_framework_QuickLookThumbnailing-9.0.1-py2.py3-none-any.whl", hash = "sha256:1cac31fec11adb108357591856b07602812358f9adbb0e7611644a1e3d7d6ef4"}, -] -pyobjc-framework-replaykit = [ - {file = "pyobjc-framework-ReplayKit-9.0.1.tar.gz", hash = "sha256:6242ca6f61458f5d0aea53a8d0ec5dc1bf32bce018a169b8293c17a0b7ba0e6b"}, - {file = "pyobjc_framework_ReplayKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:ab076969b7b4996d2d289cbdb4704ada202679e4c9b87cc07f3786d1f6b727b5"}, - {file = "pyobjc_framework_ReplayKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:9bf2dbaac9241dfcf6b353a4b8feef9839cf71cb483a458ffb3dc72ffc435cc3"}, - {file = "pyobjc_framework_ReplayKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:15383b58d767776cd1c1ea843d0148202d133947acd812ccd275cbb2a438ea4e"}, -] -pyobjc-framework-safariservices = [ - {file = "pyobjc-framework-SafariServices-9.0.1.tar.gz", hash = "sha256:a6433583192e30f7f70b0d3282237389f56bfc1ab3ac00fc616606b869e9e0d8"}, - {file = "pyobjc_framework_SafariServices-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:3ac96bc34b7b1075ba28e237e5b2c014fcf4d4d9b777e666af318204f57e290e"}, - {file = "pyobjc_framework_SafariServices-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:38d368c1369141489b0eab7dccf9c42fdf000909bace79f8d9f2dbbec2b2ae96"}, - {file = "pyobjc_framework_SafariServices-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:d5860e055611aba04301731ae16562b58848dc19c42d299db28b544acfeb4c57"}, -] -pyobjc-framework-safetykit = [ - {file = "pyobjc-framework-SafetyKit-9.0.1.tar.gz", hash = "sha256:afa2b0012555c9f5b390d1fd8d4283bcb0ede09c9b109f5fdc4143e103a12627"}, - {file = "pyobjc_framework_SafetyKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:71c771813cb2ff83725e2abe9d138ca45eeb2efc05e7135dd5396456e2ba5265"}, - {file = "pyobjc_framework_SafetyKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:811d9a9546a4a1515cba455cdc45e04fba0bd4a0500c5c945edbeb0b9e802647"}, - {file = "pyobjc_framework_SafetyKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:56580f6298630a01b044349aad0ad5cb0e25dd299d7a6b3f053c7501ce37e6f1"}, -] -pyobjc-framework-scenekit = [ - {file = "pyobjc-framework-SceneKit-9.0.1.tar.gz", hash = "sha256:55861c560bfc987236100e68e4ecd39155888492e392a4caa78991e314f86f59"}, - {file = "pyobjc_framework_SceneKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:bfdeae0b0c6e5efaca3341953b0e209af9bc9220489adc7d6b48fef8b064e8e2"}, - {file = "pyobjc_framework_SceneKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:36833dc44b0809f3dd15649fa64c7092406bfe61b1b88f1022c429fbaf29b990"}, - {file = "pyobjc_framework_SceneKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:cc1dc6fd03396bfb6b4e81bcf95b4660ac4637bde68a038d1256856064f985d3"}, -] -pyobjc-framework-screencapturekit = [ - {file = "pyobjc-framework-ScreenCaptureKit-9.0.1.tar.gz", hash = "sha256:4fc0b5701b69ce218a574749df561e091b3a36f53450ed66386c6eac2c8d1c7b"}, - {file = "pyobjc_framework_ScreenCaptureKit-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:defc0763bcc627488546c89d1f17147a9416df918a0eb7ce6846f3d48c6ded1f"}, - {file = "pyobjc_framework_ScreenCaptureKit-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45dfaaa2cab263b4f2799d4329cd9062f28c51466d120152225b45d82ca87824"}, - {file = "pyobjc_framework_ScreenCaptureKit-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:33964a34849ccaabb41cfacc969290f3c45f4ad6c82362745afa3db4d793eb59"}, - {file = "pyobjc_framework_ScreenCaptureKit-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e2055759c3dca6b9d6778d763fe7bebdc62787b1f8d7d51c73b81dd58e0b633d"}, - {file = "pyobjc_framework_ScreenCaptureKit-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:377a84085b036e0f9ab268ef0587be013285a8f3254f16f4af37faaa00d58bb8"}, - {file = "pyobjc_framework_ScreenCaptureKit-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:519460f5a905ecf2d84758b1fe0895def4860cb3b2410aa47ae19e1f366b0859"}, -] -pyobjc-framework-screensaver = [ - {file = "pyobjc-framework-ScreenSaver-9.0.1.tar.gz", hash = "sha256:632a1fb94105554d53a2b329fdf47f9fd1ccfe6401d40d7be4b87312f3ec1f94"}, - {file = "pyobjc_framework_ScreenSaver-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:b63761613e000d19325f6f0791c816ae237235388b4074039077903630dd6e4e"}, - {file = "pyobjc_framework_ScreenSaver-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:7621fda2359091344641f608c23d184027ac3c3930aff3c474ab40c2882683d4"}, - {file = "pyobjc_framework_ScreenSaver-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:8d653e98af35a7d72c4be628577bd70827c88e475f830f464e4c659c7fd20165"}, -] -pyobjc-framework-screentime = [ - {file = "pyobjc-framework-ScreenTime-9.0.1.tar.gz", hash = "sha256:04dc7c49a91b54fcd529fa5e453031f9b80c0fa11c3500db62c72019df487fcc"}, - {file = "pyobjc_framework_ScreenTime-9.0.1-py2.py3-none-any.whl", hash = "sha256:39d52381a07fd1933c4a38fe9497a19e83c0b4d5384601427c4c8dd49643bdb3"}, -] -pyobjc-framework-scriptingbridge = [ - {file = "pyobjc-framework-ScriptingBridge-9.0.1.tar.gz", hash = "sha256:2ae301056dfe2e6d338da2523d29a08a4b0edb0bf547efa94e283b2022a8e5d8"}, - {file = "pyobjc_framework_ScriptingBridge-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:bee5273baf962cb7ba754a2e859d4d719489c482c7b7db2cad76b318ce6ab42c"}, - {file = "pyobjc_framework_ScriptingBridge-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:3e1d3c9160fdad19f1390a85e10f4e2d79b71371bd2d4eca22243e10cf2373c7"}, - {file = "pyobjc_framework_ScriptingBridge-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:60343aaa89421b8ca3cff7d3da802e9b852a41ab0e787358d4a6db3df548747e"}, -] -pyobjc-framework-searchkit = [ - {file = "pyobjc-framework-SearchKit-9.0.1.tar.gz", hash = "sha256:dfcd1b0281a6aabf717be3ce787fc3f28174e8251eac2c12183d708c2a98ca95"}, - {file = "pyobjc_framework_SearchKit-9.0.1-py2.py3-none-any.whl", hash = "sha256:7ea06eed275da1faf4da352fdddf073ee15855b26019cc7b0641516a5399893b"}, -] -pyobjc-framework-security = [ - {file = "pyobjc-framework-Security-9.0.1.tar.gz", hash = "sha256:d2093debe7467d85dd7ecef130d592abe6c13ffdbaf943d6624bae4a081046e0"}, - {file = "pyobjc_framework_Security-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4e7d01fa5d023497f5d42f2e8b0eb9c204ebfcb33301f23f6745ab69e11d06a7"}, - {file = "pyobjc_framework_Security-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:147071f8791bce15a4a8a52c1b2e33640cc2eecc6ca465746339e6a1476628d2"}, - {file = "pyobjc_framework_Security-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6ef7bdc1ec30e096c0955351d866cdead2b0de23353b9c2e4bab33b02b1820e3"}, - {file = "pyobjc_framework_Security-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0a84eaa1a71ae043ba46982ad4860f3ad065e4142770f485cbc6a7b9eb8a1bf6"}, - {file = "pyobjc_framework_Security-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:95f37d0f78766e125b4c1c5b98c87feff66d55195e828882dc6b1affe9398d68"}, - {file = "pyobjc_framework_Security-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:68ed6fbcd772a8056f54d1d4792aa6e4b9531de2749fee6118b9c977e6fbce65"}, -] -pyobjc-framework-securityfoundation = [ - {file = "pyobjc-framework-SecurityFoundation-9.0.1.tar.gz", hash = "sha256:d054c7bf831735f533c6b697c53a7d62098b8c7505050e1d261f55dd4ed97c87"}, - {file = "pyobjc_framework_SecurityFoundation-9.0.1-py2.py3-none-any.whl", hash = "sha256:548ffe20222aecafbe8bdb4b838cb9cb4a91b1780b2e88babd42899ecf2b1fd8"}, -] -pyobjc-framework-securityinterface = [ - {file = "pyobjc-framework-SecurityInterface-9.0.1.tar.gz", hash = "sha256:2971724b3ea089275046dc0ffd1864259cd68e5e2a37da1c02718833e4631e22"}, - {file = "pyobjc_framework_SecurityInterface-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:35bfc10555f8ad7e2e81b75707661eff66624538345fbe85db51312331e0c2b0"}, - {file = "pyobjc_framework_SecurityInterface-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:f2065c7797380380d749eb41384c76982928bad9877c0491b5f2a8f506050ee7"}, - {file = "pyobjc_framework_SecurityInterface-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:30224f539ae65eea371021a228b6551263a3aa30c5915e559d8f698f91a5df1b"}, -] -pyobjc-framework-servicemanagement = [ - {file = "pyobjc-framework-ServiceManagement-9.0.1.tar.gz", hash = "sha256:4499ad8e4422d7fa3d8c274ff8f4f90e6839374ef2eec8f8fdca05e2b3d56829"}, - {file = "pyobjc_framework_ServiceManagement-9.0.1-py2.py3-none-any.whl", hash = "sha256:a3c4ff85036f43c9f3ee41a81ae5d9f0ce75bb3f8b974bf8a613c2da6008f454"}, -] -pyobjc-framework-sharedwithyou = [ - {file = "pyobjc-framework-SharedWithYou-9.0.1.tar.gz", hash = "sha256:78637b858aeb99ec0830813f945e15db259c9cee0b916df371910b28af275008"}, - {file = "pyobjc_framework_SharedWithYou-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d2d19ad6eaa425c79e35863bf47de1605731d9e863d3b5b7db6d37030545a53b"}, - {file = "pyobjc_framework_SharedWithYou-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:19e69a7e2a98386f77d3bac076effc0b1edf00ece485526250b3364b51a9a037"}, - {file = "pyobjc_framework_SharedWithYou-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:dfb21782c107f5a67815a916643f7d5a14c12e0f923c333846c38b7564536c4f"}, -] -pyobjc-framework-sharedwithyoucore = [ - {file = "pyobjc-framework-SharedWithYouCore-9.0.1.tar.gz", hash = "sha256:715f4dc0295182cb6164f508163b094c0edb8b5bdb846cd3bda979535cfdbb9a"}, - {file = "pyobjc_framework_SharedWithYouCore-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:8c5583892ed11b2015d676927517b432ac56ae353cfd5b012477d661b8ff6435"}, - {file = "pyobjc_framework_SharedWithYouCore-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:0724580d4eba42929f5e67d27bfc62f2170bbed76fbc4669c454d3d27c9ea1fc"}, - {file = "pyobjc_framework_SharedWithYouCore-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:ca709ff2d2e87be5bcc5d0ae12b1655986ccc3a54fdf912e099f45a7be4a4d24"}, -] -pyobjc-framework-shazamkit = [ - {file = "pyobjc-framework-ShazamKit-9.0.1.tar.gz", hash = "sha256:e9b6d2554b876754613b6ebc668f4b0f1d22ac5d373fa10c3d8eea4d3bd972eb"}, - {file = "pyobjc_framework_ShazamKit-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4053375d7402650cf5e9af8dc7833b75cfae05f0a26e48c54d2a0f570839c9ac"}, - {file = "pyobjc_framework_ShazamKit-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e9706cc3cf27f01930348f19114d4d2984b8fbed9e3328a9c945a0fe44af2b99"}, - {file = "pyobjc_framework_ShazamKit-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:392de93bc94c47356aac438a163aba89ea16429d246dc95afe556a307e67f5c8"}, - {file = "pyobjc_framework_ShazamKit-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:af49cc2dd7ca889b47910b5dd8ca075944e787b07651b70abfadb88bc59b7f6c"}, - {file = "pyobjc_framework_ShazamKit-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:3cf8eda1b27ad6665b2c55ecfce7f03930994f17e23ba0a62ab0a2e28df9c7e9"}, - {file = "pyobjc_framework_ShazamKit-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f03a71290c3d7e37cda8eab000feb5b408efabbd8868fbaa64ac944fd86ffcd1"}, -] -pyobjc-framework-social = [ - {file = "pyobjc-framework-Social-9.0.1.tar.gz", hash = "sha256:ac0552f7bcc3bfd35b4874821c9ee812b762f9c054450644cd520753c8579b6d"}, - {file = "pyobjc_framework_Social-9.0.1-py2.py3-none-any.whl", hash = "sha256:fd5395ab95c271514f6befe0023c49636853efb32156408d9df9423fdd7bd75c"}, -] -pyobjc-framework-soundanalysis = [ - {file = "pyobjc-framework-SoundAnalysis-9.0.1.tar.gz", hash = "sha256:52ac3b7534afa19b8b9f3a3ec808f8c27d0a6b0dc2e3e87cadbc5ea03010e867"}, - {file = "pyobjc_framework_SoundAnalysis-9.0.1-py2.py3-none-any.whl", hash = "sha256:580135eedaf10b64721e4fc0120c1f8a1cbcb1398fff1656dabf573819a9a24c"}, -] -pyobjc-framework-speech = [ - {file = "pyobjc-framework-Speech-9.0.1.tar.gz", hash = "sha256:ec85948f88cc4a1f77c0cddca93046c0d0b4af526e3bc2aa90f77bdea916f288"}, - {file = "pyobjc_framework_Speech-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:60722fdd68a8d93f087da893a02f9cf759549be54428664081bac1c4119337df"}, - {file = "pyobjc_framework_Speech-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:5e315e5ca17c7c7b79a3d05a375b3ade972ae3177c29ba3be519211b4e2f53b8"}, - {file = "pyobjc_framework_Speech-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:d50240d21a6e5104ed7e2bd3fef11fe7f8eca1fb4deff2e7fb46784cb483aa9a"}, -] -pyobjc-framework-spritekit = [ - {file = "pyobjc-framework-SpriteKit-9.0.1.tar.gz", hash = "sha256:7484dd95c055fdeda925ae1eec69379cc6fbb39da514c9ec71fcdeb6b0af181a"}, - {file = "pyobjc_framework_SpriteKit-9.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:201520a4ed454e65597393617d4216953a758dd8eb3a2277b7dba5d43a6beb2b"}, - {file = "pyobjc_framework_SpriteKit-9.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c2ac9d671f04b29d587c0760cc6653d7d4e3da3ccca274572db0753fd462a523"}, - {file = "pyobjc_framework_SpriteKit-9.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:82ed2de66175448a9a6ce3d6b638fbcc79bfaf0922b6bb5d975fadc96a8c3ec4"}, - {file = "pyobjc_framework_SpriteKit-9.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cdd4b0322d5c2feaedfb59d08c27f6bf94974c8e8795755306979f11326d7270"}, - {file = "pyobjc_framework_SpriteKit-9.0.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:5e877e8e7af1c07873a324e9309f95f35f5f662ec32b2d5f19bdff2e5bf336fb"}, - {file = "pyobjc_framework_SpriteKit-9.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:10616d3707e315fda9631ba57bc6c8a2bf5f2565204342c8bed923d995e5d6e4"}, -] -pyobjc-framework-storekit = [ - {file = "pyobjc-framework-StoreKit-9.0.1.tar.gz", hash = "sha256:f6dc49a17b6befb4d4d891c26080265edc1c260dbf14e66bca1ad037a72a7adc"}, - {file = "pyobjc_framework_StoreKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:5a9df236fb4fba130deb7d5e1b4ab8d2c08a8c7ff8009e437171fb26e3fee5a0"}, - {file = "pyobjc_framework_StoreKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:66bc9260e9987afc2f28435dc1485b61b86b25dba583c80edef1c0466d5c83fd"}, - {file = "pyobjc_framework_StoreKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:60aab6cf4b6bbce5c3237cb0cd9d1eb9811cdb1797964a792d73d5f7f57a6bbb"}, -] -pyobjc-framework-syncservices = [ - {file = "pyobjc-framework-SyncServices-9.0.1.tar.gz", hash = "sha256:9a038f6d857f92f9a4c34329905821726405c07f7be0e0f4a958f423e925633a"}, - {file = "pyobjc_framework_SyncServices-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:d5a252805c802966c2b910efe92b5ac2323d5f624fb1b5ded0f6e79122073ac0"}, - {file = "pyobjc_framework_SyncServices-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:8cf55195a4672e127506f46eef325c8901577e10d1ba07fac32a95ecec7c1210"}, - {file = "pyobjc_framework_SyncServices-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:3525ea12627a8fb7aab3fbe3f2b509e52070e2f3485e93be02ca70d0be7102cd"}, -] -pyobjc-framework-systemconfiguration = [ - {file = "pyobjc-framework-SystemConfiguration-9.0.1.tar.gz", hash = "sha256:0d328f3908b272d987aeaf56913dd4acf35bdb85a0a783cd3907c60e39b75bf3"}, - {file = "pyobjc_framework_SystemConfiguration-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:903bef65bea55d351792b642101795425148692ec0863b18724e2def12da7681"}, - {file = "pyobjc_framework_SystemConfiguration-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:d33a781ca04fb64e437c08e0d06be472e9e7c1f755d8459718fedc56b768f16a"}, - {file = "pyobjc_framework_SystemConfiguration-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:0a0f6b63dacdb118c15975119fb5f3edf116fdf79a1d1f71f32877facbd80e7b"}, -] -pyobjc-framework-systemextensions = [ - {file = "pyobjc-framework-SystemExtensions-9.0.1.tar.gz", hash = "sha256:0b95decfa84f863d5418c6ab341285b1f4c7344566c2cb6dbc62b6380a8d39ba"}, - {file = "pyobjc_framework_SystemExtensions-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:f44ce5151f47efe5c3f20c5215350548bd97a02aba91b3ec3e18417267b7f875"}, - {file = "pyobjc_framework_SystemExtensions-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6146da97513e44d8edafe4e3fb30373f7b57a97c66cfbbd58901db8f81af83f5"}, - {file = "pyobjc_framework_SystemExtensions-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:2e2bd5fcde4dd115012e621c7c6d327f120e23dce68b116ddbe35cd7b2165eba"}, -] -pyobjc-framework-threadnetwork = [ - {file = "pyobjc-framework-ThreadNetwork-9.0.1.tar.gz", hash = "sha256:426ed4d476cdb8a0c09752b8f85d586d40a6a0247e0c6f1ed40fe16689a93c54"}, - {file = "pyobjc_framework_ThreadNetwork-9.0.1-py2.py3-none-any.whl", hash = "sha256:791fcb393d0ba4c42dd0225b852b07f84ab52faff938370cdc63892ebd871512"}, -] -pyobjc-framework-uniformtypeidentifiers = [ - {file = "pyobjc-framework-UniformTypeIdentifiers-9.0.1.tar.gz", hash = "sha256:027e0c12923c361be01f19604049fff0ef3b4b3c920477dbe746b7e8c312355f"}, - {file = "pyobjc_framework_UniformTypeIdentifiers-9.0.1-py2.py3-none-any.whl", hash = "sha256:32ec96c1f99678cb1052d90c9582d78b3f61fcfb485a7b30f034345839370cce"}, -] -pyobjc-framework-usernotifications = [ - {file = "pyobjc-framework-UserNotifications-9.0.1.tar.gz", hash = "sha256:38894aefa85bebb855559b16f798c2b8cf34cbcb7b292cd52fe143c64c6e411b"}, - {file = "pyobjc_framework_UserNotifications-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:36be81d5b5018d7e2ca769e517af48e72e47c9b4471e9225e5ee4a9107ffe00c"}, - {file = "pyobjc_framework_UserNotifications-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:057692c2ef4c57e5347c82be1fd53ddef7d02b4a7efd0455ede04dee5c78edc1"}, - {file = "pyobjc_framework_UserNotifications-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:705bfa9ff3cb999f4a53c38a6b0e97fe5bdc9c06ac294b07b5d6e7f2603caecd"}, -] -pyobjc-framework-usernotificationsui = [ - {file = "pyobjc-framework-UserNotificationsUI-9.0.1.tar.gz", hash = "sha256:7ce84ee3133fca72ea4187e820e86910a5c320422cb30e85043652917c008698"}, - {file = "pyobjc_framework_UserNotificationsUI-9.0.1-py2.py3-none-any.whl", hash = "sha256:6fb9f16e74893fde59bd2323cfd24764acc74a5fa3652c79b52aea4e62896b65"}, -] -pyobjc-framework-videosubscriberaccount = [ - {file = "pyobjc-framework-VideoSubscriberAccount-9.0.1.tar.gz", hash = "sha256:38e0fde0cdfdab53352f880370cc5cea49b6c6f703f58dd0c14e0f1f09bedf42"}, - {file = "pyobjc_framework_VideoSubscriberAccount-9.0.1-py2.py3-none-any.whl", hash = "sha256:4a40c908d8590a75bf71006df7429c3cbe8f4a3ccbbab8e56b6d09ad92ac1b9e"}, -] -pyobjc-framework-videotoolbox = [ - {file = "pyobjc-framework-VideoToolbox-9.0.1.tar.gz", hash = "sha256:3ff52b8a9c06bb25a6894fafbffa97607da7294cf10ad8337dc7d707d524f9f3"}, - {file = "pyobjc_framework_VideoToolbox-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:2da628f91c7dc4208edf581effdc826909c7c970807f186c0301df3e7527b19c"}, - {file = "pyobjc_framework_VideoToolbox-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:706482e2f21e5c37f44aceb2e0df4d4f67157fb11877e75e210a137a743e0ae3"}, - {file = "pyobjc_framework_VideoToolbox-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:405d519058d51da6e6f9e6e183325b01ab49386547bd61faaa07b19a237fe916"}, -] -pyobjc-framework-virtualization = [ - {file = "pyobjc-framework-Virtualization-9.0.1.tar.gz", hash = "sha256:98ecb1e7b8021013edd2905c63d23dfd5cea58c8baaf67715060c84b120a2e95"}, - {file = "pyobjc_framework_Virtualization-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:b2c4d6ed95845da4fce43440686b07c89dc6a3b9d4225ecc828ebf7bd9e0ec6e"}, - {file = "pyobjc_framework_Virtualization-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:9c038560122c873e5bd389f249ba463b7a2f6f7b472777aadd018ab8370407c8"}, - {file = "pyobjc_framework_Virtualization-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:1f663ac0694d91788c5ab0fa1ddcd6d1764f431f45106575ce66c546749d450b"}, -] -pyobjc-framework-vision = [ - {file = "pyobjc-framework-Vision-9.0.1.tar.gz", hash = "sha256:0f5a6f56fd4a2d9ea340aeafe06479b500aebfcc2b81aa2a496d438a00598222"}, - {file = "pyobjc_framework_Vision-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:ce1e8b4d84481ac2e66fb9075e5f1c2693db02d45283fa1797b7c483b4870a75"}, - {file = "pyobjc_framework_Vision-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6151dcdb296933efa26d0d1003d34904dd6935ba1b69649483255c1aa67742bc"}, - {file = "pyobjc_framework_Vision-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:0a0195a9802fcae8b5b17ab8da7187d0be6903572a3bbb64c0e979015469ddd4"}, -] -pyobjc-framework-webkit = [ - {file = "pyobjc-framework-WebKit-9.0.1.tar.gz", hash = "sha256:82ed0cb273012b48f7489072d6e00579f42d54bc4543471c262db3e5c4bb9e87"}, - {file = "pyobjc_framework_WebKit-9.0.1-cp36-abi3-macosx_10_9_universal2.whl", hash = "sha256:037082f72fa1f1d87889fdc172726c3381769de24ca5207d596f3925df9b25f0"}, - {file = "pyobjc_framework_WebKit-9.0.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:952685b820545036833ed737600d32c344916a83b2af4e04acb4b618aaac9431"}, - {file = "pyobjc_framework_WebKit-9.0.1-cp36-abi3-macosx_11_0_universal2.whl", hash = "sha256:28a7859401b5af7c47e17612b4b3baca6669e76f974f6f6bfe5e93921a00adec"}, -] -pyparsing = [ - {file = "pyparsing-3.0.8-py3-none-any.whl", hash = "sha256:ef7b523f6356f763771559412c0d7134753f037822dad1b16945b7b846f7ad06"}, - {file = "pyparsing-3.0.8.tar.gz", hash = "sha256:7bf433498c016c4314268d95df76c81b842a4cb2b276fa3312cfb1e1d85f6954"}, -] -pytest = [ - {file = "pytest-7.1.2-py3-none-any.whl", hash = "sha256:13d0e3ccfc2b6e26be000cb6568c832ba67ba32e719443bfe725814d3c42433c"}, - {file = "pytest-7.1.2.tar.gz", hash = "sha256:a06a0425453864a270bc45e71f783330a7428defb4230fb5e6a731fde06ecd45"}, -] -python-dateutil = [ - {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, - {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, -] -python-romkan-ng = [ - {file = "python-romkan-ng-0.3.0.tar.gz", hash = "sha256:dcb0826cb612ddbe6df8834b86c85b496504e9bd02b684d9f327390da977d385"}, - {file = "python_romkan_ng-0.3.0-py3-none-any.whl", hash = "sha256:4466a0c80d0cde9eefefbf017596ad7a77dc93068f95b2f8a2119ef5165887bc"}, -] -pytz = [ - {file = "pytz-2022.1-py2.py3-none-any.whl", hash = "sha256:e68985985296d9a66a881eb3193b0906246245294a881e7c8afe623866ac6a5c"}, - {file = "pytz-2022.1.tar.gz", hash = "sha256:1e760e2fe6a8163bc0b3d9a19c4f84342afa0a2affebfaa84b01b978a02ecaa7"}, -] -requests = [ - {file = "requests-2.28.1-py3-none-any.whl", hash = "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349"}, - {file = "requests-2.28.1.tar.gz", hash = "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983"}, -] -six = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] -snowballstemmer = [ - {file = "snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a"}, - {file = "snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1"}, -] -sphinx = [ - {file = "Sphinx-5.1.1-py3-none-any.whl", hash = "sha256:309a8da80cb6da9f4713438e5b55861877d5d7976b69d87e336733637ea12693"}, - {file = "Sphinx-5.1.1.tar.gz", hash = "sha256:ba3224a4e206e1fbdecf98a4fae4992ef9b24b85ebf7b584bb340156eaf08d89"}, -] -sphinx-rtd-theme = [ - {file = "sphinx_rtd_theme-1.0.0-py2.py3-none-any.whl", hash = "sha256:4d35a56f4508cfee4c4fb604373ede6feae2a306731d533f409ef5c3496fdbd8"}, - {file = "sphinx_rtd_theme-1.0.0.tar.gz", hash = "sha256:eec6d497e4c2195fa0e8b2016b337532b8a699a68bcb22a512870e16925c6a5c"}, -] -sphinxcontrib-applehelp = [ - {file = "sphinxcontrib-applehelp-1.0.2.tar.gz", hash = "sha256:a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58"}, - {file = "sphinxcontrib_applehelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:806111e5e962be97c29ec4c1e7fe277bfd19e9652fb1a4392105b43e01af885a"}, -] -sphinxcontrib-devhelp = [ - {file = "sphinxcontrib-devhelp-1.0.2.tar.gz", hash = "sha256:ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4"}, - {file = "sphinxcontrib_devhelp-1.0.2-py2.py3-none-any.whl", hash = "sha256:8165223f9a335cc1af7ffe1ed31d2871f325254c0423bc0c4c7cd1c1e4734a2e"}, -] -sphinxcontrib-htmlhelp = [ - {file = "sphinxcontrib-htmlhelp-2.0.0.tar.gz", hash = "sha256:f5f8bb2d0d629f398bf47d0d69c07bc13b65f75a81ad9e2f71a63d4b7a2f6db2"}, - {file = "sphinxcontrib_htmlhelp-2.0.0-py2.py3-none-any.whl", hash = "sha256:d412243dfb797ae3ec2b59eca0e52dac12e75a241bf0e4eb861e450d06c6ed07"}, -] -sphinxcontrib-jsmath = [ - {file = "sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8"}, - {file = "sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178"}, -] -sphinxcontrib-napoleon = [ - {file = "sphinxcontrib-napoleon-0.7.tar.gz", hash = "sha256:407382beed396e9f2d7f3043fad6afda95719204a1e1a231ac865f40abcbfcf8"}, - {file = "sphinxcontrib_napoleon-0.7-py2.py3-none-any.whl", hash = "sha256:711e41a3974bdf110a484aec4c1a556799eb0b3f3b897521a018ad7e2db13fef"}, -] -sphinxcontrib-qthelp = [ - {file = "sphinxcontrib-qthelp-1.0.3.tar.gz", hash = "sha256:4c33767ee058b70dba89a6fc5c1892c0d57a54be67ddd3e7875a18d14cba5a72"}, - {file = "sphinxcontrib_qthelp-1.0.3-py2.py3-none-any.whl", hash = "sha256:bd9fc24bcb748a8d51fd4ecaade681350aa63009a347a8c14e637895444dfab6"}, -] -sphinxcontrib-serializinghtml = [ - {file = "sphinxcontrib-serializinghtml-1.1.5.tar.gz", hash = "sha256:aa5f6de5dfdf809ef505c4895e51ef5c9eac17d0f287933eb49ec495280b6952"}, - {file = "sphinxcontrib_serializinghtml-1.1.5-py2.py3-none-any.whl", hash = "sha256:352a9a00ae864471d3a7ead8d7d79f5fc0b57e8b3f95e9867eb9eb28999b92fd"}, -] -tomli = [ - {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, - {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, -] -typing-extensions = [ - {file = "typing_extensions-4.2.0-py3-none-any.whl", hash = "sha256:6657594ee297170d19f67d55c05852a874e7eb634f4f753dbd667855e07c1708"}, - {file = "typing_extensions-4.2.0.tar.gz", hash = "sha256:f1c24655a0da0d1b67f07e17a5e6b2a105894e6824b92096378bb3668ef02376"}, -] -urllib3 = [ - {file = "urllib3-1.26.9-py2.py3-none-any.whl", hash = "sha256:44ece4d53fb1706f667c9bd1c648f5469a2ec925fcf3a776667042d645472c14"}, - {file = "urllib3-1.26.9.tar.gz", hash = "sha256:aabaf16477806a5e1dd19aa41f8c2b7950dd3c746362d7e3223dbe6de6ac448e"}, -] -zipp = [ - {file = "zipp-3.8.0-py3-none-any.whl", hash = "sha256:c4f6e5bbf48e74f7a38e7cc5b0480ff42b0ae5178957d564d18932525d5cf099"}, - {file = "zipp-3.8.0.tar.gz", hash = "sha256:56bf8aadb83c24db6c4b577e13de374ccfb67da2078beba1d037c17980bf43ad"}, -] +content-hash = "db643d8591526e3b210425d971ca99f2a4eb40870a50732f2d77839d013d2edd" diff --git a/pyproject.toml b/pyproject.toml index fb14170..a314c21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,7 @@ PyGObject = {version = "^3.42.1", platform = "linux"} playsound = "1.2.2" mutagen = {version = "^1.45.1", platform = "win32"} python-romkan-ng = "^0.3.0" +cairosvg = "^2.7.1" [tool.poetry.dev-dependencies] pytest = "^7.1.2" diff --git a/tests/assets/no_utf.png b/tests/assets/no_utf.png deleted file mode 100644 index c90b294e140f291b70725b9eaa49235fcceeeb87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 535 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE0wix1Z>k4UEa{HEjtmSN`?>!lvVtU&J%W50 z7^>757#dm_7=8hT8eT9klo~KFyh>nTu$sZZAYL$MSD+10f+@+{-G$+Qd;gjJKpuOE zr>`sfQ%-h411^iVIiDFA809@(978;gzrDCy&m~ag*vI=bE%PQTE)rDg@L7D>Q-o{j z3st>^3oceL_&=1b;P3QuUnD%;Q$$1Mh{W{bXBu;4j3;^C;X3+fcYgi-sOq;{GcP`} zpYVUl?WrMqmuaQDyx4f|eZVJ;tZVCTZ`-tUP0i(;@h;_Xu?Q$-rX0c41OVj!LKbY(8D(H(?Z&?59?dsby zw|>86(2e@ToBw>8>n*JYk)OcOQ!R0gC`m~yNwrEYN(E93Mg~TPx(1fI2Ie7#=2j*a rR)z-J1_o9J2HUS~jzQ6oo1c=IR*74~v2N}MKn)C@u6{1-oD!M<8Zym7 diff --git a/tests/assets/no_utf.svg b/tests/assets/no_utf.svg new file mode 100644 index 0000000..5e74374 --- /dev/null +++ b/tests/assets/no_utf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tests/assets/no_utf.txt b/tests/assets/no_utf.txt index 31351be..7f0eecd 100644 --- a/tests/assets/no_utf.txt +++ b/tests/assets/no_utf.txt @@ -1,29 +1,29 @@ -                                                                -                                                                -                                                                -                                                                -                                                                -                                                                -                                                                -                                                                -                                                                -              `:"|:`        ._+"^'.           .'"|,-.           -             |zV$YLi_      ;}yO&6[^          `"1P$XJ)`          -             +74W0&2).     'rf$QBds'         "LXNRYJ)           -  ...........`^IEWQ$wr, ....-%6@0Dm]=..... _|ab0Rk7<'.........  -^<1unnnnnnnnnuLfPK00KPyLunnujCd&MQBb2uunnuLJgkMQMO5nuunnnnnnu1<^ ->1bQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQb1> ->1bQR&FLz7zzzzzzzz777zzzzzzzzzzz7777zzzzzzzzz7777zzzzz7zLF&RQb1> ->1YQMEr_.                                              ._rEMQY1> ->1YQMEr_                                                _rEMQY1> ->1YQMEr_                                                _rEMQY1> -^)7wJt|`                                                `|tJw7)^ -                                                                -                                                                -                                                                -                                                                -                                                                -                                                                -                                                                -                                                                -                                                                 \ No newline at end of file +                             'lrrl'                             +                             >QQQQ>                             +                             >QQQQ>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >0QQ0>                             +                             >QQQQ>                             +                             >QQQQ>                             +                             'lrrl'                              \ No newline at end of file diff --git a/tests/test_hebikani.py b/tests/test_hebikani.py index 544d59d..9ab18cc 100644 --- a/tests/test_hebikani.py +++ b/tests/test_hebikani.py @@ -156,8 +156,8 @@ def test_ascii_art(mock_request_get): """Check if the ASCII art is correctly displayed.""" """Test the ascii art creation when no utf character.""" - # 32x32 png image sample from WaniKani API - img_f = open(os.path.join(os.path.dirname(__file__), "assets/no_utf.png"), "rb") + # svg image sample from WaniKani API + img_f = open(os.path.join(os.path.dirname(__file__), "assets/no_utf.svg"), "rb") # the image in ascii the desired ASCII format ascii_f = open(os.path.join(os.path.dirname(__file__), "assets/no_utf.txt"), "r")