Skip to main content

A pure python implementation of the Data Access Protocol.

Project description

pydap

Ubuntu CI MacOS CI Python PyPI conda forge black license pre-commit.ci status DOI

What is pydap?

pydap is an open-source implementation of the OPeNDAP protocol, written from scratch in pure python. You can use pydap to access scientific data available on the many OPeNDAP servers publically available through the internet. Because pydap supports remote and lazy evaluation, you can access the data without having to download it; instead, you work with special array and iterable objects that download data on-the-fly as necessary, saving bandwidth and time. The module also comes with a robust-but-lightweight OPeNDAP server, implemented as a WSGI application.

Why pydap?

Originally developed in the 2000s, pydap is one of the oldest open-source python projects available and it gets rutinely developed and maintained by the OPeNDAP community at large. In addition, pydap is a long-recognized backend engine (and dependency) for xarray and chances are you have used pydap in past without knowing.

Quickstart

pydap is a lighweight python package that you can use in either of the two modalities: a client and as a server. You can install the latest version using pip. After installing pip you can install pydap with this command:

    $ pip install pydap

This will install pydap together with all the required dependencies.

pydap is also available through Anaconda. Below we install pydap and its required dependencies, along with common additional packages in a fresh conda environment named pydap:

$ conda create -n pydap -c conda-forge python=3.10 pydap numpy">=2.0" jupyterlab ipython netCDF4 scipy matplotlib

Now you simply activate the pydap environment:

conda activate pydap

(NOTE: if you have mamba install, you can replace conda in the commands with mamba). You can now use pydap as a client and open any remotely served dataset, and pydap will download the accessed data on-the-fly as needed. For example consider this dataset currently hosted on OPeNDAP's Hyrax data server

    from pydap.client import open_url
    pyds = open_url('http://test.opendap.org:8080/opendap/catalog/ghrsst/20210102090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc', protocol='dap4')
    pyds.tree()
    .20210102090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc
    ├──time
    ├──lat
    ├──lon
    ├──analysed_sst
    ├──analysis_error
    ├──mask
    ├──sea_ice_fraction
    ├──dt_1km_data
    └──sst_anomaly
    pyds['sst_anomaly'].shape
    (1, 17999, 36000)

NOTE In the example above, no data was downloaded, it was all lazily evaluated using OPeNDAP's DMR (DAP4) metadata representation. For more information, please check the documentation on using pydap as a client.

pydap also comes with a simple server, implemented as a WSGI application. To use it, you first need to install the server and optionally a data handler:

Running pydap as a Server

    $ pip install "pydap[server,netcdf]"

This will install the necessary dependencies for running pydap as a server, along with extra dependencies for handling netCDF4 dataset. Now create a directory for your server data.

To run the server just issue the command:

    $ pydap --data ./myserver/data/ --port 8001 --workers 4 --threads 4

This will start a standalone server running on the default http://localhost:8001/, serving netCDF files from ./myserver/data/ Since the server uses the WSGI standard, pydap uses by default 1 worker and 1 thread, but these can be defined by the user like in the case above (4 workers and 4 threads). Pydap can also easily be run behind Apache. The server documentation has more information on how to better deploy pydap.

Documentation

For more information, see the pydap documentation.

Help and Community

If you need any help with pydap, open an issue in this repository. You can also send an email to the mailing list. Finally, ff you have a broader OPeNDAP access question, you can reach the OPeNDAP team on the OPeNDAP Discourse!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydap-3.5.2.tar.gz (5.5 MB view details)

Uploaded Source

Built Distribution

pydap-3.5.2-py3-none-any.whl (2.4 MB view details)

Uploaded Python 3

File details

Details for the file pydap-3.5.2.tar.gz.

File metadata

  • Download URL: pydap-3.5.2.tar.gz
  • Upload date:
  • Size: 5.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pydap-3.5.2.tar.gz
Algorithm Hash digest
SHA256 d26d3d2e3ad4def85b93c4277e9a1819ced86aa6c0a495c2c68e1726ab3ee794
MD5 fa3b783afaf26187a8db952a42e245da
BLAKE2b-256 a10b9b57a2d547fe23025162f7adffdfdc4aab8d333dfddc38d455628511bd65

See more details on using hashes here.

File details

Details for the file pydap-3.5.2-py3-none-any.whl.

File metadata

  • Download URL: pydap-3.5.2-py3-none-any.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pydap-3.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9196d8e7cc8a446565a9126b9d7b0e51ab73bac0fdbb31dd64fb55f018a8f4a4
MD5 7efdfae9e56841e450d4e0f85a682ee5
BLAKE2b-256 1890ed2ce3b638aec8534ece225e97a4aae499f086dbeb3b02eaa29a7f6ca9e2

See more details on using hashes here.

Supported by

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