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 (>=2.7), including Python 3+, pypy, Python 3.7 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(object):
    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 -r requirements.txt -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.12.6.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.12.6.1-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pyodps-0.12.6.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

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

pyodps-0.12.6.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.5 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pyodps-0.12.6.1-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.12.6.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.5 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pyodps-0.12.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyodps-0.12.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pyodps-0.12.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyodps-0.12.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pyodps-0.12.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyodps-0.12.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pyodps-0.12.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyodps-0.12.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

pyodps-0.12.6.1-cp38-cp38-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pyodps-0.12.6.1-cp38-cp38-manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.8

pyodps-0.12.6.1-cp38-cp38-manylinux1_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

pyodps-0.12.6.1-cp37-cp37m-manylinux2014_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.7m

pyodps-0.12.6.1-cp37-cp37m-manylinux1_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pyodps-0.12.6.1-cp36-cp36m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.6mWindows x86-64

pyodps-0.12.6.1-cp36-cp36m-win32.whl (2.0 MB view details)

Uploaded CPython 3.6mWindows x86

pyodps-0.12.6.1-cp36-cp36m-manylinux1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.6m

pyodps-0.12.6.1-cp36-cp36m-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

pyodps-0.12.6.1-cp35-cp35m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.5mWindows x86-64

pyodps-0.12.6.1-cp35-cp35m-win32.whl (2.0 MB view details)

Uploaded CPython 3.5mWindows x86

pyodps-0.12.6.1-cp35-cp35m-manylinux1_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.5m

pyodps-0.12.6.1-cp27-cp27mu-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 2.7mu

pyodps-0.12.6.1-cp27-cp27m-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 2.7m

