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.1.tar.gz (1.2 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.1-cp314-cp314t-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

pyodps-0.13.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (7.0 MB view details)

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

pyodps-0.13.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (7.4 MB view details)

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

pyodps-0.13.1-cp314-cp314t-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyodps-0.13.1-cp314-cp314t-macosx_10_15_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pyodps-0.13.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

pyodps-0.13.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.8 MB view details)

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

pyodps-0.13.1-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

pyodps-0.13.1-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pyodps-0.13.1-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

pyodps-0.13.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

pyodps-0.13.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.8 MB view details)

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

pyodps-0.13.1-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyodps-0.13.1-cp313-cp313-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyodps-0.13.1-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pyodps-0.13.1-cp312-cp312-win32.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86

pyodps-0.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyodps-0.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyodps-0.13.1-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyodps-0.13.1-cp312-cp312-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

pyodps-0.13.1-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

pyodps-0.13.1-cp311-cp311-win32.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86

pyodps-0.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyodps-0.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyodps-0.13.1-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyodps-0.13.1-cp311-cp311-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyodps-0.13.1-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

pyodps-0.13.1-cp310-cp310-win32.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86

pyodps-0.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyodps-0.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyodps-0.13.1-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyodps-0.13.1-cp310-cp310-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyodps-0.13.1-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

pyodps-0.13.1-cp39-cp39-win32.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86

pyodps-0.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyodps-0.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyodps-0.13.1-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyodps-0.13.1-cp39-cp39-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyodps-0.13.1-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

pyodps-0.13.1-cp38-cp38-win32.whl (2.1 MB view details)

Uploaded CPython 3.8Windows x86

pyodps-0.13.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyodps-0.13.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyodps-0.13.1-cp38-cp38-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyodps-0.13.1-cp38-cp38-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pyodps-0.13.1-cp37-cp37m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.7mWindows x86-64

pyodps-0.13.1-cp37-cp37m-win32.whl (2.1 MB view details)

Uploaded CPython 3.7mWindows x86

