Skip to main content

Elegent way to access ODPS API. Documentation

Installation

The quick way:

pip install pyodps[full]

If you don’t need to use Jupyter, just type

pip install pyodps

The dependencies will be installed automatically.

Or from source code (not recommended for production use):

$ virtualenv pyodps_env
$ source pyodps_env/bin/activate
$ pip install git+https://github.com/aliyun/aliyun-odps-python-sdk.git

Dependencies

  • Python (>=3.7), pypy, Python 3.11 recommended

  • setuptools (>=3.0)

Run Tests

  • install pytest

  • copy conf/test.conf.template to odps/tests/test.conf, and fill it with your account

  • run pytest odps

Usage

>>> import os
>>> from odps import ODPS
>>> # Make sure environment variable CLOUD_ACCESS_KEY_ID already set to Access Key ID of user
>>> # while environment variable CLOUD_ACCESS_KEY_SECRET set to Access Key Secret of user.
>>> # Not recommended to hardcode Access Key ID or Access Key Secret in your code.
>>> o = ODPS(
>>>     os.getenv('CLOUD_ACCESS_KEY_ID'),
>>>     os.getenv('CLOUD_ACCESS_KEY_SECRET'),
>>>     project='**your-project**',
>>>     endpoint='**your-endpoint**',
>>> )
>>> dual = o.get_table('dual')
>>> dual.name
'dual'
>>> dual.table_schema
odps.Schema {
  c_int_a                 bigint
  c_int_b                 bigint
  c_double_a              double
  c_double_b              double
  c_string_a              string
  c_string_b              string
  c_bool_a                boolean
  c_bool_b                boolean
  c_datetime_a            datetime
  c_datetime_b            datetime
}
>>> dual.creation_time
datetime.datetime(2014, 6, 6, 13, 28, 24)
>>> dual.is_virtual_view
False
>>> dual.size
448
>>> dual.table_schema.columns
[<column c_int_a, type bigint>,
 <column c_int_b, type bigint>,
 <column c_double_a, type double>,
 <column c_double_b, type double>,
 <column c_string_a, type string>,
 <column c_string_b, type string>,
 <column c_bool_a, type boolean>,
 <column c_bool_b, type boolean>,
 <column c_datetime_a, type datetime>,
 <column c_datetime_b, type datetime>]

Command-line and IPython enhancement

In [1]: %load_ext odps

In [2]: %enter
Out[2]: <odps.inter.Room at 0x10fe0e450>

In [3]: %sql select * from pyodps_iris limit 5
|==========================================|   1 /  1  (100.00%)         2s
Out[3]:
   sepallength  sepalwidth  petallength  petalwidth         name
0          5.1         3.5          1.4         0.2  Iris-setosa
1          4.9         3.0          1.4         0.2  Iris-setosa
2          4.7         3.2          1.3         0.2  Iris-setosa
3          4.6         3.1          1.5         0.2  Iris-setosa
4          5.0         3.6          1.4         0.2  Iris-setosa

Python UDF Debugging Tool

#file: plus.py
from odps.udf import annotate

@annotate('bigint,bigint->bigint')
class Plus:
    def evaluate(self, a, b):
        return a + b
$ cat plus.input
1,1
3,2
$ pyou plus.Plus < plus.input
2
5

Contributing

For a development install, clone the repository and then install from source:

git clone https://github.com/aliyun/aliyun-odps-python-sdk.git
cd pyodps
pip install -e .

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

pyodps-0.13.0.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.

pyodps-0.13.0-cp314-cp314t-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

pyodps-0.13.0-cp314-cp314t-win32.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86

pyodps-0.13.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyodps-0.13.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyodps-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyodps-0.13.0-cp314-cp314t-macosx_10_15_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyodps-0.13.0-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pyodps-0.13.0-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

pyodps-0.13.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyodps-0.13.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyodps-0.13.0-cp314-cp314-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyodps-0.13.0-cp314-cp314-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyodps-0.13.0-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pyodps-0.13.0-cp313-cp313-win32.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86

pyodps-0.13.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyodps-0.13.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyodps-0.13.0-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyodps-0.13.0-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyodps-0.13.0-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pyodps-0.13.0-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

pyodps-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyodps-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyodps-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyodps-0.13.0-cp312-cp312-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

pyodps-0.13.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pyodps-0.13.0-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86

pyodps-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyodps-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyodps-0.13.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyodps-0.13.0-cp311-cp311-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyodps-0.13.0-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pyodps-0.13.0-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86

