Skip to main content

MaxFrame operator-based data analyze framework

Project description

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.

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

maxframe-1.1.0.tar.gz (551.5 kB view details)

Uploaded Source

Built Distributions

maxframe-1.1.0-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11 Windows x86-64

maxframe-1.1.0-cp311-cp311-win32.whl (1.5 MB view details)

Uploaded CPython 3.11 Windows x86

maxframe-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

maxframe-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

maxframe-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

maxframe-1.1.0-cp311-cp311-macosx_10_9_universal2.whl (2.1 MB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

maxframe-1.1.0-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

maxframe-1.1.0-cp310-cp310-win32.whl (1.5 MB view details)

Uploaded CPython 3.10 Windows x86

maxframe-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

maxframe-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

maxframe-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

maxframe-1.1.0-cp310-cp310-macosx_10_9_universal2.whl (2.1 MB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

maxframe-1.1.0-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

maxframe-1.1.0-cp39-cp39-win32.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86

maxframe-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

maxframe-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

maxframe-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

maxframe-1.1.0-cp39-cp39-macosx_10_9_universal2.whl (2.1 MB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

maxframe-1.1.0-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

maxframe-1.1.0-cp38-cp38-win32.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86

maxframe-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

maxframe-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

maxframe-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

maxframe-1.1.0-cp38-cp38-macosx_10_9_universal2.whl (2.1 MB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

maxframe-1.1.0-cp37-cp37m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

maxframe-1.1.0-cp37-cp37m-win32.whl (1.5 MB view details)

Uploaded CPython 3.7m Windows x86

maxframe-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

maxframe-1.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

maxframe-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file maxframe-1.1.0.tar.gz.

File metadata

  • Download URL: maxframe-1.1.0.tar.gz
  • Upload date:
  • Size: 551.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for maxframe-1.1.0.tar.gz
Algorithm Hash digest
SHA256 d7ac6aa6b0e7d92f9e999713b09d9fb73b096b210d86361112d3cd7847e940f1
MD5 087d6aab2bc801163e1c0d56be27a5eb
BLAKE2b-256 be32045bd50e4db9d6fbb78c789a5747e9e501a0f3949aed3125b95b5c46586e

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bdccdb453af1d97cd246433dd9622567eed69f404f6ce958746606bb9279246c
MD5 287db46d6c5349f35b5e43808c33d2ff
BLAKE2b-256 50856dd770288922bccabcb1a285ae5e7a53b1d822cb7afffffce5c09ba0f052

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: maxframe-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.13

File hashes

Hashes for maxframe-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a1c2a1607dd5b8fc56f1ad3fa28da0beafe0b557d7b89767e4b0e5b60a2b452a
MD5 641a463c3aafa904d394e93b1d735d35
BLAKE2b-256 542230e7d7e1741850e6b3797ebf01366827e16f244d5765af93672d08b0da85

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88895af5b9551328bdd8d440f8f414c0b4492bd5963f8d5de6cf704cdf7cdf8e
MD5 734f945932ad47be6b84910bb483ac2e
BLAKE2b-256 ef96790ed72155227a4b5a4946be27f9e5fdadb83939694fb2d33c558fd26e5b

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74c743965a0797b204a8f2ddaa2b7c84472a12590e44de75d53a7a4349a4a3ad
MD5 7a858eacc4bdc491f1800cac390cceea
BLAKE2b-256 d95ab097044c4de24bb20d4d05512bfed80a0cd8822d78baa2c8a8285edbca37

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56fdedf15b80aa030e183631407bfe88b2dfe36f15cced51ad5cc89a2669d0d0
MD5 63e0837a9ddfd4fcf1fb0ddb619e2844
BLAKE2b-256 53be67edd3d44be4c45e6a97d6db0e62268b432fc7a93822a3743e09e3b3dc47

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e7dfca086442d3eeb02b2776eb6e8fba360026d6394a3df68baf2763bb2ce925
MD5 40bc9c60e3e4e6802c0ec0cee4f3ba62
BLAKE2b-256 ccc681869121e0c8e4dab0962f11e54cbbd7f812d80bee1b6bbd7e5343da8f41

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 12a63ceac1601cd112ddbbe9994308a5667f4debf2768c8a7f5fb7fa9116df91
MD5 542ef9f068c9f8d6cdd9c30f8a5f2598
BLAKE2b-256 eca20606373094cd1e6c3d8ea592b8f004fd0d819d7761fdaef5dbea8d16f8d1

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: maxframe-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.13

File hashes

Hashes for maxframe-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f4b846c8d42b5f743b61563aafb09f5fd9fe8a89e94076bf6ac3c129ae44c421
MD5 3d4900eca73506f524397f0316c0267c
BLAKE2b-256 124cd83fe5393e7f141c5fb42a45b49d282a45ff659a34abdfd8230b3994c4be

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 145950447f9d9fe05462fc349b84ba18c7b10a229fb1936f13ee801e830c3db3
MD5 ea540e2de472cb257bb49c54dfdc680a
BLAKE2b-256 5f1bae993e451917d38274058d6333e713b0e9b75195abaca1d2f377706612b1

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69fa7acfd2d880518494b64e7a7fd2b9cd480e50d13c1775ffadd8d7514a994d
MD5 4b5eea50199141082263ab9d339de29b
BLAKE2b-256 69427c4a89025acb3987acd5fa9f5d7db1a463699488aa4b4e3fe40ec3417e2a

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b2182d5da3cf431b3be074c2465964d38d4f5b18aba1987c73c979ef9b8a0a4
MD5 1dbbb61ab1d6c735941b9d0e05d83b9b
BLAKE2b-256 b4d9f78251cad44d2094f89d3c5e03c314d4c5b1298c91f9997c92f428015727

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0a223e37e9e7c0be5384c4497ad5b4032c8d3048ba3a20ff4434d84088f25f24
MD5 1e9b4f94751fd82acdf946e021034b04
BLAKE2b-256 a80ec88731bdf8307ba1c7914e2f160cc4269cb3b7a6fa3bf7449cce8b424ea0

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: maxframe-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.13

File hashes

Hashes for maxframe-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e623636ee0d128a1968f35030acd6fe9464d91af8fe6076626da63400a4a837d
MD5 be218b68264aff40d243f5c10e9cecfd
BLAKE2b-256 262dad527c5493212aeb6f64d5062ebb1a04e0b08bf3d4aa61bd7565b5edf4d0

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: maxframe-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.13

File hashes

Hashes for maxframe-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 67f1bc52f1ce32a50317d47b58c77db37727ec2c562c4ba41653267b7ad06725
MD5 1587ab71c9823665820fe1577405404c
BLAKE2b-256 03744f976b3937fc7a6bf3bcfebd09f94d122bfa3e1954ddb3b414b2fcb8ab12

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32e04129ae2d71d8d22b2f77a6dbc5909999799d3df826d448925156b0f7e143
MD5 2a912f7d7d47b4a48b610897f82d7fa0
BLAKE2b-256 1d0b453a60850940e89072c7e06004430796859174548d9d616d9a953e000263

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2943ca423c5f8841b7b4e54f8ea83432eb1a8cafe3cdc4c65a475f1ab09f6650
MD5 6abb8b6b0774b172172258f1e8b5940d
BLAKE2b-256 51ca24b1bde224b3dfa776643025f2c686c49daa6403912974bbbcbd52f11ff6

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 391f008774518553a593808acd3e3d814ee9379ac952b6bddd3965a926ff4a3f
MD5 18934bcb76bd54e14048516976348e7b
BLAKE2b-256 9b1dbb5f1702814852d1fbd6bf7213a97a87cde9264974c81a77161e9d3a07e6

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 616c6dd2b5a453fd29d18c869c9b08e7fa6ebac5d21fcf4f065d1566d7bf745a
MD5 84ee928e4e0f0b44cbd1efe831c21b3b
BLAKE2b-256 8c23373c96a3c4186d521bee2245740f6fc01a2032658a4c229cc838ee7f3f66

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: maxframe-1.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.13

File hashes

Hashes for maxframe-1.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1cdf3dd21341eeccb660d1b853d2082f46d64e4dbee08811895f2596efadf5bd
MD5 2f96874c288c7f986d8477f304162a4e
BLAKE2b-256 14279ed929cece13ccec07457ddf5bc591a7dc19bfeea663026ec0971c8ffc17

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: maxframe-1.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.13

File hashes

Hashes for maxframe-1.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 110329f0e843e7a1f3c693a62f0ca96c88ea6effacf3ca08c5669133670b64d1
MD5 c84b7e5638735de5132a89a47bdd2c3b
BLAKE2b-256 e0e7969cc06b43a2e5d629e7c81840a0e45e2b9f841d5b151af9114425d9607a

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6590e6ee036af9f25493ca3b325e0e75cec0c51169400fa68b42756348b167d7
MD5 d6fb41265dc8f66fad3c531eb04e4ffa
BLAKE2b-256 45415d3f7d751d47eb4b605f299d8d118777ae0113a065e089941128064305f0

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6765a124139a0cbb850fdd059c6df5a311d737154295ec0c979d5521bed8449f
MD5 3d8253650b37e9a0409a144120a478b7
BLAKE2b-256 189e24df82b44a4aecb842fd0cbea91e7a4897e39063408ecc5edc0169d9d728

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83772bda9199f78b34b9c3880b26dd9f40120f7d2b782f1b8b878e1df342f8b1
MD5 1c060e0406c7298902d30a3a0134292b
BLAKE2b-256 524f8314a98ba2e44682c6a692d88fd003ef6fe24f588f328ae56db9165baedf

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 abe7b6ef9ece3077b4cdd220e99465535944b36f008789dc670f2cc0bdf69e3d
MD5 4d2ce1ab10090bcc29e95bb25d4586c7
BLAKE2b-256 e8d0fce50952b8c805a1be08345f76b836dc238d173997b62682ce02be9ee1ec

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: maxframe-1.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.13

File hashes

Hashes for maxframe-1.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2337a002dcd4a30fed09f2bdbe7cddca7faec8096e473e4269455e208f734977
MD5 47e0ce66ebb07925a24db315a5fd5c93
BLAKE2b-256 9a79620092cb138400ca90860dc8fc371c6a227475ecaa6ad2935c78aeb7a2ac

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: maxframe-1.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.13

File hashes

Hashes for maxframe-1.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b96c859dca8efc7b270dc5c198216dc98056c3704e54b2a9246122aed85e33ae
MD5 8b7778256e7a026d2ca153b0d38fe53e
BLAKE2b-256 313d90a7404bc1dc52f7d185cdb0f1bdb84640236cadbe1198b1ee2b03554989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for maxframe-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5b2168d28abf354fb9f12ec7af1c03abbdd76a73ac609fcd0b2c922b672ae0b
MD5 06624e19b871f35f0aa74b1ebaba116f
BLAKE2b-256 01c908a940dfccff9a7b58e6a85c01b9606d87bdf0629405b5b98aea1e0ebf92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for maxframe-1.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb7eb30c4d18bf0c0682500c3161155c808bbfce752f6fbb3f491e5c0c083abc
MD5 0d9b056007cb7a24c578fba94f688014
BLAKE2b-256 1dcd2d3349f8e027869260afee8a828aedc57d6dfd7cc1aa6032479e956fd0da

See more details on using hashes here.

File details

Details for the file maxframe-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for maxframe-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 305973d62e865d979756d509a69c8bc94dcd4c6a3648bc715ca3f8f11586077d
MD5 377ab5214dea33c1ca7e181eb249b290
BLAKE2b-256 1dddb86115eeef21c3dc2005e689e311fd6c42170ccaadab311396b8907dc6cb

See more details on using hashes here.

Supported by

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