pyodps-0.12.6.1-cp27-cp27m-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyodps-0.12.6.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.12.6.1.tar.gz
Algorithm Hash digest
SHA256 f05745c2b8b12d52069c16ab9206e907b4902e1a1404c4f3d1bd60fc8748c31b
MD5 a12b4955e5ee953f0702c9e39bb282a5
BLAKE2b-256 f9b00436cef395f2ecd539e18877c5c5a7b6525841e09b46ea8d1d768b773993

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.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.12.6.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a621c37afa3e986c53688a48ba87638d11432329d70f50cc4ddeeb07f7432ae5
MD5 1fae1083a5bc9ea735949e3a14c5af0f
BLAKE2b-256 2b74161b097c10689bf7d729c3817f3337c052512767f611f65695268ad686ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.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.12.6.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 95c43d29dbaec5185dd5450f3053fd51d3001b1585576b37c0caf49add97d7c7
MD5 b5b0cee303fc60787d508a0aceb3d666
BLAKE2b-256 89d83decc4f51ea0258133f5fbe7430876f928cd09c835b458b48d0d61a97ac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a45655f582bda76719d8a11c160640635139bb698d987b072f3dfcc652c88d08
MD5 1a09be6aa46659b566db3183c2e259cb
BLAKE2b-256 c1775b423e44c401fb5926c0166e6ee2bab0609b90f9bb814e089ea3ae3e4a09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc2fbbb3c269221496d17a20c329572ee255204a82431471bfb32d4bcad19f2d
MD5 f19c527762315fb4cc33e496b82dd7bd
BLAKE2b-256 cd1d8b97ffe22a1f681eef102a20fe41063c23da6d86a824ee6f4fadfdffd5c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cbb1e363e715c209cbc8e554d5b4e39fd94440f0ffc74bfbf437fe99af38a0e
MD5 5b51316b7a642e47544af9929b81c6ab
BLAKE2b-256 46e481263d5a592c404d257900ce4c7562f9cded7b06926a2a158da13149d75f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7546c845ccc13bc20a32abbf68af359027d80ccf6d3a4e0d64d68ac9b7400b01
MD5 780915b7e7828aeee1f364a2d04a5f4f
BLAKE2b-256 fa895d03bc138e5faa47bd013e883d2d789b17a7010c81a717393e38aa1e52ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.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.12.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 27351a34a298490ecb6cf5ee9dedb492142392b27b674eab1562f9b760688d27
MD5 d5725785c379228f24cdc3706285a73c
BLAKE2b-256 888e1ae87972148787e58caa73e821ea3d5042392b5f045bf7a6c4837594480d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.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.12.6.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 880cda4f64f895c80944d595e5cc0929fab3176db953487d60955bcd91327542
MD5 d8e21e20728d4c46be14df97d674b1a7
BLAKE2b-256 0b8a9d726f5cbc955bf437da483e0ae16ffc435a798ad988eed1d76990eb0335

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3866e23d94d83c4bf96fc16f49fec2a3c60ab0bd6d844530cb3b579402f30af1
MD5 622151bab19dcb8cbc01a9530ab4f72e
BLAKE2b-256 cb0776c0f60d5bc78f978ff11f428604afd46f85bdf5ee57e66053b435dad847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f248aa4abd685de1669c15a17fecd83c9457f48bb061ad8ebc52f882dd9b033f
MD5 f2213f3c245c1bab3e46fe7ce605c215
BLAKE2b-256 5d386e736051fb44a6654c712f53b61ae2e6a52e61d82fc093400a8518c82e13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a08d800b008e6729ad09063b840a75746fecc52e2cc6f3fac9d64f5f8e1a31d2
MD5 33bc3aa3b4f8651f45975e6f2fbdb42d
BLAKE2b-256 cbb89b85dbe13c7659052eb10c9a1e32f26398d81f327ddb6d60d38fccb2cb44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e91496fd692b040ebce2241e2db72c740cd618265a3eac82539ba8502c00ecc7
MD5 29f540dd824499592d0e4c3dd0a40989
BLAKE2b-256 7b75042bf3963f74f3d3cf641ec6387837c09a67743428af95f9ab4752454b1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.1-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/7.0.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.12.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 47cc41062fefa0e34783b0d921418e0291fd4e1b537ebc985db82add57f9184a
MD5 ef2b05c70a855454e725606aa353e53d
BLAKE2b-256 3fe275f60cd559640ce4f6cba3a719a51d5e8e959dd23250fa59f2b4249c8342

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.0 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.12.6.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7efe50ae643acd23e817d7e7f38862e804cb6f364d2f31c1f0397b51560ccf3c
MD5 5e903280bf5eb5531258c9aae03b6993
BLAKE2b-256 789ab746419e6f8d2f1759d1953c8bb898ecc4d7e46267620d4e45c98ed17dd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01d07599bf36f12fdff57d755539d32e9fac0787b4ba832093202a744489278e
MD5 36dbf4a7f1b769b9e58db1e6c1b5dc70
BLAKE2b-256 a4cbb8f594d2fbcd45d3716ff412dc20a330f9d9305e8b4aecef4d6d5a22d40b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2061b63e2b809a4465d3270d16ffddacca41a2940daa507372a00fbc19ce0fb0
MD5 495d9aef18c51b4ab1bad920dda02d45
BLAKE2b-256 c94975d6e72084499aa3eb26d839e306109e4d3c38bc6500b64a11491fb242bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82a083e2b1e5d036fa7e7867c0535a0ba45aa9f539800666eda34605ee12303f
MD5 d339602e27a927541b47ddc103971bcb
BLAKE2b-256 2b5264476da36732a89e9b196549893a08c2d0c9441899c95673a388cdab61b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0931767bcc461bacceaf933dc6d8d84bd3c5ee7a323d77ddd482c137ff5f7ab
MD5 1c7be30473d21fcf654d69dee8ca4ce6
BLAKE2b-256 b293916779d172eb7ad6e39f428b0dee97b893562a0bf67c9c5f164481de1a6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.1-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/7.0.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.12.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 420a2626c2d021250c47939f632a8d83199294f494e6990714ad98f65816d7c0
MD5 1c1b01792c824e7853cd7d0b201485aa
BLAKE2b-256 f6dd5f9a01a8387042c8d3f3ddc0841e0ebef74c1f566953a8e6a755305accb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.0 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.12.6.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5abaf000800c4a0235aa082123f6ce92442830b359194dc62858db77de7974d5
MD5 2fed34bee09620c060ae52ee57602536
BLAKE2b-256 51a12f8e636da6a765fcb07ccc8d517340f703905127e58c4ff0b496e795e954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afcc6074b20251935c0f89edc7eee2129b26d050081aa12a287885704c2367ef
MD5 51c714cb65815932e28d464e769d9d1e
BLAKE2b-256 95e5074298f3941af0877285ac5710931d4f7f67f46e1dc360236a6c0b63f7e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab7f75d36a8f4319efc557d619a89dca86c0461f20c96b1367dace82a03ac545
MD5 b9363c79523a6dfcf7ac15da09175ace
BLAKE2b-256 c7b2ef93c2439905488cb4cda68a6e82dadb41f29ea8d64f1535581b14d60fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d12b37f826b10b2d43a0bbc334f9d38f82266d4631db2bc1a34368fc188f04df
MD5 57b39294f3d69e8d7f47bd6fe94b7b6f
BLAKE2b-256 8a135d38c6bcb53bee153da0a165fd7b081e9d48f2e2fa961a7290c159263ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c9b2463f8e173ce4745fe3cc1912176d0961d5dc536fe6cf17b73995735dc3b
MD5 7ba77fc219f5ca314b14bb6737eb5086
BLAKE2b-256 28f0e766960b5c2ef20ed71c7b28737d1f81c9de2dfef1ba1c11ee1bc67f2f78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.1-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/7.0.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.12.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0ae151f7a4279c21913e5513fd44829bbcf0bb41fca33799f7a25ccabbd1caa2
MD5 93c8ed3d4000638f9988c9f974795000
BLAKE2b-256 5b24e576b50b4b8f2022339a8a5951068e7e20ca831bfa4c18756a17b12cc4b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.0 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.12.6.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 60fe5d78caa2559bf27c74f7a8c8f82f86d193a0c3b4115b16172cefffaa0e33
MD5 d3c9ce5a72022e36668363db58e4c5be
BLAKE2b-256 2d3b4fab78754e860b600ae8bfd7051eb4faaefd38ce6e992c8dbe56e24c782d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55285096da5b8f1ef2894fe40ee9555569f777b6508c3cb8b2dd51ad805645bf
MD5 747b179626c369745ed8cff142104626
BLAKE2b-256 4bbf48156efc765dd8372b622eefd11a879cfb8e8ba2b27acfa3cd1046c89ca8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 195a7aa0e6184ee4455a108bc1ae83bfc8443c093139a176c270acbc38dda880
MD5 8befce273fbf6bfe00c9b91e60bf3eb2
BLAKE2b-256 432a0af02ba32bbe6aec334af2ddcf54244efcf31c8f8a498a170d514df134fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3923b08f1d9df5cd1186a6b82d33b891d81aea22872edb05d30a415421208f0d
MD5 70e9a50f426e5fb1fef6861de07927e5
BLAKE2b-256 4de02c4afbfa3931cccd873187c31a7d769d0732fb8f972939b8878e0843e0e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 819f0af25d3e2376b51c537d21f9459fa32e2eede08a4834acec98468019654e
MD5 9f1d2039bb6cb8ec49d3cb6ebb3e885d
BLAKE2b-256 02f7dd9bd43e89272a7b4661c0e2fa4ec25e0f8fe6d50286595a929563ae537a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.1-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/7.0.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.12.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f27ddfa0ba26f359fbaaab507be195a7f5c329b7fe65aba662a5550bc5884262
MD5 4c2620b9be62bb3b762e11187943e879
BLAKE2b-256 c46207a48e7784d016511b01ea48be9fdcd42eaab1512d86da12c96680b1e5a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.0 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.12.6.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c7da88c3730c28963bc3a1746514fca1106e7298ac313fbcbb786a483bc83153
MD5 2226284793b33e6210553cde819d3de9
BLAKE2b-256 efd3435217f08c2edb3726073c804568749056b4444a9e4b6d1ef3c0f9c36aaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fddf87aa5f1dedebd41a620f9941966f70dd6a436079a8161a6e7a97d4611c48
MD5 e3c258ffb8471ca3d5cdc7dd7a547c1b
BLAKE2b-256 00ddb2f8296d083fb52f36121d9e11a01e65bc6b8ea62118ffee618cfcd75300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe7c06e87431db9bde5f69c9ae890276e67fd37cf210d1a08329460d8fdbbec4
MD5 85d61024e9fd5f5c37dbbfda56d29777
BLAKE2b-256 ffdcbd984ccec9b1ced7de1d63d7baf623b69c30bcb53647ee41324fd523f9ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca19cf1a1fe8d6c0a97e5f23e3b8e4719e80cb359c8469ec1b96b9cc9c77371e
MD5 06948e31d664c682c75a9763bf9c3a80
BLAKE2b-256 7f6cd9207819afe518b04abb8c5020bab021319add0510a1a2f302c5de3b8cad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a01918ba66fb977c1ebf06d8421b3d4edc11b4bd165674235786076d48f1ae25
MD5 9eb154cd318d4e9e5fdf78dd4f67af72
BLAKE2b-256 b059c085763e5e0b34411b5450156a2a480c92bff8166ecdd96655850aede863

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.3 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.12.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a65520b9a1d7a90dcc3d3cdc8a57fd960b2a5cf24eaba6a734e486e90215c125
MD5 83a22f481322e864b2a2816b2f623067
BLAKE2b-256 ffb820e0b607b4e5f9a429f9fffebd3ca51a7e133b656967e0329aa7d88e0dcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.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.12.6.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9e7ccb158cf90927c372547aac5f22256f5a7dababdd1f8a4b52a880188cb57e
MD5 e85b875c22910e95edd91d72d3569bd1
BLAKE2b-256 a253b5e9030924db436a4d168b93442c865db47cb64f12dcb8998c5c6510a6ff

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 122686a3421dc49761d7f6d87bacb711b49dce81d44320c922c248be9193b617
MD5 a8d78b56214ea0922a6577688fa7f81e
BLAKE2b-256 4744cc0bfbdec1cdb2b12ed9d78f5562992658cb34629f4658e694be7e716cd3

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 50f1c3d943fce511301e2186c380c80af30b9fc2d1f00b6d071e1adc37392f0e
MD5 77104b84c1a073d7c5255c12a568d034
BLAKE2b-256 99710aeafb5998894d09403b3c6547c5e9318e7a0144daaa622d7037c41e8913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3a289ea5b49eb4ee782355ddd45f2a55fe5f865ccbe382f52da1aca3e0d6747
MD5 26278cb1551dc8b8cbab8908a931d33b
BLAKE2b-256 1bbaf0e70abee104fde48d3d3358d8445c2a114704566e6f3d41f7f420fa820f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.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.12.6.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e1f131d8fd0ba3d7088828b7567e64ebcb113baca01ffb6af8aa8121cb6b9ff0
MD5 de806b3cd643668ae36c06781157644f
BLAKE2b-256 e650122d3954cf4cba9d8574d87d16aac5ab1ae6307fab8cdd3087e06e2d0f93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6.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.12.6.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c722a47604e7b24d76ea70875f10b047876457857cfd1cdefa81ec5b24486dab
MD5 4b0527c451d9497542662a82545458e0
BLAKE2b-256 37867c23f89338569bd9e24c7de4e9a9cf6179c5d492d102e4dfb8b64f0043df

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 592ff469b558bd09f6d13e2d8c9f42109b46f1d9504d9f1f95ff4ca0f0848de3
MD5 c77e8e1b5a7f493607040e5b93eb2cfa
BLAKE2b-256 26873d7e1aafc874d93c0ffeeccce29c193dc32ce308017a786f659ac312a3c5

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 13ee83532646be6ff08149d675c95f4e5465d1f9611b62b934903999a6a0a0c4
MD5 0d304c86fb839b4f684f3229846538d0
BLAKE2b-256 07224206741e8c55900678faf21f25cb0eeb0afc5ba46e6e94c03946e3e60426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9005729413ba5552917b0adaf3a788278bad82cf8e5eb177a1f9ff459a36ddeb
MD5 1e20cde591ea20c62d6d1235f9e49b1c
BLAKE2b-256 4b81b43350aaebb5440d0c20f6126a5cb8e5de3c0a0be0e3527e5b6b9f8482a3

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp36-cp36m-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyodps-0.12.6.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0f8023f7db6ede739db1e246cc0b377b91da65fcdc75af0046d82b70187b1d52
MD5 d8c1eb92043cebde0f33bf3c903bbd3c
BLAKE2b-256 667dffc8962572d77e16a84374cf377b72dc446d87ed8b70b01db58973dc060a

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyodps-0.12.6.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.12.6.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1b07ff4ad6d89a60caf4b6aac3e56d21dac1753a7cd9672725e17d912418580a
MD5 7651f0d11fffc1832e180e94b31d0e26
BLAKE2b-256 afd053b487a86ab4c1c861c10bc52f03a8f1356f62a1406a6ed975aef4ed59bc

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e1b413ce25faf63ed5eaf1ca2ba8f684c29562ca76d82bdf4ad1c77d50303ec5
MD5 9dfdfbed8646fb3caab3a5e8468b6a47
BLAKE2b-256 11e66ba98e35bbd5b3cdb29ace2de70ced7637b1e3811dd8cf79e5a920f98f3c

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f849c171ef056fc3d38d5e371eaf33e560af4183cc09f024b3cb763cbf2bc6f8
MD5 f53e84426d2637c449480923c7abba36
BLAKE2b-256 7ecc08bfad7b3ec1a6d7d0222258ba1b8ce9790f9166bdde3938ba0e31661907

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp35-cp35m-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyodps-0.12.6.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 062671da0308a0dfec048f19b70182f916d8384379f1fd4dc8cd126b143be5d3
MD5 0721372bb9338f66cb5da29ee6c3866f
BLAKE2b-256 694082734645519c5bf5c9e3406caab02ca6b99faf7cbff34cc918bc8d5e9209

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pyodps-0.12.6.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.10

