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.4.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

pyodps-0.12.4-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pyodps-0.12.4-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86

pyodps-0.12.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyodps-0.12.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyodps-0.12.4-cp312-cp312-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

pyodps-0.12.4-cp312-cp312-macosx_10_9_universal2.whl (2.8 MB view details)

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

pyodps-0.12.4-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pyodps-0.12.4-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86

pyodps-0.12.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyodps-0.12.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyodps-0.12.4-cp311-cp311-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyodps-0.12.4-cp311-cp311-macosx_10_9_universal2.whl (2.8 MB view details)

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

pyodps-0.12.4-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pyodps-0.12.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyodps-0.12.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyodps-0.12.4-cp310-cp310-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyodps-0.12.4-cp310-cp310-macosx_10_9_universal2.whl (2.8 MB view details)

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

pyodps-0.12.4-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pyodps-0.12.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyodps-0.12.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyodps-0.12.4-cp39-cp39-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyodps-0.12.4-cp39-cp39-macosx_10_9_universal2.whl (2.8 MB view details)

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

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pyodps-0.12.4-cp38-cp38-manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

pyodps-0.12.4-cp38-cp38-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

pyodps-0.12.4-cp37-cp37m-manylinux2014_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.7m

pyodps-0.12.4-cp37-cp37m-manylinux1_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.7m

pyodps-0.12.4-cp37-cp37m-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pyodps-0.12.4-cp36-cp36m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

pyodps-0.12.4-cp36-cp36m-manylinux1_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.6m

pyodps-0.12.4-cp36-cp36m-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

pyodps-0.12.4-cp35-cp35m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

pyodps-0.12.4-cp35-cp35m-manylinux1_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.5m

pyodps-0.12.4-cp27-cp27mu-manylinux1_x86_64.whl (4.2 MB view details)

Uploaded CPython 2.7mu

pyodps-0.12.4-cp27-cp27m-manylinux1_x86_64.whl (4.2 MB view details)

Uploaded CPython 2.7m

pyodps-0.12.4-cp27-cp27m-macosx_10_9_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.4.tar.gz
Algorithm Hash digest
SHA256 b5fff8b0893ea6e45061e18403c05a4dfbd35e794b95b1910cee3733ba911ac7
MD5 9e52b1c9355942238b64d7d1f5441c33
BLAKE2b-256 68493c91ba75f43a21e0f358f588a5fc97698320972d4c55258501aeceb59265

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for pyodps-0.12.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 12a9a362b3439907dbdee66bd8746aeeb1880581f3d99632195799a3663ab72a
MD5 4ad7dfa832936c5e9a557dd57a50505e
BLAKE2b-256 72a7bba52608c1abcb148e269d30628ea38e281ac6b5e096b53077f9759ce433

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for pyodps-0.12.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bbc1acf4a6869ad8f2df93afbb9b72f109c765bc772e2d8567868151c3b92d40
MD5 161b6f9b7e17714c1de46a7e6db5d639
BLAKE2b-256 f243f2ed0aaedffa43d70f8b66fb535a6469724d47aff6b1dfa476a2ef6605ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2417a7d78fb9c3463cf587fba584e2baa5a65a5ddceafb5ca5b757066ca20ccf
MD5 caef5fc5e0ac320f49424c4321217ddd
BLAKE2b-256 6d0c944b17cb2c2729d7a31d42218a63c186956f641b05029f458395a4e0ee9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78df598ca2b7975ac291980611bfcee526647ada21d8bb1764cad8e9c1046eae
MD5 9c5126a28082e38e6b765376bbddd7c0
BLAKE2b-256 42fabcca47b80632d2b2a50f81fcb5e559a4be946a425c5c4bc853f188596443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb9c633d821fbf5194191e0f3e0376abf45d51a28997f7a5939856f21d958d00
MD5 0dc008668a613263b53c11c5df135e71
BLAKE2b-256 17c953d12db5fb39bcd851e8abda5077df5ccdf3652be8b6df0608ea07df1520

See more details on using hashes here.

File details

