Skip to main content

Sync and async Python client for NCCGEST REST API.

Project description

nccgest

English | Italiano | Русский

Python package for synchronous and asynchronous interaction with the NCCGEST REST API.

Full method-by-method documentation:

Features

  • Sync client: NCCGestClient
  • Async client: AsyncNCCGestClient
  • Command coverage:
    • cmd_read
    • cmd_insert
    • cmd_update
    • cmd_customer
    • cmd_driver
  • Typed API errors and HTTP errors
  • Python 3.8+ support (recommended runtime: 3.10+)

Installation

pip install nccgest

Quick Start (sync)

from nccgest import NCCGestClient

with NCCGestClient(domain="your-domain", token="YOUR_TOKEN") as client:
    services = client.read_services(start_date="16/03/2026", end_date="16/03/2026")
    print(services)

Quick Start (async)

import asyncio
from nccgest import AsyncNCCGestClient

async def main() -> None:
    async with AsyncNCCGestClient(domain="your-domain", token="YOUR_TOKEN") as client:
        driver_data = await client.get_driver_data(driverid=123)
        print(driver_data)

asyncio.run(main())

Insert Service Example

from nccgest import NCCGestClient

payload = {
    "pickup": "FCO",
    "dropoff": "Roma",
    "date": "16/03/2026",
    "pickup_time": "10:30",
    "pax": 2,
    "paxname": "John Smith",
    "paxphone": "+39000000000",
    "servicetype": "Transfer",
    "cartype": "Business Class",
    "subclass": "EXT-ORDER-12345",
}

with NCCGestClient(domain="your-domain", token="YOUR_TOKEN") as client:
    service_id = client.insert_service(payload)
    print(service_id)

API Notes

  • Use HTTPS only.
  • NCCGEST API docs mention no concurrent inserts: avoid parallel create calls.
  • Use proper URL encoding for external inputs.
  • Follow official endpoint method mapping (GET for read/customer/driver, POST for insert/update).

Development

pip install -e ".[dev]"
pytest

Mock Service (FastAPI + SQLite)

Install mock dependencies:

pip install -e ".[mock]"

Run:

NCCGEST_LOGIN=test NCCGEST_PASSWORD=test NCCGEST_DBDIR=/data NCCGEST_PORT=8255 python -m nccgest.mock_service

Alternative command:

nccgest-mock

If required mock modules are missing, nccgest-mock prints install instructions:

pip install "nccgest[mock]"
# or for local repo:
pip install -e ".[mock]"

Web UI:

  • Login page: http://localhost:8255/admin/login
  • Services admin: http://localhost:8255/admin/services
  • Customers admin: http://localhost:8255/admin/customers
  • Drivers admin: http://localhost:8255/admin/drivers
  • API endpoint: http://localhost:8255/api/rest_api.php

The /data directory is ignored by git and used for the local SQLite DB. Mock YAML fixtures for tests are stored in tests/mock_data/services.yaml. UI templates and CSS are separated in:

  • src/nccgest/mock_service/templates/*.html
  • src/nccgest/mock_service/static/style.css

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

nccgest-0.1.1.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

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

nccgest-0.1.1-py3-none-any.whl (21.2 kB view details)

Uploaded Python 3

File details

Details for the file nccgest-0.1.1.tar.gz.

File metadata

  • Download URL: nccgest-0.1.1.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for nccgest-0.1.1.tar.gz
Algorithm Hash digest
SHA256 0f65e2f3043073f463a48f82564849f9199b6c7bfce2db449af14c61bdc5904b
MD5 7e0e87994bc5a7c61383d41e7d27a894
BLAKE2b-256 a1d3a696b09a4a8c8b19938baa3be49bf5a0f7de3038ca1da2bcbf6091f53329

See more details on using hashes here.

File details

Details for the file nccgest-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: nccgest-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for nccgest-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1dff70836ae05e6264ad2841e04e3bda3f9cc43432fd90b0dd19a23ecf107548
MD5 e795af5dc822228f7cfaa56b33251262
BLAKE2b-256 5602eb500e42ec699704edd7f51066e4f4ed9b74d60a7d23927620c17a03ef26

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