File hashes

Hashes for pyodps-0.12.6.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 8492cf4af9add5912751d656bf0b98304aa9e29584565b08f5b21b857dc2c1a9
MD5 29fd5be96906d3637d2d047968ee9e5a
BLAKE2b-256 c2257e74958f406fa6f5034ab19b3cf1c15f7b9db24e2a6efc8fb46becdd70f1

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1f89a77e55b4211fc0b5e0a93042d643cb3a802dc11c126a5e52523409db29b5
MD5 2ecbdd8a34716e0823f746fcf4d53627
BLAKE2b-256 0fd30c816aba8d4dd3cd8df5149693e0a4c5c4b4c4602223d189f6fa32213d9e

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bebca404055965649c60867ac9255871962c69118641177488e02067fc1f08a2
MD5 44337fb10567b4035dc3d69cb3083764
BLAKE2b-256 b29e7d985765f563b6ccbc1077f002ce6619c028d8e8758cdc8becd77e16c405

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f83e39ffe50e87e24c8863a36e4c5eadf17714acb88ae29042e5820ec3284580
MD5 db013341391d6f36f50349611385a27d
BLAKE2b-256 6c1444ce5cd75668d08b60a44f4076ee816399169632a72a110cf8a9d8ea5afb

See more details on using hashes here.

File details

Details for the file pyodps-0.12.6.1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodps-0.12.6.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1a9ed036ea737aa11a6831a505391cd6acb8a95d4c0dce367d15ec745c6413c6
MD5 3e7689802bf9064c9a1d12da8ea0ea13
BLAKE2b-256 9f2ecd91f2246a369f538204a9b87c5a6f0f0019c60d6285d39e27c9c3367a13

See more details on using hashes here.

Release history Release notifications | RSS feed

0.13.1

54 files

0.13.0

54 files

This release

0.12.6.1 This release

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