Details for the file pyodps-0.12.4-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyodps-0.12.4-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bede9f09574be55552f7537ce30178c8a787bbdc856205dda76926fc7d3ef8b1
MD5 a7894e19c0367df3e43a202926817b05
BLAKE2b-256 962f580c376a968cf30df9b57df4a4972e5f7e2284af322cc40cdd233f9c2763

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for pyodps-0.12.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 901d5e393ec23cfab54a2464e976190a3047a0f0de24274149dab561959ecfb5
MD5 f0891537680dab26b6199bbd4287276e
BLAKE2b-256 05f44a0f002545e1268b535f2f1f14ca4bc0bdbc5e5a46feec98b072b7340791

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for pyodps-0.12.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6c771e1d3dda9aae2b5ff714b259fef98a9da787d112bc847a1c4d55aef4cda7
MD5 c46f39a7ea65381318c40ddb4ee48c4e
BLAKE2b-256 6657e6f262ce25d17115bdd6cea7c0f7a18c6f637b8c3cf6fa5e7d855241e97e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f833e2283c29a665ae208f4ec43ecc99c9e36ddb5292481bedd3c2146215ac34
MD5 9f0790d7e096fe6a662ae8933b09c7eb
BLAKE2b-256 f4e2918b9a111b66520c62a8132ce462ddc26eb977e30650dd7c0080db2af703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cacf94e701c5e588c3c2f37b49680ef1694aba6da3ed279160a535418606e42
MD5 d61d778d4fa2a528925ef684367cdac6
BLAKE2b-256 bf38e4e8b477ff1de7ecad9129b7533f4bcd6b44b93873cf3723a36f22fdb469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7771b79425c1ae4317ee89c88b91924a35c407dac3c835b8cf5696e7701af428
MD5 7b3a19eca0f7bf203f57d746bdd399f7
BLAKE2b-256 1e9d8ec1382f7fa4429885bda52872a948d6b937e73fccd2e20096cfb1638cf5

See more details on using hashes here.

File details

Details for the file pyodps-0.12.4-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyodps-0.12.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a3aeaf65546f5614b4552cc79a234ab7afa4b571983d3cb8896efb83036768e7
MD5 52474ee322e5f20c9ee597f45328f1cb
BLAKE2b-256 c4a2512564d04a0ec2938aa26e8063fcfda3cebc4bff2698309b82e243cd9c2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for pyodps-0.12.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1544a8a45c234e0d01a7f2adb6fcf62d0bfc7319a9f19c76101c1de220ccc0e4
MD5 5e5fb8efbbec3d09622cf681c9c8eba6
BLAKE2b-256 f4e803671acef98cdd3291c7274afd3dff927606c7cb6f817743fce933e16db0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.4-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.1.0 CPython/3.9.13

File hashes

Hashes for pyodps-0.12.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ac15b0b255604d6383103ac7fb147bf5067c2945b81347d64a401fe38698252e
MD5 e6b249f731d9767c0429c56fcf8ab473
BLAKE2b-256 896471741f6eed9a59b64ed7afc0d6f1cc316a8d7bc8a07f1ca61a1595f83616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eacce74964dd1df6415e3f2f1791922106ac1f6a9c2a02b548bfa9c25b4b85f8
MD5 8ef4fbbdf877fad407412150d4a36b6e
BLAKE2b-256 fab9f134d5dba7b360fdbb2dd5614f6dff9eb55a6369237703891de68e57cd2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0670ff7b7fc91993b66524b6ad569074481e3d1c4d25643d2432ee0801d5a71
MD5 e45513cee4778e19a97c18c3ecfe4e0b
BLAKE2b-256 3e59b998e1ff69aec9bcf2ba7b6171c8d1256a61276f1d0645349d75f0d5cabc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b28350bfd6164e327e45c8dd3d4bdaeab90f5c1fc7bb729a5e8d86ef9a6339a
MD5 01cf419e4fe1541b736d431f9bc9cc22
BLAKE2b-256 308e11c6a162594a8d5fc8436a2915cbb37a63abe7d064d1ca8649ddedecc350

See more details on using hashes here.

File details

Details for the file pyodps-0.12.4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyodps-0.12.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 40f8a1c252e2670c2d19b31dd7a5c9a8e669b6363b4ea65ed75c4f38f03eabf6
MD5 b0fb5830372f2cf6f2c12513fb5e7e88
BLAKE2b-256 753f2a37e21d7ac3ad7ca71eee3ab6a638c46c8d4ff843ef1fbcd1261198a2dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for pyodps-0.12.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3355936c3a1b2167ddea2c2b49e2155f285fc5be089f490f56e091bb2a7b50a3
MD5 3a23c4be133c2c2c73188596faed3c9e
BLAKE2b-256 caad138ad4874a6c635287168221fc773d4d8c0faee8cc9d987a844bac08fa0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.4-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.1.0 CPython/3.9.13

