Skip to main content

gRPC interface to lara_django_substances

Project description

LARA Django Substances - gRPC API

This directory contains the gRPC interface for the lara-django-substances application, providing a high-performance API for managing chemical substances, compounds, and related data in the LARA database.

Overview

The gRPC API provides remote procedure call access to the LARA Django Substances service with support for multiple programming languages through protocol buffer definitions. It also contains a high-level Python interface for easy integration with Python applications.

Package: lara-django-substances-grpc Python Requirement: 3.13.*

Project Structure

api/grpc/
├── go/                          # Go gRPC client code
├── connect-es/                  # Connect-ES client code
├── connectrpc-es/               # ConnectRPC ES implementations
├── grpc-web/                    # gRPC-Web client code
├── gen/                         # Generated code from protobuf definitions
├── dist/                        # Distribution packages
├── pyproject.toml               # Python project configuration
└── python/                      # Python API module root
    └── lara_django_substances_grpc/
        ├── lara_django_substances_data_model.py   # Data model definitions
        ├── lara_django_substances_interfaces.py   # High-level interface
        └── v1/
            └── *_pb2.py         # Generated protocol buffer code

## Installation

### Using uv (Recommended)

Install the `lara-django-substances-grpc` package with uv for faster dependency resolution:

```bash
cd api/grpc
uv pip install .

Or with development dependencies:

uv pip install -e ".[dev]"

For development, install with editable mode and all dependency groups:

cd api/grpc
uv sync --all-groups

Using pip

Alternatively, install with pip:

pip install lara-django-substances-grpc

Or from the local directory:

cd api/grpc
pip install .

Dependencies

  • Runtime: grpcio>=1.73.0
  • Development:
    • grpcio-tools>=1.73.0
    • pytest>=8,<9
    • pytest-cov>=6,<7
    • pytest-asyncio

Code Generation

Protocol buffer definitions are located in ../proto/lara_django_substances_grpc/. To regenerate gRPC code from protobuf definitions, e.g. in case you changed the .proto file, use the Buf CLI:

cd api
buf generate

This will generate code for multiple targets as configured in buf.gen.yaml:

  • Python
  • Go
  • JavaScript/TypeScript (Connect-ES, ConnectRPC, gRPC-Web)

Running Tests

The test suite is located in api/tests/ and includes tests for all major entities:

Using uv

# From the api/grpc directory
uv run pytest api/tests/

# With coverage
uv run pytest api/tests/ --cov

Using pytest directly

# From the api/grpc directory
pytest api/tests/

# With coverage
pytest api/tests/ --cov

Test Files

  • test_lara_django_substances_Chemical_grpc.py - Chemical substance tests
  • test_lara_django_substances_Compound_grpc.py - Compound tests
  • test_lara_django_substances_Substance_grpc.py - Substance tests
  • Additional test files for substances-related entities

Usage Examples

Python Client

import grpc
from lara_django_substances_grpc import substance_pb2, substance_pb2_grpc

# Create a channel to the gRPC server
channel = grpc.insecure_channel('localhost:50051')

# Create a stub (client)
stub = substance_pb2_grpc.SubstanceServiceStub(channel)

# Make a request
response = stub.GetSubstance(substance_pb2.GetSubstanceRequest(id=1))
print(response)

# Don't forget to close the channel when done
channel.close()

For more comprehensive examples, see the demo clients in ../../demo_clients/.

Development

Building

The project uses the uv_build backend for building:

# Using uv (recommended)
uv build

# Or using Python build module
python -m build

Working with uv

This project is configured for uv with the following features:

  • Build Backend: uv_build>=0.9.0,<=0.10.0
  • Module Root: python/ (all Python gRPC code should be placed here)
  • Dependency Groups: Development dependencies are organized in groups

Common uv commands:

# Sync dependencies
uv sync

# Sync with development dependencies
uv sync --all-groups

# Add a new dependency
uv add package-name

# Add a development dependency
uv add --dev package-name

# Run a command in the uv environment
uv run python script.py

# Build the package
uv build

Module Root

The Python module root is configured at python/, meaning all Python gRPC code should be placed in that directory.

Documentation

Protocol Buffer Linting

The project uses Buf for linting and breaking change detection. Configuration is in ../buf.yaml:

  • Follows DEFAULT lint rules with specific exceptions
  • Breaking change detection enabled
  • Ignores certain Google type definitions

Contributing

Contributions are welcome! Please see the CONTRIBUTING.md file in the project root for guidelines.

When modifying protobuf definitions:

  1. Edit .proto files in ../proto/lara_django_substances_grpc/
  2. Run buf generate to regenerate code
  3. Update tests as needed
  4. Run the test suite to ensure compatibility

License

See the LICENSE file in the project root.

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

lara_django_substances_grpc-0.2.88.tar.gz (73.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lara_django_substances_grpc-0.2.88-py3-none-any.whl (74.3 kB view details)

Uploaded Python 3

File details

Details for the file lara_django_substances_grpc-0.2.88.tar.gz.

File metadata

File hashes

Hashes for lara_django_substances_grpc-0.2.88.tar.gz
Algorithm Hash digest
SHA256 e5aa78b219867fe30b986d85eb2e9260c1e4475d7b5e659c1435e3bd4ed8f336
MD5 c8d7d95f5e02543d673b5a93dd5b4d84
BLAKE2b-256 3b7df647b4ec76f7b00f83752d1cc378121cfab1d5b6d834b76319c789dd5927

See more details on using hashes here.

File details

Details for the file lara_django_substances_grpc-0.2.88-py3-none-any.whl.

File metadata

File hashes

Hashes for lara_django_substances_grpc-0.2.88-py3-none-any.whl
Algorithm Hash digest
SHA256 8103e7be7df03caddcbeb4320c5b4bd81c4fa750624118e952b5003dfb1cdaea
MD5 2059b47e60042eb0c464f1b2dea1790f
BLAKE2b-256 28be3ed5b9edb25c8cf963ac0920d6b0901421bc41f7b5d0d735696b3132aa97

See more details on using hashes here.

Supported by

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