pyodps-0.13.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pyodps-0.13.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pyodps-0.13.1-cp37-cp37m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1.tar.gz
Algorithm Hash digest
SHA256 f1de80ffc9117d4c1b2304f0edf10e2305080779cbaebc6d96e10c583d925e1c
MD5 8e35d40243cfce1abb54619e2e8ecfb8
BLAKE2b-256 53ff09833bb5ea9a48805e345bc14e26f016268f5eded0f8b14d401c97f94375

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 440a445da02b82eef7f637c59070a59d3088f7ac2563da9e0806767c88778a49
MD5 63c8d9adcc16a6f4bbf11267ccbbf074
BLAKE2b-256 fde262b7293312e14aea1cb2f7f38f944b19305b05f0faf4d7cd530520bce66a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 fc5a1dc5a70f3f7962e3d33deaad0e092d90919bb93d7048ff1653c70c592a80
MD5 3267d335490fb7dc662f69bf195b1f37
BLAKE2b-256 678142aa74d2de4a216a7e4faefd3dd1be79332d36955fa1a9bebe449c7332f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65cb24f84587fe5efb9b4ebeb78f79709b06d59e5f6d7c08e26478a5ad329c08
MD5 5ca4bb8a71475f72223844c0b08132b7
BLAKE2b-256 2fc05f749b2fca1611958e1d591c0054fc70de449b125cfdb3d5e0003c6173c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af42cd8b67052c27f477547868530a1fe1cfa5e08d6bd245e08909a371383ed5
MD5 25e9a0a2ff5b4494084c464452533b8d
BLAKE2b-256 216f5608606ee55b409522f4fa8ed068a2a8b7139d00e1d2c71e3c850b2c731d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79eac9f29d0062c67fa7f917d3c33bcdca2ef2d8e897c62930ec9c43afcc73bb
MD5 b3908e3a9137faf631c3504f7369052f
BLAKE2b-256 ad90e027e76632a1880bf072d4122bf12d580092b51e4e475ecbebb0e668efc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d2b985d33fae55e0d2c2b51d0a7e1e379de1a8a80d619d51344d4745fdb4bef8
MD5 2fa85dbe25d8f41408b6ce972952bb98
BLAKE2b-256 6de7eab5a9e1e43d1f4d7869240114129d293e1bc5f0c5ae42196eec625e142c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9c2867a39164da2a2a1bf6609a6004802e8f3c92592c69ac610d6ff51e08e959
MD5 57c81dd03cb81b66e9d8cdf0c4d79fbe
BLAKE2b-256 ae492ec50849db7e9711d28c874c121ef708dd07f899088221479db1938bd1b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8d4f97e90d37adf93c551a90b319b13ccc4801d4dfacb7ec807676c9ce8c4221
MD5 9d0cd379815d7e20bac00c62ebd7a772
BLAKE2b-256 e7435dfaa576b4f1989a4726f5f975a3fb121875d9c2d111716263dcc610504e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da178a9a674e341fd431a8cc7c77f01c5f7f4a5d8f8661a77e9e0db255eadc97
MD5 b6ce327d4c51dbe151772eb50190ca33
BLAKE2b-256 5b6077b1f01b4ecb3d22a003525aea20a3599928ae7c494ceade28468b36ec6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1eb2c134b0fc0ddfe8e3c87646d93078ae30b3cc4878a15a103995cd020d33c1
MD5 7087055f9556c97dbb60154e090d2a66
BLAKE2b-256 be28d2bd8562b842230040000e5bd7e160b5a927591500af8b0159d7df5d47bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bc25b95804b320e5ee4e0f0c714fa0a7e3736f846509f4231f239f284c7af20
MD5 23d9e6c74720d1b8d25de6c5deb38237
BLAKE2b-256 1d963ba339ed3af354d15d2630b65afe3db27e0fe023a10084d79a33544040de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5d91134bccfbe48f0c55f4010e5dbdcdc28fab5ee3027e1142400f0b4ec95454
MD5 235321113d5cddce4351d40a8fd635bc
BLAKE2b-256 ad07767c38af9d074a29a6424eaf85db2dd2234db65586e66016547a2c376237

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 91c25e3f7fad8475e0cb0127fd98ad0488501faac6a08b340424bc574e7b0d19
MD5 60f25300a8695207a85ed6814d4c45f1
BLAKE2b-256 26ee2709ebbb5cee37543ca6024b541d45d9ff299e309605cb0a51ed6693909f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 423805aa3c4e3e39426094cc154d5c4ae62ea53f3fa40f997c40dd1ed311c474
MD5 bb0582f59adae51edb0a7dc37f28bb77
BLAKE2b-256 3ea013d21ab965e0fc047e282ae61a397bc899cc5c3cdbfd17089000ec7ffe2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5703882de46ad3faf2d787a26d8b9f6d564db4ebdaca37fbee3f7b41fb8c5f0
MD5 461cee7f8aeab07cc16f9e3c7a2ecab9
BLAKE2b-256 6cfa6e05d956fad465f1cd29f4930898122d27c46ce0c8c4bbe3934e47d59b3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ebdddf39f5a64d664b922634b7e1fca2b421bf2b19a2101cd2bf244442b420b3
MD5 89754c9cfbfb3fe6a41a9d537d3acb10
BLAKE2b-256 f744c3f5011ea5befa48b58292442827df8354610423b13297fa578422a852c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7389cba9f04f211f82a92a7522246539fe9b8b5dd0b40e7e66aa279c7dc406a9
MD5 51811a3259d89719feb0e861be476080
BLAKE2b-256 92742c978e765128163e331108955e0d9314f485c4d5924e5af586f73adacad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1facf267f289831f41c7a3b8a2c706a0762d9e4180b69dd8e5f8bd9b2483568c
MD5 7de26efa630d65c2075d0d74d07f9f15
BLAKE2b-256 858d8aebfebe35f7e25bee85542d1f577f1c2f53797ba033b216a254fb64fdfb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c7c58b5ff88648c596f90772ee5c8806a0066f03e9022f124437c0a7c2883746
MD5 b55e89bd19ba02a47ba02e00b69b4603
BLAKE2b-256 158659b6d74cfdc996e52d6bb89744cac7f039a8209ca2715339218cdf300d12

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c8a803043536298f1a6b3957a5f9c6e94577ed7d00f3696e1e6684009335cbca
MD5 240a70feda8f4586e12af36674a5246f
BLAKE2b-256 e857539da230586f3d755d1df44e0d5e39aacdf8a59a485c13b79ee494dbdd45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e49039ba477979e66a82569312901a815c51c00eddbe69d40527585da8ec05b
MD5 16b5d331028d7bc0e91b62a8043d4498
BLAKE2b-256 95cbedc7b8974a54d39efde06a062c90c058d6ea274f3d6dc6e9ef12ce17744d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c31d439996c961330b93b259217000963f0c09530351006416505ab4c7c4241e
MD5 0f547860abfe8d37508fe5d3eeebc03c
BLAKE2b-256 d40993c95ad5688f9efcd59e3466454a1e6d22dbb94ac9d095f3ea3734a97f1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66538087192d66d949d5ccd77bb930804604df57f2c54aebbb19f69cb472b7ee
MD5 1bfcb7a9d69cf7e073c16002585d07d5
BLAKE2b-256 4596deb089a73b3bbc649563fdea4807cbc8b72a3a36c34736a542b493f5d86e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 90e1b5e791bdbab4b969f80eebd6d6a86c0691a794533333ebbc15bd13e8f5e3
MD5 91ac2e145952a063262cb4801c596869
BLAKE2b-256 447db659ad0dbaeb209c9084e68ee0fa3432c78e6973d9772fdbdbbf9955fa12

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 140bc1aa1c23400f02ace3f60e46d47a990cc79d24cf3cf3c2adce90e9e1e235
MD5 55c39a842cdb92b8afd2823a954f80a3
BLAKE2b-256 82ceacd49954ce61a259b6618c136672ea5c3d6e9e1162bdd63cdbcf42a194a4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f815918676e13960c8a79618d5e9c75cdbf9e243539aabc77c4eec1080b95133
MD5 80d50d0d36bce7f580ffddbbda553a4b
BLAKE2b-256 73916c697384f9a75e6c06bbb28b704258184f7c51069cf9dc25d5648c942d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c20204ebb35bed3e42894e759f0051ef59ddada06da3ae0ad6638401cbf671c
MD5 d7013aff37f7fdd983ab8f4fbc8fe6b4
BLAKE2b-256 f59dd38ca7ea7be9b906f3bc1c2ece6b2766332df471af4fe97ce00f5c02db64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efce96b66253f2c8658ec345b28db8c8a29284d450e144c3d717be633ec55340
MD5 867c30fd08ac4d800b25ec09040376c9
BLAKE2b-256 a1f7eb9c7039c05342c3ea2efa69d273840b144c4eb65449366f60de7d40ef2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffe734724ed39ea003a33f6f2f0cbf3ef73f11f7131fc4716b8d5bf2a6ce7134
MD5 7e05ff092b0f1fb01172f3c761b27264
BLAKE2b-256 aae1d40cfd29f7e479109490b47604a1301237dbf2d7b92abaf4a3eb3ad6af55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f03eae1b091e70658961b59d0cc17330d7800eaa3fc07cb479f572f7c0926821
MD5 f54c44bdd18dd1af9640a70af6b67c0c
BLAKE2b-256 891dcff6ac21e1f6aaa73026f6171e723bf8ce2f95883274b4e08690d77653ea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c15bc888b664f4cbf06a419ff5146a3978ac4016d2e88c8e2c8170a21718c1e7
MD5 de35bc46111fa70f8b0da9246a5f6c6c
BLAKE2b-256 b0fa720a8bb299f7736f0a1c9a5091af8abe3d24023adde3a60369ff3313efc5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 10349ffee962e8d83d95adaf17128a425f17496d7d21c442e8c8950a3a7e5f08
MD5 9114c88653de024ddc22f20ddc752281
BLAKE2b-256 5053889ea89b7b70cd0f7f7a954fb07c9e294077c58f95bb7da600ad0b197c0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e070fe803a97082e3df3831df415d476a3ab2ee6a490c33d45de22e86bc88c1
MD5 41cfb28ae150609e2f55dac414b951d7
BLAKE2b-256 99fe92df8f8242238dd0c9a85b3d56d67b2c94aefb10f4a3bd546b2d9e01ec69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca429ecd47f9c038a861d171ff3f3968740e8930018704d22629013d8e73ab57
MD5 fbc4795a45935c6d6461b97001b59277
BLAKE2b-256 21b718c6fbb0cb838cd3e30396e737451b36f5e03b82765c46007237898a9656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64164e7a2395c8f4c83c10bcbc277bc5e51b379ff22e23d386ac11f7b6530c04
MD5 a031392f7d746d09036b65f4cfae4744
BLAKE2b-256 030b0a585213270d5e82af8bfce4fdf350b3c283bc3613a60eeb30159c6def7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 536784157f0bf742f949733b770eeed2bf99d2731719953058bf197a71e1514e
MD5 8f6b96d91e901199829b111deb922fbd
BLAKE2b-256 ca66d5ea19bc9c745387b1366c77952a6c4ffcd8e624cb605a1b59de1af9cb1a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b79677780f442c1a4d555b19d894040abce5d5dc27a2420677c6f7809867cb15
MD5 c0a95fcb01e379e4352444c4db1e6a46
BLAKE2b-256 6ac540ededb00b4e62afe265feb09a010e1f89c2ab46ff793dcd80369bf805ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.13.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.1 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 pyodps-0.13.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 733d19e9229f059aef91084d04b67be12ad8574b86e59a234bac6481f73f8686
MD5 68ad6a908f987015fc0f3560b74f9ed7
BLAKE2b-256 713d0b96099f0e329291692a19ba0ea63a7cca66f3d7b22464400cd0973d6007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d387e3b58809ccaa9f7fdf8d10c89984cfaae411868ea32732075963c5d61c85
MD5 c1a662474685276d3917e54ecb58783e
BLAKE2b-256 686f81ddd6fc852a5a52353de5a06b3e635c7b9684ee27ad8cdf23498cc8ab59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31854ba28fc47c15dd7245136b6a1794a6129c7094e63e9d3e9802351303a123
MD5 75ae1789af7ca8433b0e5df44c012c9b
BLAKE2b-256 d528bd6bbfbddbf688b2e4ae8fa47f961431ef51e2113798a2e8d2a775cc3ddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4755fb0a4f545dbcdc2f9ab6df899c1078ddb803b218169f7198425fc2771eb1
MD5 bff5f2a5cd5ea9f2aabd38cf59fc6ed4
BLAKE2b-256 ac98328a804da84cfdd2f09f218bbde731e3832cc63ed282f07202b49a510ac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb32981e03d834c138c33ee3c064adbc8340556799ec113786042e454b317d5e
MD5 b28527ca7577c0a38031a5ffd01fad14
BLAKE2b-256 0b0888216274f9853d6838f03a199b65ca5f044f608f917ad0133d25687a9434

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 afeb82003f24937264ec940e65e71ea5d671a301ae422e0d6e56559e3d90e148
MD5 b6fa61e7a4c10e0d4847f922b782db30
BLAKE2b-256 12d7bb528f7ad7c994dcf68b9bd4e5eee43fd405dba62662dd51f62b3c92ffeb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.13.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.1 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 pyodps-0.13.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 43e756ab34155b86bc567e044bbadc571c2afea189092852fe6a562fb5a14a7d
MD5 c8e73d503f03c0aaca540cb023d3e93a
BLAKE2b-256 96cf613110ed87c8fac2abd38292b9607977da919757bee422b1fdeef242ce97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1fee8038b353e2a729a837611bb44a1e58bd8fd5b12bc13ae25e07b7c8df350
MD5 8dd0c0c054cd5bdca08326fc5e7323c2
BLAKE2b-256 315550b3e22c146270ab1d4c9d16d3c09d03a7cb066ebad3f3eb536b3e9aca22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccee75db9ceb7ef8445adf51b1c1a04dce597d9bd00eedfefe1856904706a6f8
MD5 97f5ef90a4962509f2b226d2d47ea743
BLAKE2b-256 c79e1331c5e7f03892ad7c5709a80f613cbe53b5a2ab5ed2eeede0a444932040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44f52a9f013333fb5a339b40185d9502d28bd4806a6f7953672019ad3f622e2a
MD5 7671edb018dd4b34e26eb54a83c51677
BLAKE2b-256 3e49a296bc3437a4774ec2ae6185b5bcae53b0daf86051df89f84a56eb4b351c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a5ce4d3bf7ed8e3abeb17bfacd73f6286416fa31603daaa1fd2c69921c67d29
MD5 dcf69f1fdc4a2339ea00cd7bb7025198
BLAKE2b-256 3c7c6b06a20b8c228161d0b70e3001a3eace2acaec0f81355a1330f7fde1f922

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.13.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bb4400f542604478380d584139e649543ff99fdbec865331ac91bdb37bab555d
MD5 53792898d18dd0ac22219eaef04229d8
BLAKE2b-256 822ab99f73b9983ac8456e0423e1b692d5d76fa3b38811eb95288658bda79dd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.13.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.1 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 pyodps-0.13.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 35650390d02e83dcf91b95737f8326a4ac5ce4c667f7abee6e1bb7aa2b2078c6
MD5 e36d927b5a36e9529520b440cb1f18b3
BLAKE2b-256 afc4f85d53e02044d2ee16355be5e1f4f62a6ea2a5491bfcd2d2100e8dbfc9ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e74387c8b2a031e6a7301c8627d247cb8d64567f598bd0b1a023a70cb0425b1
MD5 9bf71d71df1ada65d40bf4ae76999c19
BLAKE2b-256 1e1159260354e38d5e18ca0f28768c404ab959c8dc3fa1ce5d8c33d456f497d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8183f747f4cc3755815484dae3e7f8f5ef4e7ea756b1d7151bba0ac1edf0281f
MD5 3f33dbda3ee80658e217bb7e59902227
BLAKE2b-256 500ad0fb40f368970136bfe13674e36b3481062c7b8919be1ebd944b81c23aaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.13.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 affd5711f61ab34a54d1867184310ea6aea4f6f30ae55fdedbb20fbb6e99eceb
MD5 376c8be960bbcf338165e7799e8528df
BLAKE2b-256 c658f0717fcfee23b308e7ee0bbe4e82989636399b45d623cc4473fe918ce41d

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.13.1 This release