File hashes

Hashes for pyodps-0.12.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3f8f30a51a73f802403f0e18f8f41ac4703ce4d497e4a5a3ed16101c302a4104
MD5 0a76a73a32137a8d27d675d5ffcc54fb
BLAKE2b-256 31f9752dfe41d70119049736eaa23e1f16fff7575e8ac2919dcb5e24c9431cd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d64849f8ec8694a7af635fa4c1b4c2cd621a6f0e8eefa5391b7f0c8bf289ecd
MD5 5a46cb603fe6c99b094571338d5f8adc
BLAKE2b-256 e7eda4c1d932ae395fe1c245195682fc5fe70a0eab94eb896e52c5e8d6db1c6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c461d7f807878527a41caa2553deaad097eb171004a692ad7470b332d5036525
MD5 f5876b192301250438fa8a8ba6d3150d
BLAKE2b-256 3353ad9119ec233de04f3af062e47a488a1879f8e0aaf3ad5e4bde0241ab53d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6c058dcf2a5626dfa67fda597adf916ed524a70817fbf66b98b3646fc2b78da
MD5 3b67542d749c8e3f1038770aadf41526
BLAKE2b-256 c84f799312f8d92a749829ebcaf66974f2fd9f286a4ca37db44bfad90e514063

See more details on using hashes here.

File details

Details for the file pyodps-0.12.4-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyodps-0.12.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 582c02292f4ca0ca0f2f006ff12ac5d21d1400018410f3bb214f865d3e49c66b
MD5 849bf8b0f35810818aa7139e310a5a15
BLAKE2b-256 6f055d50715f8061a1b2cde2e8c59cf0022af2a3b51cc17a3511cdfcc3fd8a89

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b819316b4c8e0e6e62da5c17d9e1627e2848d4b23d864789219235b82891e5eb
MD5 a811e080e18e82fb68c232d9212e74c4
BLAKE2b-256 5e0ddf6a7d83b40f28e840bb376ecbced567de968e8468b8eb590d3805a4582d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4cd4362188279a642616914d9ec544ad37cb4f49cdf87ec03b9ea45e93dd2e2d
MD5 683090fdac772b41d916bf3fd942442d
BLAKE2b-256 00f5ab5c9d292421e76599997100e4e4d59fab87f6e3b7758bd3b44c89f3a452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 372f05aa9da41f8b75be0754828029ac9532518da99d04b49a375d582903ce3c
MD5 197ded0955028495446f95b347d1a483
BLAKE2b-256 5522c191a2c42d80dbb3bf13894b84e5e667a2ac5dcabcf463a7d73aae7a9cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f226c903eb412a32c145d163c688e1a3f0a99d0a0006337bd6b0706a2daa0a33
MD5 9aabb18d9d937dfe560aad08a91467f4
BLAKE2b-256 e692b4aa988f5789981d8ebe241b6131b85f2386e6ffca225826e82ac448c013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53815295c41f194d32105ab7196cc180ae8c2c9fa39dbcbd875ce4dee372d4e9
MD5 cdb67f78e84ef2db28217feb74c6ece9
BLAKE2b-256 1dfb13e616d4a3f3d1a41d83b141e0c3abf90a1aec766676e9a23f961d915f3f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fbd65347d98317aece7e6774defdc2d4ade1456f8b357e77ffd394d627d529b5
MD5 e4b6a7ea18b3e62587c377626bbc89e6
BLAKE2b-256 72d51d97552345365a3ec5085988f597819299f962a82a1716ed9ce7104ac30e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyodps-0.12.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 56620826b72c45a375cd57ee84afd1568cb3d8cfd1baf9815b4602de2f3f81bd
MD5 2fca7cbb62c5ced03454f4192e50e2a5
BLAKE2b-256 956224276bd93144feefddfe63edc6ab196e0ef154a2c313daad4cca8aee8a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 002a3f6dd07dbfc5d266a9f0f60762c93a32176318a505f24be9717426a75ed9
MD5 302521867ddffd565f301086d701c32e
BLAKE2b-256 348bf33f1894a1f8f4901dad5be2963846e3620228ad9bb441b9141008109961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d1e6d6a672041dc90b37904cece03ed5159c8fbbb897413856a9d9f31284caf5
MD5 f43d2325f99e4405cd9719129979473a
BLAKE2b-256 3e09624acb707a25f7ffcf2808946aab31e8f72674ef79ef43a01e138b53e207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0708abf605d89114420bc87d01b1c5f85fa42619c8df867ebc0d78776dd42ac
MD5 7cb565208c23e61b1fb893702b57fab2
BLAKE2b-256 c691a470b31640a97e5cc938aaba09d57c2a5b3848e2b6f9d993dfac81fddc8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.4-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.1.0 CPython/3.9.13

