Metadata-Version: 2.1
Name: dxapi-ce
Version: 6.2.2
Summary: Python Timebase client API
Home-page: UNKNOWN
Author: Epam
License: UNKNOWN
Keywords: timebase,database
Platform: Windows
Platform: Linux
Platform: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
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
Requires-Python: >=3.10,<3.15
Description-Content-Type: text/markdown

# dxapi-ce

Python client API for [TimeBase Community Edition](https://kb.timebase.info/) - a high-performance time-series database.

## Installation

```bash
pip install dxapi-ce
```

## Quick Start

```python
import dxapi_ce as dxapi

with dxapi.TickDb.openFromUrl("dxtick://localhost:8011", False) as db:
    stream_name = "my_stream"
    stream = db.getStream(stream_name)
    if stream is None:
        raise Exception('Stream ' + stream_name + ' not found.')

    with stream.trySelect(0, dxapi.SelectionOptions()) as cursor:
        while cursor.next():
            msg = cursor.getMessage()
            print(msg)

```

## Documentation

https://kb.timebase.info/community/development/API%20Documentation/python-ce


## Supported Platforms

| OS      | Architecture |
|---------|-------------|
| Windows | x64         |
| Linux   | x64, arm64  |
| macOS   | x64, arm64  |

Python 3.10–3.14 supported.

## License

Copyright 2026 EPAM Systems, Inc.

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.


