Metadata-Version: 2.4
Name: tcpb
Version: 0.16.0
Summary: A Python client for TeraChem's protocol buffer API.
Project-URL: Homepage, https://github.com/mtzgroup/tcpb-client
Project-URL: Documentation, https://mtzgroup.github.io/tcpb-client/
Project-URL: Source, https://github.com/mtzgroup/tcpb-client
Project-URL: Changelog, https://github.com/mtzgroup/tcpb-client/blob/master/CHANGELOG.md
Project-URL: Bug Tracker, https://github.com/mtzgroup/tcpb-client/issues
Project-URL: repository, https://github.com/mtzgroup/tcpb-client
Author-email: Colton Hicks <github@coltonhicks.com>
License: The MIT License (MIT)
        
        Copyright (c) 2021 Colton Hicks
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in
        all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        THE SOFTWARE.
License-File: LICENSE
Keywords: protocol-buffers,quantum-chemistry,terachem
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: google==1.9.3
Requires-Dist: httpx>=0.27
Requires-Dist: numpy>=1.13
Requires-Dist: protobuf==3.20.1
Requires-Dist: pydantic!=2.4.0,>=2.0.0
Requires-Dist: pydantic-settings<3,>=2.0.3
Requires-Dist: qcconst<0.3,>=0.2.1
Requires-Dist: qcdata>=0.17.0
Description-Content-Type: text/markdown

# Python TeraChem Protocol Buffer (TCPB) Client

[![image](https://img.shields.io/pypi/v/tcpb.svg)](https://pypi.python.org/pypi/tcpb)
[![image](https://img.shields.io/pypi/l/tcpb.svg)](https://pypi.python.org/pypi/tcpb)
[![image](https://img.shields.io/pypi/pyversions/tcpb.svg)](https://pypi.python.org/pypi/tcpb)
[![Actions status](https://github.com/mtzgroup/tcpb-client/workflows/Basic%20Code%20Quality/badge.svg)](https://github.com/mtzgroup/tcpb-client/actions)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v1.json)](https://github.com/charliermarsh/ruff)

See the [documentation](https://mtzgroup.github.io/tcpb-client/)

Python client to communicate with TeraChem running in server mode.

Client uses C-style sockets for communication and Protocol Buffers for data serialization.

## Requirements

- Python 3.9+

## Installation

```sh
pip install tcpb
```

## Notes

The original, Python 2.7 compatible `tcpb` client built by Stefan Seritan was released as version `0.6.0`. If you depend upon this original release it can be installed by pegging to its version:

```sh
pip install tcpb==0.6.0
```

All future releases will support Python 3+ and MolSSI's QCSchema for data input/output.
