Skip to main content

The appwindows library provides a unified way to find, inspect, and control application windows across Windows, macOS, and Linux.

Project description

License - BSD 3-Clause unit_tests
PyPI Downloads Documentation
PyPi Github Issues

Appwindows

The appwindows library provides a unified way to find, inspect, and control application windows across Windows, macOS, and Linux.

Supported platforms:

  1. Windows
  2. MacOs
  3. Linux with XServer (Wayland works, but with very significant limitations)

Install

pip install appwindows

Examples

  1. Resize window
from appwindows import get_finder
from appwindows.geometry import Size

finder = get_finder()

window = finder.get_window_by_title("Some title")

window.resize(Size(width=200, height=200))
  1. Move window
from appwindows import get_finder
from appwindows.geometry import Point

finder = get_finder()

window = finder.get_window_by_title("Some title")

window.move(Point(x=200, y=200))
  1. Get window coordinates and size
from appwindows import get_finder

finder = get_finder()

window = finder.get_window_by_title("Some title")

points = window.get_points()
size = window.get_size()

print(points.left_top) # appwindows.geometry.Point(x=200, y=200)
print(size)            # appwindows.geometry.Size(width=200, height=200)

Docs

All documentation here
Link to PyPi

For Developers

  1. If something doesn't work - open issue.
  2. If you want something fixed - open issue.
  3. If you can help with the library - email.

apparser.development@gmail.com

Any help in development is welcome)!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

