Skip to main content

ODPS Python SDK and data analysis framework

Project description

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

Project details


Release history Release notifications | RSS feed

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.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-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pyodps-0.12.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.5 MB view details)

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

pyodps-0.12.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pyodps-0.12.6-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-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pyodps-0.12.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.5 MB view details)

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

pyodps-0.12.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pyodps-0.12.6-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-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pyodps-0.12.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyodps-0.12.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pyodps-0.12.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyodps-0.12.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pyodps-0.12.6-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-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pyodps-0.12.6-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-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pyodps-0.12.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyodps-0.12.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pyodps-0.12.6-cp38-cp38-manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.8

pyodps-0.12.6-cp38-cp38-manylinux1_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8

pyodps-0.12.6-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-cp37-cp37m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

pyodps-0.12.6-cp37-cp37m-manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pyodps-0.12.6-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-cp36-cp36m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6m

pyodps-0.12.6-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-cp35-cp35m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5m

pyodps-0.12.6-cp27-cp27mu-manylinux1_x86_64.whl (4.3 MB view details)

Uploaded CPython 2.7mu

pyodps-0.12.6-cp27-cp27m-manylinux1_x86_64.whl (4.3 MB view details)

Uploaded CPython 2.7m

pyodps-0.12.6-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.tar.gz.

File metadata

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

File hashes