54 files

0.13.0

54 files

0.12.6.1

57 files

0.12.6

57 files

0.12.5.1

45 files

0.12.5

45 files

0.12.4.1

45 files

0.12.4

45 files

0.12.3

45 files

0.12.2.2

45 files

0.12.2.1

45 files

0.12.2

45 files

0.12.1.1

45 files

0.12.1

45 files

0.12.0

45 files

0.11.6.5

45 files

0.11.6.4

45 files

0.11.6.3

45 files

0.11.6.2

46 files

0.11.6.1

45 files

0.11.6

44 files

0.11.5.post0

39 files

0.11.5

39 files

0.11.4.1

33 files

0.11.4.post0

33 files

0.11.4

33 files

0.11.3.1

33 files

0.11.3

33 files

0.11.2.4

33 files

0.11.2.3

33 files

0.11.2.2

33 files

0.11.2.1

33 files

0.11.2

33 files

0.11.1

33 files

0.11.0

33 files

0.10.7.1

17 files

0.10.7

23 files

0.10.6

17 files

0.10.5

17 files

0.10.4

17 files

0.10.3

17 files

0.10.2

17 files

0.10.1.1

15 files

0.10.1

21 files

0.10.0

22 files

0.9.5

22 files

0.9.3.2

22 files

0.9.3.1

