1 """A Python implementation of the Data Access Protocol (DAP).
2
3 Pydap is a Python module implementing the Data Access Protocol (DAP)
4 written from scratch. The module implements a DAP client, allowing
5 transparent and efficient access to dataset stored in DAP server, and
6 also implements a DAP server able to serve data from a variety of
7 formats.
8
9 For more information about the protocol, please check http://opendap.org.
10 """
11
12 __import__('pkg_resources').declare_namespace(__name__)
13