Hashes for pyodps-0.12.6.tar.gz
Algorithm Hash digest
SHA256 76e4f12adb05c90f0858e14a1dbb326c79fa190e6e3f948a2fb256aee98391b6
MD5 98d903499021d7a864852b9d323f6e9b
BLAKE2b-256 29af356236095959ce28fd17e7987dc76d99396b27c63c5114bdb868863606cf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c25367feeca78bde00f7ce0f3a9754ebb5bb89d4a8b3f1770eecd201b9dde8a4
MD5 99b1b2199be775eb44889677169c6ec4
BLAKE2b-256 c7014faefd007d5af1a12ad9fa7eb0d204b12729bc632b47e5208b57824a4331

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.0 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.12.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c6d36ec46b02f5fd4e51dd6c439d3e44b6ed7d1902eec97b00b86db50ea89a70
MD5 ee8edb0d6f4b87167a772cbc47b18239
BLAKE2b-256 512f6e35505a6acf186c8e56506b52ce2a31fc205052b81c08e44b3d0013bccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2deafce399b2e2892ba47ff1bb66016900710cefcc33d373f0664560aa1511a
MD5 de440294647dd92941abbb47dd0c7a15
BLAKE2b-256 3e9712cba47d971d60c4d7f10bd90feb36ee81cbdebbb3b169e1db793629de99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 361e812d40b51503053bfc6567845ca2156a1466db714a2bd64d04de97031d3d
MD5 61c5203a78209c3f1666a0ce4a0058c0
BLAKE2b-256 0d215e4da8f365c6a1ef7a7f1f3dc20a383b7e4a3e66a03af3140b5ed00a0846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87199eed3f7642d3ec1692eda7cb7593df7a1e4c4d15353dae620520a9f07336
MD5 4ab8fc6927f4dd726bd92e57788c13e3
BLAKE2b-256 cf2e8c5012713e007d6d98705d34813ffba020809c144d0dd66da755d08098ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f6e1f91a7fe9fb12fbd07bf8f9b3cee7921c9574875600e8ddf581c3b850fbcf
MD5 4c372f572ae86e13a07f4794661567f1
BLAKE2b-256 7f20a6d57dece767a09b8c596d2e9ddf28ec2076d22e1bbaa22554932b19d0c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 96dee3b99ebbd6c9db60726dbb3ee5bebc643100924cc3b19bcc06dfee2add90
MD5 308ffda859e2ae23a61180a524961465
BLAKE2b-256 15d0e6b170ae81b714be4d9011c278c5e6e48d0e81c3754fcf73e6cbef4ec9f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.0 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.12.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d10b93a5860430ebdfa320af04eabe6704cec7bfbac6128ddd2e9fc9b7b39caa
MD5 93587d086c22b6544b77479ca9cee905
BLAKE2b-256 c92a3908318a967d1655a20239c8c6cb6d98b802481c23158c5305b2a6c698bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37cbdd9e5f6f2008802268f778fb6de584504201fc5ccdda24055a1f83ecec85
MD5 6f2f71183b422727005317b58e05297c
BLAKE2b-256 28d90eeee2abc8bb950a6143df73e42645969037ba059ae94d65f521c05d57ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06c6fb8eff16e0096876833dfd119afb8cf5612958b75d2d7c24239c50a7d9dc
MD5 63998932be1b5ed794ee715ca5ed38da
BLAKE2b-256 7513fdcdae0bbdfcc864a7e0083fe5e45b2c4b5328f6d4907e81b08b85265c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ee3d31a1db964402fe74af20bd9b4538be8cf5c7d859825472e57e9e83e73bf
MD5 718126847f1dd670baec058be917e693
BLAKE2b-256 bfbf3f82cae9c63815ca20d3e6bdd607b573d47de16ee02cd202a28984f64fa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b322cacfb1244d4cb450c7b25215c65817461da01505b8fef76d75a59345bf69
MD5 47f27645590b4fda9766d3ec46e721ac
BLAKE2b-256 2d637cdfdf4b76035aa65b96134bfc5ca515b416b82640b45d7a87adb8f96f1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6-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.12.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ce32e16fb52f0fbea6d9fa81d1c70369de44e779c2183a8c817cc82d22785c95
MD5 e0a3a90ba52c00fe64d0962eadeaf459
BLAKE2b-256 d2b69cc242069cdc7f36ced285d1027feb370901c8a6bc93550e926ce6dbbc4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6-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.12.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d3edbde87ec8814dac7d09ebd2f9e94f2142ba65d3003775801181b02a2408fe
MD5 f5323decda5ff08232a8f0cefaf0c948
BLAKE2b-256 8b9eb41cc29da5ad2085a7b36a7c1706014df04a4c619cdc75cb5402536ea2c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78054dab648f6f9923061db108d82e9383440961a5983bcaafe9f3515d05db31
MD5 2aa1fd703a21c5585e34640dd4dce0b1
BLAKE2b-256 39048b377f56261e2d2448fce4bd4a12c37d93a6323f38b010003118951c0a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71b99ee0d6e03dbb07e0a9cad4dfe21064f310ee6e27331a050d0f6d10d0cceb
MD5 e68b26b38a1dc428c8ee1335de6b12e1
BLAKE2b-256 29b6e5fb89640284fdf4cb692dea8d1fe04b015ef20d624e8c95aa9c16db8349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08796112b8d94621e4cc86134f72c1ba9257fcc2261b0153afdd387a28125360
MD5 4493995c457361075f5b8481f93ca6f7
BLAKE2b-256 0211a77e302b88c44759f53937c50b7636df4fc5eef15ede50587a241fa1883e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d6c877769955e15c952b7fc42ec9d47be803be8859063c068f0c087ecd93ab3
MD5 58ebf891b0171fee340ca7182e1164e1
BLAKE2b-256 2926837ab7f93b5a7cf1599223e980049c4858e17a557f122b6f540a9bff5ad8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6-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.12.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 39ef771c247f13923ceae41cbd4009acc4f4ac30848987ebb5caad642b41cad0
MD5 a9c0028c6407862680c5cfd3d3029c04
BLAKE2b-256 02deae60877229e9597cf4d65e64ca73ee1887aee9d4793cb31005a38eae65e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6-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.12.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c6a48e92d3d629986d1526e6eec76fe445f321b598498cc89f877b0e3a792127
MD5 7a9d3072aa7f1312e6478d4609058e89
BLAKE2b-256 4b8863c7685f2787f800608ff1dadd3f45a7de6a058776b51eb4d34aadeff863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9f9f605bc0f70480b6885518c20409f165ea0dbbe68da997c9ccc6a3ff8a83f
MD5 855f627a40bf02042c75768a875e944c
BLAKE2b-256 4d36d9ba16294f74f0e4a4c1d00194701d95e2f81fdfc9d26f0f1cc6b128652c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a17c47a2f51f60ffef628d0c681640ac80c1d3280c49542b4dc0c2c5ebc479e8
MD5 cc6c352e08412c6e39ddb89feabe3610
BLAKE2b-256 95cac166d86e0fecbe056667457355b3dfd8a8ec3829af801855e1f1931dadff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d170ef09e66d39ad9cc655a612088b5acf7b7fa91789ef175ae9cbf3f3f2cba3
MD5 dd3c7b794430a935bfbb1ea9ce0ad7ef
BLAKE2b-256 94933cf5bdf53aa15d56c458cd1e2db570666953d3717e4d75e8ee76e4456a4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ab6488a374a60ca7848906d88d2146ef1051e15c529d906820f8870f95cdf18
MD5 451dc9b4c4146b45e1b61d1f48dcec98
BLAKE2b-256 47762e627d89a9dd558ce366ab655da680913b33b6592301ca2ecddb2e16adaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6-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.12.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d1654255a73d646574bb11ba23be97c1940b4947ecde4556fbc3355c778e584
MD5 32530f83a9ec0029a4c8199a288eaf66
BLAKE2b-256 f7497c73229b5023de8e2166f6ae8e3a04c081f249af992a057588d0b85928a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6-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.12.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 235b5b51c59daf76b24fed63fcac1eafa33d1540c1561d1b99b652ef83d1ce38
MD5 adbd2daca5433fc002f0354c1e87d0db
BLAKE2b-256 a9d048acd5dae31a7b5f9b866acbfc589bfe613e5dea4688b9853f5cfea52a71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89575de459763650c40db6053435dd7afb83f27c76e346319ab25c11fd52abc9
MD5 2a601b5a26090bbebab85735eec9e418
BLAKE2b-256 65c90ebded07d91537381571168e73a29765672eda0fecc6338f0cc7b229b0b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c21149c0fc4d5174ac22b0b0c9e50b923e9d0c9701345a3a29b758f4351520f4
MD5 1b00a1224012c0599a5f63b31cce0739
BLAKE2b-256 ac94c14c3778f601fbec8163c902d19ac3d014823c4fef5559d0c88d32807e6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1527d9fc45be9390f8903cda582916012d1f3044c5110491d3989f020ddd1ec4
MD5 74273426c4f3ac526ff8de5f8854b580
BLAKE2b-256 83f318e774d5c23d5945dfaefaf5ee9b0be66b061103e02a8594f621ae462d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35fc044ff5fdc2f02eb21746b4077e46aa2b8a8a9307554cce3cd03c5bc87394
MD5 69a78b20f7a696e070eb26ff1feee85d
BLAKE2b-256 7651c08e33184653928236c85facbdeb5ef234ef264e2bbff0fd19e927a1fa1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6-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.12.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6ddf12af466661addb613b9098cf30dd6b762eb55c65f4b04aba18fb27bfa2eb
MD5 d63880130b724db488c13e61f0ec62c2
BLAKE2b-256 db0176ff3898ef88e20f7545ecbe9afbe18271bd930ed748dab7c62af11d4416

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6-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.12.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 34e7db2c36b2c2a9dc8bb320b6dc2e5be8ac6537d919bda28019d7bab220eee9
MD5 09e812a947a24e84ac4141ae20bef3cd
BLAKE2b-256 c0a5edcf61868d1330871a90152d8a3c0113573dd2cd9cc65d1598e5b5da0f94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d339ad23721b686e4c065c9e5c3efd8609f24c2cff722c058dd4069e1e3ffdc1
MD5 1524442b68ed39f738ae64f0f8292707
BLAKE2b-256 9e3baa98edc76dfcc60e786fce19691069f63d01acb2839a32510304de51ec17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d0236ffc16386fbe24138ed971ee3796551a8b69c668a223381685163f1dd9a
MD5 611b276c4d31f3aa45f811ca4ec5773a
BLAKE2b-256 b4274e221922a1c242aa382768acfab7cb0b84f97c907a3785b24843ce5f860a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 110ba4830426bd0484884b8787f42cd153db9d6a3c9c45dea72aaf05259ee18a
MD5 2fe32b713cdd1b4a0746f6d82536625b
BLAKE2b-256 088e48d92c9351c90936f7144b59ed2280485c42a0a58571f53223a8abb08f04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de157e7ea8379002e814f695f4fda5aa0d5bc43f44aee8d616d0d5723679e572
MD5 f0b9aebe8e6a49a71304764b950c5b5c
BLAKE2b-256 2f6c3ef76c50d6506b7a4903a99c00931609703615bb3e8a0a734096eacaabdc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c82ca75d67f4fea912ccdabcf0a5dfaa765649510e3c028a0e4d0da6615a4752
MD5 85ac4fd3c699e2f7615fe27818b05876
BLAKE2b-256 03fe80d9d932ad5e10ab1c1968c308b2edc6d1c2dc65fbc29fed4ff0619f6383

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.1 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.12.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7f5038c3d7f41b3b5f6fd4ee2ed62884372cc67b33d55a3a645f9a3c03a15cbd
MD5 5baac53add3ec5af2c91adccbb772806
BLAKE2b-256 327fafa716eee4ecd9c292ec9581df9cdd19d4c05b85a39cbbed553cfb21844b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a883cdb82d91ff5998a557d3bc8a61ab5883158aa9680b34e057367b0ba67c3b
MD5 faea1537ee065a59bf5b3e73131c76cf
BLAKE2b-256 190304bce9646c32bd38f6fda51e953becfbafd4ecd173d840c8bb94b1371b26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1dcbedb8c7649d57a2f0839600e297738a70a065977f4f6742593232bbc6d8fe
MD5 f72df6ec5025f5ad4cb5d3f748c4658d
BLAKE2b-256 073d864d529f46daa7ef5e1fb839b7a36a3cfae0d0c7e0f5c071aef57e578743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e76760b9285304b2844465cf0c2eb30e97bb33115c06a0f21f79bc5998d0c3e3
MD5 0082255858f4f77b38f3f2d503af3675
BLAKE2b-256 1f014e2866307afbacb0108532f391b32b78fe1fe9bb03e5c22aebcf50096212

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 079587b6b505c1c879c29c0bd7315aa83484d8f624424cd9353ce558399628a1
MD5 ed3e325f6333d7e2bcf56f833db2ff0a
BLAKE2b-256 b70533e3b1d127f6a205e91e88a8e456db7d5bbedc24e0e65d3d2ee917305586

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.6-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.1 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.12.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 733d2b01d4b635c996f1c46b0435a196efddc4e12a1d99de79e445b7b5135f60
MD5 1694b5bcb4b76df3442666c3aaa1608e
BLAKE2b-256 45439b7bb823e4906f98ba3dd0b3eab1d1b427cca2a6b94180464bf4eef9238e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9d0772c87e9bb7016361e9e7c0364febee4acdcc41a44521d72d193811c41df
MD5 81b48090f322c319c82cd0cb91b827b7
BLAKE2b-256 70690fca7dd18123483066934740205a1b5b71ea08d2df45598d4bbee18cf1c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 12a4cf03eac16077f43db599883985b2fd487c0a56d4801e4ce8e4f4e465bc1c
MD5 4e2a8effe722cdd52ad5185c38761060
BLAKE2b-256 ab756704e7a785036044e239a0e223bec1d5e619bee094039b36835f5b38e540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb3c1fb7b9cbd9ebaccfd6e4aedff35d0163ff928abda9f15d20595a6ca871ca
MD5 1bcb9a6fe9e17b853b84097699665963
BLAKE2b-256 77886514bbdfeee7833fb1ef751bc85742574eab9a631d977bfd85f505fafd36

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4a92a1f7b943f799302a64f6130086c76abb638ff3c056b013fdc2475b02bd6c
MD5 74b94335eb3b95076c8d380b614be7a3
BLAKE2b-256 73817e7326b47a3715decd04ef98c0d628a27081476e16d5d46a78f0b739cfbf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ec255efc2145cbcaa1ab756cd6541831350779c303541a6ac4e423d9385a9322
MD5 08e641f10d6d79cc6bb4b5832fa21fef
BLAKE2b-256 034a7015298cd4fe20486293a3e51af04bd28f9e563939f5834a8d4fc59ae5db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ac75be55e7241a363a1d9066359b76a293c537a2b89fd7ccf7269e06c929fe2e
MD5 df9914dfce6985fc07f25d97a45c66fd
BLAKE2b-256 65ae689a2f3d8236952db0c90768c314951a0f2a9b7f835e5c35db5d58e37f4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed06a83fd95568fe0938738ce99e24d834176a298360f8abf023d4c10a3a54ee
MD5 191ff1bfbc2ac8a461502db3edfc81b6
BLAKE2b-256 4eda03de1febf142094c406628efde26f8a5e5f0149981620ce0affb765cf720

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.6-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 0d841d150a5ed3edf90251bce84716b760a5ccfd53dfcdbae60c3a675760695b
MD5 4f9331ba152405706b3b8f1b5efed4db
BLAKE2b-256 12afa18ca4fefa04a907a40dc37486aca77dcc5a3f9d75f1bd3d1b0e91a00493

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.6-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 8d4bdd9158c8f3a141e90906108f279d7bbe8038a8050456c29992d94c39ad94
MD5 d4619b4b8f53485c3ec31aa6fa8d4a8c
BLAKE2b-256 aa6338d707a011475488c1883a7fc135163bd3e38f4b7d84df5d78fe057643e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ea8d3757fd44c17bb28b3cb87ee59c5e42afccf87836d0f2d022009d13d834a1
MD5 734a9369b063e6d09c075a91e8ca9571
BLAKE2b-256 e91f97c03da08712b25dcbfbd7b3d5c724a9e6733d1bb3165a70ae3e5131d8ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c3808bc9574b1aad9c7e8ed72c2727834f9731154d75c854cb5fc5729a746a74
MD5 3aca08a4f26dbddbf933e70d1ce8772c
BLAKE2b-256 703bb61ccc9ec3d04cfb6b2704a6f58cf4404aa39e79dcde5d6c8f9c8a578531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b1380084494d0086fce6770aed0311f29635c38d77a04b75445d03fcb96f281a
MD5 7b783065a4661594e62901f78c4f9117
BLAKE2b-256 384f9d34a05946bcac28d6bb22fab980dde61b071a8910a830f17500d2727b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.6-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c04f885e944f1cd375520f98d3ad6e385b61c00be4cab0291fc6475791ca3e4
MD5 48ac312434a8f0e4ab1188102f3654b5
BLAKE2b-256 c075bc6179086d8282bdee70cc42425010ed007352360429395d1bcf65255dac

See more details on using hashes here.

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