appwindows-1.3.0.tar.gz (27.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

appwindows-1.3.0-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

appwindows-1.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (214.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

appwindows-1.3.0-cp314-cp314-macosx_12_0_x86_64.whl (149.6 kB view details)

Uploaded CPython 3.14macOS 12.0+ x86-64

appwindows-1.3.0-cp314-cp314-macosx_12_0_arm64.whl (144.6 kB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

appwindows-1.3.0-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

appwindows-1.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (214.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

appwindows-1.3.0-cp313-cp313-macosx_12_0_x86_64.whl (149.6 kB view details)

Uploaded CPython 3.13macOS 12.0+ x86-64

appwindows-1.3.0-cp313-cp313-macosx_12_0_arm64.whl (144.2 kB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

appwindows-1.3.0-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

appwindows-1.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (214.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

appwindows-1.3.0-cp312-cp312-macosx_12_0_x86_64.whl (149.6 kB view details)

Uploaded CPython 3.12macOS 12.0+ x86-64

appwindows-1.3.0-cp312-cp312-macosx_12_0_arm64.whl (144.1 kB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

appwindows-1.3.0-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

appwindows-1.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (209.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

appwindows-1.3.0-cp311-cp311-macosx_12_0_x86_64.whl (144.8 kB view details)

Uploaded CPython 3.11macOS 12.0+ x86-64

appwindows-1.3.0-cp311-cp311-macosx_12_0_arm64.whl (139.1 kB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

appwindows-1.3.0-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

appwindows-1.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (209.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

appwindows-1.3.0-cp310-cp310-macosx_12_0_x86_64.whl (143.5 kB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

appwindows-1.3.0-cp310-cp310-macosx_12_0_arm64.whl (138.0 kB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

appwindows-1.3.0-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

appwindows-1.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (209.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

appwindows-1.3.0-cp39-cp39-macosx_12_0_x86_64.whl (143.6 kB view details)

Uploaded CPython 3.9macOS 12.0+ x86-64

appwindows-1.3.0-cp39-cp39-macosx_12_0_arm64.whl (138.1 kB view details)

Uploaded CPython 3.9macOS 12.0+ ARM64

appwindows-1.3.0-cp38-cp38-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

appwindows-1.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (213.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

appwindows-1.3.0-cp38-cp38-macosx_12_0_x86_64.whl (145.1 kB view details)

Uploaded CPython 3.8macOS 12.0+ x86-64

appwindows-1.3.0-cp38-cp38-macosx_12_0_arm64.whl (139.1 kB view details)

Uploaded CPython 3.8macOS 12.0+ ARM64

File details

Details for the file appwindows-1.3.0.tar.gz.

File metadata

  • Download URL: appwindows-1.3.0.tar.gz
  • Upload date:
  • Size: 27.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for appwindows-1.3.0.tar.gz
Algorithm Hash digest
SHA256 b3e75a31b66c5347280b82f7582e8359772f48eda43931cba494dcb970f508d9
MD5 b74a23992b66febfea80b91fe33c93a6
BLAKE2b-256 b576fc4fc07e670b4f57ac30004a3cd4d8ff101193d10955fd77542955973045

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: appwindows-1.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for appwindows-1.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a5907303f74500c080be20b1aef4a4a9f04131a9d079a106842ece1f19936d8c
MD5 c8249f159ff113415d1f4b9f8fae9d1a
BLAKE2b-256 d7be55d4e5731329fa9509a69e7103b67afaa09870129100c1f91e8f6324c863

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cf53ac9cbcaa623da4553a81a2b87cf3828163472259a6ba77938ed39ec4067a
MD5 21dcf6ffad3940ef13777a08c61b1545
BLAKE2b-256 dcfd4fc8a15c329a078850a0371f84249c7d477109aaed9f1ce12cd57485a96f

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp314-cp314-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 3881e3ccda9c298061686d9d35899f5dea48d04ce1bec3cf3bb2a4655c607207
MD5 98787e838f264a6d4e3997fb00cfd729
BLAKE2b-256 b2eeba53442cbd1b407dfbebaba1582b27f704cc5507c2b411749785f3f687c0

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp314-cp314-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 ad75a707439f35b984cba1065f21b1c018d7abf03ad34d18598afd1171b23b72
MD5 e82c9cec89613eba745a90808be5eacb
BLAKE2b-256 42b58e4a5bd074bbbe9cdccad5d6f2d4fe5794f2060cdcd5bbe883a6875c0ec5

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: appwindows-1.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for appwindows-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 629720546bb529bdf0d7b3cbd43996bd3016d105f0235d714354cd3b1746de66
MD5 24051b11a5c7f33f07af1060b827b936
BLAKE2b-256 ffc903dbab36f4f9691b1104f226cde5e8867c0940360ed8412c098104885f19

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 07ac16c4bac90206b62dcc165f5db193dd2d2252422eb19062d02b0ebf11af02
MD5 e3067bb735c6de9ca27a1025fd431714
BLAKE2b-256 e6515dc924cc8bc66eeffffc6e23508535cd88123fa4224b5edc9cd787fec04e

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp313-cp313-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 7cbf365ed6a26d4916aa14324ee470e08ebd08ed4f1067556bb59e38c297e4d8
MD5 d59b35f194304bbd338e0b33e13d7828
BLAKE2b-256 f94fb953eb0f2a886a4e1cf337af8c6e5d89bfc769649b72e039c237da1e95ee

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 9248c1f2940e64fe1edb2a588796800ffe7d3992fededf60754d14f904290973
MD5 4d1e38c266737020bafa4e0740a5cfbe
BLAKE2b-256 acd25a030134df0cc53501cce60560e5bf499bb04796d1dc49c77bbfdb5b603d

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: appwindows-1.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for appwindows-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1f577d68ff9fa31c7e65cbcec3da5ce127728e1f8da66fe12063e35b1e5cd9eb
MD5 b6f377bf08b789530e19e3dba4bd7b97
BLAKE2b-256 88acb515c498334d0ff9d55ee0e7de2c3dfab804918c3c0d5400bd76eb26ea37

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8ee7e02718ec269a8a3c74a40f21a0be9e851c6dba9c0c4bd291ce0a2afe1148
MD5 03a8e858f3e3bb74561bbea2f786fb6a
BLAKE2b-256 34d377de0092f955607d1bba70a39c17869cd8216bb087f3ed62363727b1a26b

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp312-cp312-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 14e1eaa21099eac8085439b0c98d920117a604656e22f80c4c8e7d3bdf7afbe5
MD5 17bd7afbc54fa00d9472ee5e50d53602
BLAKE2b-256 16162999d7df7d211575da19e22502861640cc5cf71cde7eec678fedb77e676a

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 879ed8da024bf66e2c92b31c359da07aa7f7b3a08882c80cf5f1dbd99f70ec82
MD5 8da306df54605b6bab42885655391ebb
BLAKE2b-256 465d9422e038f140fedfcffda4c66c50dd2e2373e69ff61459bbc927070963ea

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: appwindows-1.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for appwindows-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a8411eb665e7c6b7fb51f82f4f0dc413da675f38c3b50df92a01a265641b37cd
MD5 68c46d9923ced22d28b7ba5dd1448f50
BLAKE2b-256 d84538eae37d09ebaadc1a3915b3b70a5d519ca34a170dc028adbe43d0e2dac7

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f8f32a45ded70fb69be6527d815bd582cdbb654e3fbe181505d48e965cb83fa1
MD5 85e24966fcbe479875b7b0f68a447598
BLAKE2b-256 8c1325a1668d862ad3e9cee26204d85f2b85b0fe77fa449c4b77f72c90985df3

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp311-cp311-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 fe0ea5de9a561299af954d2b47870cbaeec536b05265d0d94d892d79ed73f936
MD5 2e5f197aef322721062ef93b3c21b4c1
BLAKE2b-256 5caeb438a2b095704ecf97875d082a2281daee02d4289337be4181964c575e26

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 f25aba91ce7de967a26a5efcec9d2c26269665bb43f755b317461e6a7ab7fa5b
MD5 99ab4dc5f3e933e3f775a5c5447ced1e
BLAKE2b-256 7a3ee347f79f9e614509a9dee6a6ce282547d2808267d99ff7537181efcafcca

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: appwindows-1.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for appwindows-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0dbebd5f3bff873a789dd8c33b6a3da5575958633a80bc0ea51b036f46db83af
MD5 29cc119a7abcdc21bb83147b88394c6d
BLAKE2b-256 5bb14f1e89642dea22e1558cc5ec2ba07af54175a08cfd0e533bf896d8e19732

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d4f1e05b2ea4bd202ef707ceaa028504db561b26ab2119d43cfad5b67b261025
MD5 55903a57765960094de0deff215632f7
BLAKE2b-256 05a17089a423162310eefbc05abf43f3650d8563bbd5c289e70953105747489f

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 4ec8459bd62518f90abf22cac777b946b806d4e22527332817c3e1700062eede
MD5 df6097e72ab6e3b7cea5ea398af43cfc
BLAKE2b-256 9437d47c92308f3a0778867c5a5010e475723ed83fdcdabdafaf46c6f0cb4b9d

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 94b54f6bd98e61fb9dc7b45891ae080d6190ed497363dda951561854255101c2
MD5 36dd6904d9d17689f47536b3673a3b91
BLAKE2b-256 b91056c7667c9c0a91ff514e87f809f397dbb6df18046262e5dd02b4aef1e971

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: appwindows-1.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for appwindows-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 393ec2936e5d1b18d39b0e9d5e743ca74f2d780b24ae5c6fa0fe36bb807f8622
MD5 9ec840323f2e77ae25e83ac5e6a4201a
BLAKE2b-256 21bc033e9acf7ad648fbbaaddfc89e9f07a7446032148831c8d5ad5ce44a4f8b

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c847e773505d585f44ad170f940d6e7140e727ab78fe6d65204ebe6150477199
MD5 a633daeadc56011b0d447bbbb5f424ce
BLAKE2b-256 08593866b7a027b73c057708e876f613e1946e2af5bb75b36d1d05587edda55d

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 977694164e16e50543406485fefd2f918c097e5eabc10589ec58799550ae44ef
MD5 ba1ae61b8c6ed577a70e71a28bf6c8b6
BLAKE2b-256 8fd118fe78cf5ef29d9e97758d24d1649ac7c314d95e70e3ba06fedb3bc3e15a

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp39-cp39-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 4ea400a68e1c78dfee5377e152a8d43712df9ddaf9ee5ca9e3c249e913026bdb
MD5 54be50ef89bbee2cd5ee7c52dbac04de
BLAKE2b-256 e5cbfff4e88b4002cca6d64abc34cae275e4e599dca1cc4f77234344e1e67e16

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: appwindows-1.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for appwindows-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cf0bc509dbdab899ba9374ddbbe7d873e15c95cd0f3db69701c784fa797ef6d6
MD5 dba62c9711e8f59543c1519f15e94e45
BLAKE2b-256 b8025dec18f302d3ae6235356b1bb143cd02d4eade93bd379bcbfe10d3819c52

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f23c0f965027968722d43d4981b9850901123b25b3d1677f8b044ed1423f84b1
MD5 a22146ae35b9b9b3784922bc17327e3e
BLAKE2b-256 7768c60c76acf4f7aabc195f5f5775bd4b2e4396489a4d775fa15df38308bb71

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp38-cp38-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp38-cp38-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 af600c2002ab19d30a038f4f95c87deea82d86070c04b6425db9d4f184c22fe6
MD5 c83240255c3fc9f3f72abf4e4d032126
BLAKE2b-256 b80412f3622e53f5eff4fde30925ef4ac78ef309066b6dc33facf6d46ff2190c

See more details on using hashes here.

File details

Details for the file appwindows-1.3.0-cp38-cp38-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for appwindows-1.3.0-cp38-cp38-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 dfc475896838d3a6dcd0e88080d5c85c2de1ceccab069b27fe534bcba597b24c
MD5 80fc968365802a3552120017e5aad001
BLAKE2b-256 df9b07af1fd14bbe2eb7cf97bc3a4636346d1ef3033b73b1007a5c6594190729

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page