Metadata-Version: 2.4
Name: odps
Version: 4.0.0
Summary: Compatibility alias for pyodps
Author: PyODPS maintainers
Maintainer: PyODPS maintainers
License-Expression: Apache-2.0
Project-URL: Documentation, https://pyodps.readthedocs.io/
Project-URL: Repository, https://github.com/aliyun/aliyun-odps-python-sdk
Keywords: odps,pyodps,maxcompute,aliyun,alibaba-cloud
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyodps>=0.13.0
Provides-Extra: full
Requires-Dist: pyodps[full]>=0.13.0; extra == "full"
Dynamic: license-file

# odps

`odps` is a compatibility alias for `pyodps`.

Install either package:

```bash
pip install odps
pip install pyodps
```

Both commands install PyODPS. The Python import package is provided by
`pyodps` and remains:

```python
from odps import ODPS
```

For the optional dependencies commonly used with notebooks and data analysis:

```bash
pip install "odps[full]"
pip install "pyodps[full]"
```

PyODPS documentation: <https://pyodps.readthedocs.io/>