pyodps-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyodps-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyodps-0.13.0-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyodps-0.13.0-cp310-cp310-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyodps-0.13.0-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86-64

pyodps-0.13.0-cp39-cp39-win32.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86

pyodps-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyodps-0.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyodps-0.13.0-cp39-cp39-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyodps-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyodps-0.13.0-cp38-cp38-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.8Windows x86-64

pyodps-0.13.0-cp38-cp38-win32.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86

pyodps-0.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyodps-0.13.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyodps-0.13.0-cp38-cp38-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyodps-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pyodps-0.13.0-cp37-cp37m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.7mWindows x86-64

pyodps-0.13.0-cp37-cp37m-win32.whl (2.0 MB view details)

Uploaded CPython 3.7mWindows x86

pyodps-0.13.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pyodps-0.13.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pyodps-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file pyodps-0.13.0.tar.gz.

File metadata

  • Download URL: pyodps-0.13.0.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pyodps-0.13.0.tar.gz
Algorithm Hash digest
SHA256 a1ab2433f0de87d5c9a7cdb7f99687e772be54e82ce2100a89e4b3e5b32b723f
MD5 df12de150f64f7427c6b6854cd2859dc
BLAKE2b-256 4fcdf5d7dce9fd4b65f800ee0c62ae01cbb9dd659059fd291d9081b362982b8a

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2ae7b1c98a42916862064562305b650240129c4715b647bcb878d0913ae0abd3
MD5 d20dab90ef5e09b04451acb7b5ef14e3
BLAKE2b-256 b754537f63c8ccf8c28bc58f2f2dd5f737de5c975f4a9bcce374c8d6e9258d38

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 91c70be138f8e4107795ccd5940c1af563264e5c7470c938f50c87a97da57ea7
MD5 669b821135d92a5f5d7520db07128219
BLAKE2b-256 74f9a9c6ca37fba8d989b144bf4b5f75c23b1dd93fe95d10810ad7845badb318

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 751c0197296cdbfad8fce3496ef816d5658815f9bd2bb91a2f55bac7a8e25723
MD5 2b173bfedbc32c72af0ccd2cf1a614b0
BLAKE2b-256 0ad282cada06bf238375695ff7c43b88104ad652265138de2fa7deb1ce5f9590

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11483be6723907d9f66b6e2a723dab139d969d31daf3bec8b20edb331e5caeea
MD5 c741d23650d7763171998f8e9789e46d
BLAKE2b-256 aa433e51b8e89924f32187e25f96244dcb1fffcc0158c567e8682e66b0c710c0

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50d508fd2cea7daa62b6d38d05ad50586c44a876796c26c6187bbf55abe4f463
MD5 f6a63768b35abbca7531a2bf0a0428e0
BLAKE2b-256 516187a04fcaab5693a20a3f43967c9363c191b98031ed3ac961658174282c71

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b4d630996b6782a3af7871c95c61f8c40af8540aacac693548fc7ff330ec0940
MD5 78560b616d00b159b3da245280b86bcb
BLAKE2b-256 3c63422318d94d128db7c7ac1aad5442d562dd3d216bcbad57ff59187b8af85c

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 36d2392313eb62c323e70315cc79e976a1aa7a95fcfd5312c3658ff985f17db6
MD5 fe608a82fc362e7019dbf91e4774685f
BLAKE2b-256 416660dc3d0e497c6683b1cfaf6873434079f232840348d4e6b3760c14908ed3

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2429a21c99a495da088eb9fb550a18e638f3ab1e0fbcb159d02cca2d15c899b1
MD5 28374dd18115360f2f1d62691d3425bf
BLAKE2b-256 6ef12b2ce4a56cf83bf48805e075b8c472487de7e41806ac7b3a02f619fa5571

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3a6b0924e836f029a8cf6899b4fce44d59293280000a55453449a8ea7c669a3
MD5 3d4c48afad4eab92801a58edfc59ca34
BLAKE2b-256 ffcceab914514261c702306601bbc12847b6dca704615de9bdfca50448c8de4b

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da819c5f171d0fdf12791e1e88332bf64038d2f2505b29a0ace7b94f6a43b484
MD5 e5b853a2569bc11fb3bbb33bf56be86c
BLAKE2b-256 26dad29a1753e85c10298afb45e8b7f4f0485f80eb09f62e485d44e06ab46d50

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d82bbd4289002e43f64fb87cf4c3ec2f3415e78085eb11e0a7d33af79dc6057
MD5 0480c2e20525fda6970329e82cf73930
BLAKE2b-256 bad588fd5dfb6a30c4b0633fd95c0984aaccbbffc8012e04b4a3d4654566f4ce

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d265e4c1f7160e0d460a408845b682453e5c5e30b9e32dab889e9cb35430c78c
MD5 c4f5ca7e799bd5c9e6fa6df2eeab183f
BLAKE2b-256 5c366cd91248179b19989b3e4dfe7b382356e2695abbb6c22a803df11bf7d5da

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9b04827dc5fcca5d12b7b922040430d67e89d96025075323cfdbcb64c74f3036
MD5 cdc9d22f6134562a8f0ce6d3c1d0d612
BLAKE2b-256 a514c8932d7c8be013dfa0b998214c375062aa016de4a0fbbc63cc8e1ec25569

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0e312bb3eb68daebd4fdd3c4deb6f4ec551e4927d32ded4c3d8fa5849baf6f12
MD5 5b4e911a5cd3cf94449efe1cb5d49cf2
BLAKE2b-256 b624323a10b0f17c9fadceb5dfa00d5c74c194803d64d871746b0fbad0e54495

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd52835542e4bfd8b76e6480911303e38a8d32f7ae75e6c8011edad37b72ec2e
MD5 3f12182acb5fabef0d96cbb97db11ee4
BLAKE2b-256 c7156658a60f57ef0a8472203e0ccb1c1b7b838e88ecf5ee11a6fa2c426c323c

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5816684fb74816c72944fd2e5d5eb00e759c5add63f74e938b07d108aa0be0f
MD5 00c340523728b40a9af8cc5aca223e86
BLAKE2b-256 8e1dea33ad6f84ba67fc31941cd8a293c0f5132481373a7a020c6b45919f4f7a

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72e4f9de4770653b48519efe75e69e4cfefda20edce5c1d2114d77bb9072d8b5
MD5 20b0fbaebe686481dc0e16e64dd73ca4
BLAKE2b-256 9a6ed0db1001375736858a8ee919efcf3fa286c006b5d09f6f1362cf8ddc14ce

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f7109aaaac1ca70bbffe701d9a6e41a17712ab6eb407596f6d0a6a52f4647608
MD5 765a2a8079a3e0cf7873c1e2d98cc0be
BLAKE2b-256 939545ceaa58bbb3939db64d351fead5aeaebd84ae8b1b036e73550b26d36047

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 58e98b99040a6ba33e07de8b2be9c192c2f1ff441aca17d0351d44561e12f063
MD5 6793daa0ef209a69c9e9d9d584624c9a
BLAKE2b-256 a768003c5cf61d465d06b84242a0e8633303fb7045b941b8a12eff9df6f6bf79

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fac7410bd9ad55b7f8c3d28e8001b81a6e576f5c40738656e70fdacef0fc4a8c
MD5 1a1c2e70cc330d72f47ebf75d11439a5
BLAKE2b-256 68fdcd6896d77ac5de7012b82f4f430537ffd4b5ec8addaf8af01f5518444028

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d7d5d1fba4240e41fde6735b9657fb14cb4c684c2aa0a7267b3ea4b43823270
MD5 b29ede96513c79628baeb19a7f0b8a3c
BLAKE2b-256 07c5a9d5dcca46ac02b045ea13520b6c1c8a252173c8af5c68ff2ae0b43d8ba6

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de322a5c1e6fddb3c2c4d1e9ad45f29e71696229046d4da717b256943198be6e
MD5 434e7c0d3752c0551979d1bf51295a54
BLAKE2b-256 ca126dd7bb5be434d211482c1b5fc2a82f4fc45cbcfaadfd60508db5ad69dce9

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22e61926da63ec82172ac0b78448a59e5bc4aa58da71432fc8c3fce31e9f3a5a
MD5 3575a53ec247c46ff012e42d9a857809
BLAKE2b-256 99487ef2004f8de0d34188fe11f317120842523d38fe07358168c05625b96683

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d1d47dd12ca7b836d09f54e5bffe849b7574a9d0950c2e22e9dfc89679fca154
MD5 7f0811bc59ae91251708f150edeadb59
BLAKE2b-256 7e02674a9592ee4f9cb01e677c934b976a0d1f9231f2c6d427e9e819588446b8

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e61f5be69619e154b1f7dd990e585d8cc499f81a2b1c8575e07862ac68c8295f
MD5 ba3fdfb3eb267312bc24be0897c50d46
BLAKE2b-256 abbdb377880b2a48c1deb0f0339d9b16b919e79962e84c897205eec33739e524

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1468a8c0e5de59b976a204724a8881a3b2d6992cfb239e86efa0e614d4c2642c
MD5 876ca40ea15d409168b7602acfd34f15
BLAKE2b-256 49d19a7ce1e2d5334570af8f2e1ed3cb204ed62832648d031fd7f4d6d4c6b5d1

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17c5739b2fdc808c7ee060ba772c9f18c8be86f636565d1ca28ccb8047d4d2a1
MD5 0ec40ee6d70f7e1a8d46f8f286f48452
BLAKE2b-256 c72908a009ed2cd3196c42c68c57feac0cf232d6ccca495ebc2b31bece214c9a

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee4103962381b271ce94219df74dbe14ca5d6bde10ea73697bca680cbf2461ad
MD5 feb1d68bf45c2cc66a775ca226f21c29
BLAKE2b-256 0d0d621c2dcf6ee05d01ba4537054df07803c2b08ed0a62e5cb6c9e9b5898365

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca802537afa23d56d5babf0f965d502918f644352468faa01253e23bbd570daf
MD5 5967a68ce601ce5a1a20983daeed9c1a
BLAKE2b-256 30ac1e65e00fc70e2cf370e3c77d12854b74b043143a70708727ce41c250497f

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cad4d2ddff5d9937ff9cc473f309a5b817f35e5bad57bc8d27bb581a0dfedadf
MD5 3def19f12823d80d304afbba1a1c90bd
BLAKE2b-256 8419c6e1c382734165d83a8f0b310a7f98a5d2dd5f40c36ea505c7c1ba3d83aa

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13a54ed63ef182e06790c0571ceb4f5df7a8212f5db675b045c765bcde113aae
MD5 2844ef4c07defd981a4189571fce4e41
BLAKE2b-256 2aa03e81ad32092a7779af3a5c6b2a58c39c6e9b2425c1c9edaa01a05f189893

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d6dc7e6dd671acb71d38cc7bf4c1331c74a54eb09e7418ea5eb8b2826f3cc201
MD5 b3d35a0445b4386ad3ca1dba58753b5b
BLAKE2b-256 36d16afd6fd72e14fdc1c4e267996d5b3e83b1ff0f3f790ab0ad1b0700c32f33

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ad34417a56467cab54b369fb3510b619ac868d955a9117e88fe4f16ee5cdf3d
MD5 e51571b373e077c4e4b70cc39d544b46
BLAKE2b-256 2ee11385fe94468edc5d9b76fff4fbf8dedc9ef43173d5eec17391e743ca1cb6

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b388c3ebdd1f6db13ce7544c1cf313dbaab982fff48d23d08d063798d5d44ca8
MD5 55c1add4b95cf6be91a35fa6bfd3fabb
BLAKE2b-256 e96d3ff3debee0208e3f517ee95cd5af33b8e4f15ccbd6f77d29638529276fe8

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 668107bef6cc0d7c9b84149bb2bb05e2ed7ea282a178bb23881893ce56e4d999
MD5 d14b141e94e97672ee532f59d699bc50
BLAKE2b-256 84dd906936766788e674e502ed18855264c2793111f679f184b4c79ad422f415

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef6d5aaf8b5e91be53a70cc327365c313ab235b94bfa39cd04edc5e5e5b0f62c
MD5 60a42f7e4bdc7e30885fd9d7757deb75
BLAKE2b-256 ed8ca857e8a32d022090efacc3f9696519b996dc152e9c1fd6c819018617f4bd

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 503ab89fba4ee7feb8f561e08d6bd91289d5d9ce9a4bafce2b1b22534f411293
MD5 d7c01fa8d18a0563bb89cc7bffe027cf
BLAKE2b-256 22998afb82c0540e640ad82fb7c4302523477c063446b8e8b070206a4803f7f6

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1db406af1ee6029d1cb27640dc891b067224b4c023ebc39ad965967dd4d37842
MD5 3c18958fce85e7acad6533cf6d009a35
BLAKE2b-256 a4d310216983f9de1667227523e02f8d3c172b0793712ba5e66bf723989af284

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 791f1bbb5c74717e37ed79d0a37e5168a3cbe34a970101d93ebb8d4d7cac27b4
MD5 3995e08f1b966e962aada6b3c1984514
BLAKE2b-256 cc35a57c0c897e77751d2e7024f036197830ec75195743984ab275f1274e5fa4

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e426dc17b55579da38d265c9fc46a99565d37036563b8b6be80f5f20f369967c
MD5 b648a7d1f3d2c8e38d5931ee7fd2b6f6
BLAKE2b-256 4c338390ca1a6655bbb66d1f5eec5e62a0de72f198877200b81156ab87f51a51

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8778db862ec8ce366d4e67293e97fbda4ac276b6e2641d00006566d5c90b2a49
MD5 94ddac767341d6901d66767da75282b2
BLAKE2b-256 95363cd5310c1fde2e969b82c4b5b8b61503f7612b14178cce0752120910fe8d

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 554fc2f291bb6d182957dd40dcd65cf2b18fb93742f0cc3a855f2572af7c8ddb
MD5 57a08af76cae4aabf8dcda69e156c942
BLAKE2b-256 4cdf177229ca1f8324cbf6cf73d2c19ab5b8a6365ffb83a3d3ad98faf4b217db

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a3df2f3062ea4fdad5a4b31d06e03a9d3b54709577a9a3affc01defd8e42b8d6
MD5 6d9456746e7b7631422886a3f0d9a3fb
BLAKE2b-256 34f61ac12a94debf26ffd355e6de930b1e83254448ce5dd5c04490d7cab43d17

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7e7c3f5f750c78f06c9c53e6bf1d04c61674fda1f5aa6b4439ec38a47bd7cbb5
MD5 d69dc6f6a0f650e6c1592eb92e304635
BLAKE2b-256 1b27f869817b4ddb4567d2b8eda2fd7a5e423120718dcbc6749808447ae338cc

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dffc215a4da5d67a767982a28507497cb1f01ad1f8a076f2ff6fe9b7df58b332
MD5 76f25b4d97ea9b4b9b7185e8e89e0e19
BLAKE2b-256 29587607996fe928e3f7af1b5a78d0edd7a7b0762d33cefddfad2583790cdbc5

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e58b7c57470953b04350805911fa67d19876ee4693da0e5f2958d28c45acb76c
MD5 91671bc7da6841d6d47410add065d9bd
BLAKE2b-256 71bde8473087de65aa0852030a494a51c0989737503159e0db8f1739cbf5dbed

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7472721d853dac606dcaf0bb27659dbc981df3984bf64ffe5bbbbbe4cff1ef2f
MD5 7d76458558f84ea52729ee8a938687a8
BLAKE2b-256 66cdf3045493ff4f4e977676ff9ecd350cd22365aac9bda10ff48ae3a458ee12

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9a06047f45e3c116621f39c52000a6211f51a3836541497709b228c624f43d6
MD5 3dacfaab59776a7e87c17185626fb1d4
BLAKE2b-256 c388428aa52b124ac0d297d4ca9fb8d915973db17b51be24f171336a7712664e

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 39ea6c72fe7f176f6916f46e1ff7c5c34e4b9882b849e3c0ef6ad636845b15f6
MD5 f7e9ca36e4290761122975e91252b2b3
BLAKE2b-256 714aec0c95fb0c45291cb566e3e49bbe58fe13f3a94918c4ac178c172af251da

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyodps-0.13.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.13.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d86360388a99abe92f0fab40157052c2b770dbbb6c589e7b248c537c4291a201
MD5 e261be04f3bffdc5fea557e198b5d169
BLAKE2b-256 31eb50f0241a18e0255b7c7d2deff09768458f973788d84eba2113f425e2b240

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6cc234169875e44db3fd08a02dfc00d783b4c06dec26a24ed816df67f281c06
MD5 5483ba65a5e4dbbd0705e64c0281f0bd
BLAKE2b-256 620d660ddc129bcde3425109058b59475a6bc1577877b9dc82eb8c045c327725

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7b902ef06f6743a41d9650f21bc885eb4851d3cfc07fe8c791c272069c41c63
MD5 02c5a5e972c8ede3a26ed05f21534395
BLAKE2b-256 dec23a0f59e8116a61d942a37c9e1e8a6ef4726abcb902805b5883a7e9763732

See more details on using hashes here.

File details

Details for the file pyodps-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72084f0f89ea01274ec23f65d661ba3961cb3c19ad15ce80f3b9abfb1a3d8e11
MD5 8e2a6679d91ed0704c4cc52d9285fff5
BLAKE2b-256 e3e0e3cce06d9b2a9f63c3223d34d83acdf1d29c8e246efa81a9ac81a503fbf4

See more details on using hashes here.

Release history Release notifications | RSS feed

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