Skip to main content

MaxFrame is a computational framework created by Alibaba Cloud to provide a way for Python developers to parallelize their code with MaxCompute. It creates a runnable computation graph locally, submits it to MaxCompute to execute and obtains results from MaxCompute.

MaxFrame client is the client of MaxFrame. Currently it provides a DataFrame-based SDK with compatible APIs for pandas. In future, other common Python libraries like numpy and scikit-learn will be added as well. Python 3.7 is recommended for MaxFrame client to enable all functionalities while supports for higher Python versions are on the way.

Installation

You may install MaxFrame client through PIP:

pip install maxframe

Latest beta version can be installed with --pre argument:

pip install --pre maxframe

You can also install MaxFrame client from source code:

pip install git+https://github.com/aliyun/alibabacloud-odps-maxframe-client.git

Getting started

We show a simple code example of MaxFrame client which read data from a MaxCompute table, performs some simple data transform and writes back into MaxCompute.

import maxframe.dataframe as md
import os
from maxframe import new_session
from odps import ODPS

o = ODPS(
    os.getenv('ALIBABA_CLOUD_ACCESS_KEY_ID'),
    os.getenv('ALIBABA_CLOUD_ACCESS_KEY_SECRET'),
    project='your-default-project',
    endpoint='your-end-point',
)
session = new_session(o)

df = md.read_odps_table("source_table")
df["A"] = "prefix_" + df["A"]
md.to_odps_table(df, "prefix_source_table")

Documentation

Detailed documentations can be found here.

License

Licensed under the Apache License 2.0.

Download files

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

Source Distribution

maxframe-2.8.0.post0.tar.gz (1.1 MB view details)

Uploaded Source

Built Distributions

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

maxframe-2.8.0.post0-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

maxframe-2.8.0.post0-cp312-cp312-win32.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86

maxframe-2.8.0.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

maxframe-2.8.0.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

maxframe-2.8.0.post0-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

maxframe-2.8.0.post0-cp312-cp312-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

maxframe-2.8.0.post0-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86-64

maxframe-2.8.0.post0-cp311-cp311-win32.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86

maxframe-2.8.0.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

maxframe-2.8.0.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

maxframe-2.8.0.post0-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

maxframe-2.8.0.post0-cp311-cp311-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

maxframe-2.8.0.post0-cp310-cp310-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10Windows x86-64

maxframe-2.8.0.post0-cp310-cp310-win32.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86

maxframe-2.8.0.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

maxframe-2.8.0.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

maxframe-2.8.0.post0-cp310-cp310-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

maxframe-2.8.0.post0-cp310-cp310-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

maxframe-2.8.0.post0-cp39-cp39-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.9Windows x86-64

maxframe-2.8.0.post0-cp39-cp39-win32.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86

maxframe-2.8.0.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

maxframe-2.8.0.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

maxframe-2.8.0.post0-cp39-cp39-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

maxframe-2.8.0.post0-cp39-cp39-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

maxframe-2.8.0.post0-cp38-cp38-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.8Windows x86-64

maxframe-2.8.0.post0-cp38-cp38-win32.whl (2.8 MB view details)

Uploaded CPython 3.8Windows x86

maxframe-2.8.0.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

maxframe-2.8.0.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

maxframe-2.8.0.post0-cp38-cp38-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

maxframe-2.8.0.post0-cp38-cp38-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

maxframe-2.8.0.post0-cp37-cp37m-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

maxframe-2.8.0.post0-cp37-cp37m-win32.whl (2.8 MB view details)

Uploaded CPython 3.7mWindows x86

maxframe-2.8.0.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

maxframe-2.8.0.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

maxframe-2.8.0.post0-cp37-cp37m-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file maxframe-2.8.0.post0.tar.gz.

File metadata

  • Download URL: maxframe-2.8.0.post0.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for maxframe-2.8.0.post0.tar.gz
