Skip to main content

PyPI current version Python Support

hikvision-isapi-cli

A client library for accessing Hikvision ISAPI

OpenAPI Generator

rm -fr .history/;cd ..;openapi-python-client update --path hikvision-isapi-cli/openapi.json --custom-template-path=hikvision-isapi-cli/templates/ --config=hikvision-isapi-cli/.config.yaml;cd hikvision-isapi-cli

Usage

First, create a client:

from hikvision_isapi_cli import Client

client = Client(base_url="https://api.example.com", username="username", password="SuperSecretPassword")

Now call your endpoint and use your models:

from hikvision_isapi_cli.models import MyDataModel
from hikvision_isapi_cli.api.my_tag import get_my_data_model
from hikvision_isapi_cli.types import Response

my_data: MyDataModel = get_my_data_model.sync(client=client)
# or if you need more info (e.g. status_code)
response: Response[MyDataModel] = get_my_data_model.sync_detailed(client=client)

Or do the same thing with an async version:

from hikvision_isapi_cli.models import MyDataModel
from hikvision_isapi_cli.api.my_tag import get_my_data_model
from hikvision_isapi_cli.types import Response

my_data: MyDataModel = await get_my_data_model.asyncio(client=client)
response: Response[MyDataModel] = await get_my_data_model.asyncio_detailed(client=client)

By default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.

client = Client(
    base_url="https://internal_api.example.com", 
    verify_ssl="/path/to/certificate_bundle.pem",
)

You can also disable certificate validation altogether, but beware that this is a security risk.

client = Client(
    base_url="https://internal_api.example.com",  
    verify_ssl=False
)

There are more settings on the generated Client class which let you control more runtime behavior, check out the docstring on that class for more info.

Things to know:

  1. Every path/method combo becomes a Python module with four functions:

    1. sync: Blocking request that returns parsed data (if successful) or None
    2. sync_detailed: Blocking request that always returns a Request, optionally with parsed set if the request was successful.
    3. asyncio: Like sync but async instead of blocking
    4. asyncio_detailed: Like sync_detailed but async instead of blocking
  2. All path/query params, and bodies become method arguments.

  3. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)

  4. Any endpoint which did not have a tag will be in hikvision_isapi_cli.api.default

Building / publishing this Client

This project uses Poetry to manage dependencies and packaging. Here are the basics:

  1. Update the metadata in pyproject.toml (e.g. authors, version)
  2. If you're using a private repository, configure it with Poetry
    1. poetry config repositories.<your-repository-name> <url-to-your-repository>
    2. poetry config http-basic.<your-repository-name> <username> <password>
  3. Publish the client with poetry publish --build -r <your-repository-name> or, if for public PyPI, just poetry publish --build

If you want to install this client into another project without publishing it (e.g. for development) then:

  1. If that project is using Poetry, you can simply do poetry add <path-to-this-client> from that project
  2. If that project is not using Poetry:
    1. Build a wheel with poetry build -f wheel
    2. Install that wheel from the other project pip install <path-to-wheel>

Release files for hikvision-isapi-cli 1.2.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for hikvision-isapi-cli 1.2.1
File Size Uploaded
hikvision_isapi_cli-1.2.1.tar.gz 69.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for hikvision-isapi-cli 1.2.1
File Interpreter ABI Platform
hikvision_isapi_cli-1.2.1-py3-none-any.whl Python 3 none any Details

Total release size: 321.8 kB

Release files / hikvision_isapi_cli-1.2.1.tar.gz

Download URL hikvision_isapi_cli-1.2.1.tar.gz
Size 69.8 kB
Tags Source
SHA-256 checksum
How to use checksums
868f80edaf49ff96230d21a0b44004b4aa09afc0fa8870ef7505d1aaf6e1e457
BLAKE2b-256 checksum
How to use checksums
51540ef7945d9b8f7fade71ac8bde19597048d2195bddad6884519031f2251ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.5.1 CPython/3.11.3 Linux/5.15.0-1038-azure

Release files / hikvision_isapi_cli-1.2.1-py3-none-any.whl

Download URL hikvision_isapi_cli-1.2.1-py3-none-any.whl
Size 252.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
e0e62b3f9ebd9e3bf1dc31aea33802aff25be6e3de2ef153543d9095890e5201
BLAKE2b-256 checksum
How to use checksums
ebfe3c345bd21d6de608e99b42dea06cc986d417af88d423ee76e40fa478f3a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/1.5.1 CPython/3.11.3 Linux/5.15.0-1038-azure

Release history Release notifications | RSS feed

This release

1.2.1 This release

2 release files

1.1.1

2 release files

1.1.0

2 release files

1.0.20

2 release files

1.0.19

2 release files

1.0.18

2 release files

1.0.17

2 release files

1.0.16

2 release files

1.0.15

2 release files

1.0.14

2 release files

1.0.13

2 release files

1.0.12

2 release files

1.0.11

2 release files

1.0.10

2 release files

1.0.9

2 release files

1.0.8

2 release files

1.0.7

2 release files

1.0.6

2 release files

1.0.5

2 release files

1.0.4

2 release files

1.0.3

2 release files

1.0.2

2 release files

1.0.1

2 release files

1.0.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page