22 files

0.9.3

22 files

0.9.1

22 files

0.9.0.1

22 files

0.8.6

15 files

0.8.5.1

24 files

0.8.5

22 files

0.8.4

22 files

0.8.3

23 files

0.8.2

23 files

0.8.1

23 files

0.8.0

23 files

0.7.20.1

23 files

0.7.20

23 files

0.7.19

23 files

0.7.18

23 files

0.7.17

18 files

0.7.16

18 files

0.7.15

18 files

0.7.14

18 files

0.7.13

18 files

0.7.12.1

18 files

0.7.12

18 files

0.7.11

18 files

0.7.10

18 files

0.7.9

18 files

0.7.8

18 files

0.7.7.2

18 files

0.7.7

18 files

0.7.6

1 file

0.7.5.1

1 file

0.7.5

1 file

0.7.4

1 file

0.7.3

1 file

0.7.2

1 file

0.7.1

1 file

0.7.0

1 file

0.6.10

7 files

0.6.9

7 files

0.6.8

1 file

0.6.7

1 file

0.6.6

1 file

0.6.5

1 file

0.6.4

1 file

0.6.3

1 file

0.6.2

1 file

0.6.1

1 file

0.6.0

1 file

0.5.9

3 files

0.5.8

1 file

0.5.7

1 file

0.5.6

1 file

0.5.5

1 file

0.5.4

1 file

0.5.3

1 file

0.5.2

1 file

0.5.1

1 file

0.5.0

1 file

0.4.8

1 file

0.4.7

1 file

0.4.6

1 file

0.4.5

1 file

0.4.4

1 file

0.4.3

1 file

0.4.2

1 file

0.4.1

1 file

0.4.0

1 file

0.3.12

1 file

0.3.11

1 file

0.3.10

1 file

0.3.9

1 file

0.3.8

1 file

0.3.7

1 file

0.3.6

1 file

0.3.5

1 file

0.3.4

1 file

0.3.3

1 file

0.3.2

1 file

0.3.1

1 file

0.3.0

1 file

0.2.10

1 file

0.2.9

1 file

0.2.8

1 file

0.2.7

1 file

0.2.6

1 file

0.2.5

1 file

0.2.4

1 file

0.2.3

1 file

0.2.2

1 file

0.2.1

1 file

0.2.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page