Algorithm Hash digest
SHA256 c48c501a1bd3568791a667faa23e1f0503c38892420c63c1d602a41a92f315f0
MD5 3e28ddc9af7257e4dea12b590d6b52a2
BLAKE2b-256 b19bf40145ded51b72389bd56da2f0315f111a8da20411b463d3641274a75480

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 83591cbcc1293303c3d64159e106df252dfd81d2c6938307afe3e72a47ed9268
MD5 aeeb108f5fb5c41e334f2ddff032c300
BLAKE2b-256 81f2e45de52ea528aae64e365e2783b676f4c3bc4f29412b11d53374a0c0367b

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ec91a44e8388f78fd344298cf77d5b9bfa0a445b20debf3f449c6eb465930764
MD5 e9418f16de844fb2362d0dcfcee418b4
BLAKE2b-256 a8e0887870ec64169a3977d2ce2e3d274210c8586a755eea2c4e9ed6ff7f4bb1

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e1c8f5f5a42da08aa5082e3300b9cccfd7d36cfaf5ec4f10a86917f291d4181
MD5 4496ddbfac81c1241483ab852eaf8ad2
BLAKE2b-256 219058103a334c4531617e69dcd9d43795973efe9a37d00af44fff75db2ae710

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf0059134a7e18f4ddf2094793eaae1e48ff3a1788af578d8a83794ea107b9b0
MD5 11c05da481b6cc1a6a17e8ca9c7a37e1
BLAKE2b-256 6723818667bab459e920849d2c2279d962656f6ec02154d8c38ce1d39d1a6f87

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c40cd2356a8c614172f30fca319704091081d477d168f3dd33b43bd90a1477f5
MD5 a259da12e7420a8a633e5cabde74ee15
BLAKE2b-256 4d00796f33d8f03833d21b4abe95162fb4b4b6fef862db1f7379543df7028534

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 311b2f045c54092ef51bb6b6cac18e402a26274c276c0486cf9fce628ac567fe
MD5 6bdb087b9272686dd54ed2f3975fc961
BLAKE2b-256 28feb935277b4b585fd0a0cff2e229ec7a8ec906db7e43ae5f45ef7cd4da5aa2

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ed832351a0d7864478a2490c04ab7ff81761a7896047db7e856cb85c01d8c267
MD5 4d484babf493f63064915289d5e0d483
BLAKE2b-256 50e1f78c25cd7219e7a90aefa27b2e2b5c152d90d22d7f2d5b407fce40f4b0fb

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 966fc1b4cca88577591596af8b0810d11ea6b292b3ee16dcd6b1c6a9572f34bf
MD5 86343e82eb9e0077e6c949e3635efb7d
BLAKE2b-256 40a3be591926afb883067e396d63d35fcf83e2dca39071ecc491720c479dea2f

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd3b7e437c9aead20029d478ddce2a403c07a65ac46dd16e29c4f721b1da368a
MD5 971f1a0f1aaa28dbb6ee0417a70b6a34
BLAKE2b-256 4e9394e5885cba4868324df3d3bf856356bdaf577938ac62b7831558380e6cec

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 114eeed0db3ed21d5beeedf998bdee7d6e9d467cf88506206f6e31fd8e7cbb81
MD5 6f94f1aed57811647cd4b00c159eedd2
BLAKE2b-256 7896ff4f07233d51868fc0c2d400256e4e5fb2935edff4bc4378dbc9f3323fca

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4926bb54dad3cb0a69cd539bf34099b7000d25065916b121ca296d8b89b2323e
MD5 a1fcc9c08270a9944123906110c815b2
BLAKE2b-256 252e563215cffffb8aa21a7d852beea6a15ab1e17e0fe59b858bbc959aeb09fe

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee4ab6656575afca5b5ea79164833a0b1284503343e4f41ed8ecaf8f29496e3e
MD5 3dabef6e7d2cd0626fe178264f35c29a
BLAKE2b-256 0869261f39f5f89c6e0bec10a05fb3f371230e63df1986eb77bdd561d6202fd0

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6a097f4441f8a35ef5639b5deb460b521cda1091932da2a7438cd641ffeade24
MD5 f62786826f21082381ca3c673e2c14b4
BLAKE2b-256 a9c02401777b6c3fc56356b22f8c580cabf1fbff08dc1d43cde4e628151cb4a4

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1577c2e2829f09d7e23af9871b2b698af36b5e92e1171afbd3513a0d39ba580e
MD5 03587fb7fd49d2f803bbd23155bb7a28
BLAKE2b-256 a40ab955246f323ac56725b22e2ab76c616eb5714eacb834908bbf8361698186

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c706b1290b82006c1acea23a344da4f3e1891ae36d2aeee761050ade4448655d
MD5 6fa62c88491f1d72be6f67781db73953
BLAKE2b-256 f69562d940d65943127e41a3b73a7e4b6511d11dd9886c6a252a457d1a8d8f90

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff50a5b472e73ffa366fc260496ace53f8591ee491c5e1fa8fb52d5455765e5c
MD5 b42ca0e75783d6fd85ae0d6dc10b450e
BLAKE2b-256 41095da1e6c5dab56a617507f1f56c8640b15e6e070e7ff737c8f6b5e618611c

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf88b77f217187e1c1386e50508b66cac62ec9d55f5f9ad61fd98db432f2f3a4
MD5 f016f746956523c578cf593181227346
BLAKE2b-256 dfb488f77a3bd07197f901eed8f02763d82220720e5089a606ac7643ae56fdd3

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc07bf1f8fdfa44c2366169d817e726981c2b9ae174c6cf5766ebb7cfeedbfd1
MD5 1533e61efa4a6dc1fde241f4444dba33
BLAKE2b-256 71ba019c55fa7bec4363bce569e020af99fd996e8c300a59debcd47084bd6407

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6a39fd5d93f4b0bd0bbd68a832d71e3bea5d7461445b03e65f14a8021f4919c0
MD5 78cb663e03b7a785e1028c194403dc11
BLAKE2b-256 3b916e1f76b4c3fe79e8bcd8d8fe5be535ecc95a74d5809bf510827f7fd818ff

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp39-cp39-win32.whl.