File hashes

Hashes for pyodps-0.12.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 daade29569a5b90713d3b92049f90d0388f3513033304c093d3962b1f41b1e9f
MD5 54d21f0a82cce2756803affb97b8276a
BLAKE2b-256 fca890bf2b0365cc7d81a760f4f7243b75dfbb046d7216b2a0ae59dc83e18b11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.4-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.1.0 CPython/3.9.13

File hashes

Hashes for pyodps-0.12.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 cadf17e33f9ee0d63b179ff814485888788abe155acdfa4e7a7129d83a87bdd5
MD5 2020142325562dbf857c07027ae5e6eb
BLAKE2b-256 a28b06c8dfb79a1a2aa20f125fd274b755bbff76ae3bedfdc4024c849219eaf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 632cd0a2b92d69cfa537197457dadec837d39bf58c0c5c2174276a8c6681a802
MD5 b53957f18c101a4ecbc2b5c5ff5f3dbe
BLAKE2b-256 ce28db198248ac50dc177c8b7cc57fc206da8ef0ad12c6b0af5fdddcf538ea9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eddf74c3a793d5b4695e284d7d4bf961d611d39f566099b78b3f7bfa829f03ac
MD5 f389cc5a6d8aeae8e3973dfd4731cb8e
BLAKE2b-256 4b112d7085cd4da4712271fe49d3e20de319236fa467f554d9deeb36172b6134

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.4-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.1.0 CPython/3.9.13

File hashes

Hashes for pyodps-0.12.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 4fd4071889f6a2691a1ea8c3500dff34e2c14fcb410ea2278fd5391ebf6e103a
MD5 c5a45a2474cb070e99cc50f1b066a349
BLAKE2b-256 fb7bb33199385b0fcb7d8f4260c5a51752de3ee14a0bcbefd2b764b8b4b4823c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyodps-0.12.4-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.1.0 CPython/3.9.13

File hashes

Hashes for pyodps-0.12.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 9892dbaeb397286566f38bb206b2b15d23c920f6d370ca15d1817b85ab42cec7
MD5 8e5c14695d92e069a9e8aa1b6ef15cef
BLAKE2b-256 acb7d96f3a283771cebaaf6d73d8376fdb4fd3ae07cbf81cca8fddf8e362f5de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 530e60cc7d7698284a80cb734c14956e882bbbde88aa65a5741e3cea6cdcdf09
MD5 a8e4bbb18040c0949d53e4db0272d9d5
BLAKE2b-256 6644a2e23a56f9b901a5a95c3418169ea1460bf5165575e273c8a33ca3ed93b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 24c94e27afb8e712a284d9de3fbfbfa32278ea3eed32f3fab7c8f97c11078399
MD5 170ede5fa8e1f2f01a7c2d0ec3608136
BLAKE2b-256 9cc694a29dd6fb6b3a175a85a29a89b6f0ce8a425990ce0e996b2263628d1b31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 52f42974a5f2f3d12cc26b2e4557ba4ba37c49eb676762b3bbd4a3fd089dfca0
MD5 0fb3c650657f939202fb423a16ffdace
BLAKE2b-256 f893ad0cd1ca183a03e2a14af9ce0a2a32c02f6eca11b6016b0cfb6fa20fce73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyodps-0.12.4-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fdc4664b5e0d145368ee265839e1c90df6ff311fdc9d3bf2fa8d686f2642a63
MD5 4db89e7644a33526490ee4b4d3f9abf8
BLAKE2b-256 e9f9502d0117690953c45d3becfbbb0eae04a7037aadc94ffd943baa832a09c4

See more details on using hashes here.

Supported by

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