Coverage for src/flight/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.10.4, created at 2025-08-19 01:30 +0000

1"""NumPy over Apache Arrow Flight package. 

2 

3This package provides a client-server implementation for sending NumPy arrays 

4over the network using Apache Arrow Flight protocol. It includes: 

5 

6- Client: For sending NumPy arrays to a server and retrieving results 

7- Server: An abstract base class for implementing computation servers 

8""" 

9 

10from .numpy_client import Client # noqa: F401 

11from .numpy_server import Server # noqa: F401