File metadata

  • Download URL: maxframe-2.8.0.post0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.10

File hashes

Hashes for maxframe-2.8.0.post0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f2b9ba62ddf169bfac9807fab7696194dfed3c9283d5936df0946ac3a374722a
MD5 3dd7d873ce95dc4219c06a4183993e14
BLAKE2b-256 e76a8f519cd8b9933b4c7f704bbfc3e5eda258b558323771faed9384450ee8bf

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b2e591ed498669948e8778ca6cfd1a69d0148d8e53405b896ae8eda2c4933f7
MD5 595979f91f3dd8589fe38ad36adf9467
BLAKE2b-256 c2843dc8cc402cb48046304c76a04b2163e83e7fa8e4492c4077629e82066b3a

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c05702c476ab43260e25851a9cb6ff28a64930a15bc67856303f7035e440a087
MD5 45e39b91d7c415dd88c9bb5f15cc5536
BLAKE2b-256 4b8952708ffb0f36bac23ba972937e813d9897c30f1d9d395a5f9bf496e0232e

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05d52dee2deda8c0709735c62c0787524f2d7b0bfe9433d79e68fcfe8232990b
MD5 c151429b7ab73c0e7e2fe6d6f5c86af6
BLAKE2b-256 e30338bdd9d048baac9ea0010b3666232452d8f91978ca258ffdfb9c4ca7114f

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35b8ef9771abec2f2bc7b3a9d8e2ea9c2033f146b72f7c1dbd1a3434b97bdccf
MD5 fc24d15c07ff91abfcbfd77a73abea92
BLAKE2b-256 e2822d02623b85f1738162074b5d15e12423b2c4d75b827b3e9791578f61bd6d

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f37ddcdbe9e0c761f0d5573efe5bc26bf958a33ae26a3d5f4a5b777c0ffe8b13
MD5 35aecacd9c0fc7517b5d93c525fe0f37
BLAKE2b-256 73cc1a928aaa873dadbc3469e7257225a3230a7bd75c91ece2131847eb021ea4

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp38-cp38-win32.whl.

File metadata

  • Download URL: maxframe-2.8.0.post0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.10

File hashes

Hashes for maxframe-2.8.0.post0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 25b28f03d9a7ce267ca8284abb05d5bfa522b7893ea16d0b33c31466b7555da5
MD5 27b938dd2dc6db26dddf743e6de54309
BLAKE2b-256 46e467bfdd1550d84695d5773e815bba8cfd8a8ab15b920ad583b8feee72fa87

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ca336734f0babfb4b9d164731ac8903af95ab2971691cd8d1dfe6a03d8117c7
MD5 1134a1a534c123c1908d344895f53f6b
BLAKE2b-256 6a52a5b0ae8e0ffde3ac69ceb4d0a9888451ef70f04d191737be799aed78c5ff

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ade14651303585737d3e92a3cc6404af4a3762412541b141c465b4e20fd4d566
MD5 3c0eccbf0e6aebb7f0349727c0c1bcc1
BLAKE2b-256 681345f1537cc61a63e65f19fc70ca06687c48b96bf93063fe8e8ac4e6cd7d13

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5bf83619ec6df1ca9882b2b4fa5ae190e7baac6c4d4047d4ca48269cf6cb893
MD5 96f491027c4ad750d00412840ff5fc48
BLAKE2b-256 4a39473231abfaca3a164579d96fc6963fbc4921f74c9caf586cebb69fc612bf

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7813157dabdd8e1ac756e854b7a9ad24663210ae0badfc6be52e85b2de6f36fa
MD5 9fbd7325562989a4cdf79de2dc37b1a0
BLAKE2b-256 ae3cd85fd9604699c0287d887bba408982ba8590bc16c6d86897ed5ac4c93a54

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7ab787f751d2358684d011d16f50cb3bd555394e6172fb74dbeea79828497d06
MD5 cbc3a5f04466c07da1b63fa19d095d30
BLAKE2b-256 73e40402642a719b8eeb512810ade827ed40430aaa7f092de5d47c4c97161fd7

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: maxframe-2.8.0.post0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.10

File hashes

Hashes for maxframe-2.8.0.post0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 15d89bba37b7a30b8070d25493cac42851a52c52e9fd23a72b3e4fca289da72d
MD5 cd633153706184bc664ee4edfe8e03d7
BLAKE2b-256 6c067de90f8c57756ce3c1d04835edb88459bf35b9690fc52d751559d97ee6b3

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8f4ce6273b4695df60bfac0ef822b16bed8dd7484521da36604aec767c70eda
MD5 e253328202a03b5380dc523470d6bfe2
BLAKE2b-256 79e3cb74174ccf265ef16c32ff5cb90267e6c5ef513ba077f89d2a554817ca32

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c65088c481fce5754b48fdda55084e1f71265759e1b63f658b57ba0386a56119
MD5 31e79555f68a01c7fc21528f64464449
BLAKE2b-256 e4e4c4fe0c5917186737aeeee1bb7167f7bce7a335c374e2d7334d580146dd5e

See more details on using hashes here.

File details

Details for the file maxframe-2.8.0.post0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-2.8.0.post0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06efec51d051aa4f47032557a278a50d9ea9cf7b4f4ea968405670ce2db6fa59
MD5 8c69ee2dca8c9d8a19e4805897db7bfa
BLAKE2b-256 bc4dcf82a7a17212d9548058897e11c424108f5f15a2b16fd5a2ad61fa9efaad

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.8.0.post0 This release

36 files

2.8.0

36 files

2.7.1

36 files

2.7.0

36 files

2.6.0

36 files

2.5.1

36 files

2.5.0

36 files

2.4.0

36 files

2.3.0

36 files

2.2.0

36 files

2.0.0

30 files

2.0.0b2

30 files

1.3.1

30 files

1.3.0

30 files

1.2.1

30 files

1.2.0

25 files

1.1.1

30 files

1.1.0

30 files

1.0.0

30 files

Supported by

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