Skip to main content

Bridge non-ADMS ZKTeco devices to Fitssort ADMS HTTP (attendance, commands, enroll)

Project description

ZKTeco LAN Agent — gym laptop deployment

Bridge non-ADMS ZKTeco devices (Ethernet / PC Connection only) to Fitssort via ADMS HTTP. Runs on a gym LAN laptop or Pi.

Device(s) ──TCP 4370──► Office Laptop (agent) ──HTTP :80 /iclock/*──► Production

Package on PyPI: zkteco-lan-agent

Install (Office Laptop)

Use Python 3.10–3.12 (3.12 recommended). The ZKTeco client is PyPI package pyzk (from zk import ZK), not the unrelated zk package.

With uv (recommended)

uv python install 3.12
uv tool install --python 3.12 zkteco-lan-agent
# or one-off:
uvx --python 3.12 zkteco-lan-agent --config devices.yaml

With pip

# create a 3.12 venv first if your system python is 3.14
python3.12 -m venv .venv
source .venv/bin/activate   # Windows: .venv\Scripts\activate
pip install zkteco-lan-agent
zkteco-lan-agent --config devices.yaml

If you stay on system Python 3.14 and must compile

sudo apt install python3-dev build-essential
uv pip install zkteco-lan-agent

From this repo (development)

cd zkteco_lan_agent
uv sync --python 3.12
uv run zkteco-lan-agent --config ../devices.yaml

Copy and edit config:

cp devices.yaml.example devices.yaml   # from repo root, or create manually

Example devices.yaml:

server_url: http://tenant.fitssort.com
poll_interval_seconds: 30
command_poll_interval_seconds: 10
heartbeat_interval_seconds: 60

devices:
  - name: Front Door K40
    device_ip: 192.168.1.100
    device_port: 4370
    device_sn: "CHANGEME_SN"
    comm_password: 0
    timezone: Asia/Dhaka

Keep the laptop awake (disable sleep while the gym is open).

The agent polls attendance regularly and also syncs device users (USERINFO, including card numbers) every userinfo_sync_interval_seconds (default 300). That is what populates the Fingerprints page with card holders from the device. You can also click Sync Now on the Devices page to pull users immediately.


Run as a background service

systemd does not exist on Windows. Use the section that matches the OS.

Linux — systemd

# After: uv tool install zkteco-lan-agent
which zkteco-lan-agent   # note the path, e.g. ~/.local/bin/zkteco-lan-agent

sudo cp zkteco-lan-agent.service /etc/systemd/system/
# edit ExecStart, WorkingDirectory (config path), User=
sudo systemctl daemon-reload
sudo systemctl enable --now zkteco-lan-agent
sudo systemctl status zkteco-lan-agent

Windows — Task Scheduler (built-in)

  1. Create start-lan-agent.bat:
@echo off
cd /d C:\gym\agent
zkteco-lan-agent --config devices.yaml
  1. Task Scheduler → Create Task → run at startup → Action: start the .bat.
  2. Enable restart on failure; uncheck “Stop if runs longer than…”.

Windows — NSSM (Windows Service)

nssm install ZktecoLanAgent "C:\Users\You\AppData\Local\Programs\Python\Python312\Scripts\zkteco-lan-agent.exe"
nssm set ZktecoLanAgent AppDirectory "C:\gym\agent"
nssm set ZktecoLanAgent AppParameters "--config devices.yaml"
nssm set ZktecoLanAgent AppRestartDelay 10000
nssm start ZktecoLanAgent

Dashboard registration

Field Value
Profile ZKTeco
Model K40 (or actual model)
Mode TCP Relay
Serial Exact hardware SN

Production ADMS smoke tests

curl -v "http://<tenant>.fitssort.com/iclock/cdata?SN=<YOUR_SN>"
curl -v "http://<tenant>.fitssort.com/iclock/getrequest?SN=<YOUR_SN>"

Use http:// only (HTTPS ADMS paths are not routed).

Card + fingerprint

  • Enroll fingerprints from the web app (ADMS or TCP Relay) or on the device.
  • Provision cards from the app so USERINFO includes Card=.
  • Device needs a card reader module for card taps.

Publish to PyPI (maintainers)

Uses uv.

One-time setup

  1. Create a PyPI account at https://pypi.org (and TestPyPI at https://test.pypi.org).
  2. Create an API token (Account → API tokens). Scope: entire account or project zkteco-lan-agent.
  3. Prefer env vars (never commit tokens):
export UV_PUBLISH_TOKEN=pypi-AgEIcHlwaS5vcmc...   # PyPI
# or for TestPyPI:
export UV_PUBLISH_TOKEN=pypi-...                 # TestPyPI token

Build & test locally

cd zkteco_lan_agent
uv sync --group dev
uv run pytest
uv build
# artifacts in dist/: .whl and .tar.gz

Publish to TestPyPI first

cd zkteco_lan_agent
uv build
uv publish --publish-url https://test.pypi.org/legacy/ --token "$UV_PUBLISH_TOKEN"

Install from TestPyPI to verify:

uv tool install --index https://test.pypi.org/simple/ --index-strategy unsafe-best-match zkteco-lan-agent

Publish to PyPI

  1. Bump version in pyproject.toml (and ensure changelog/notes if you keep them).
  2. Build and publish:
cd zkteco_lan_agent
uv build
uv publish --token "$UV_PUBLISH_TOKEN"

Or interactive (uv prompts for username __token__ and the API token as password):

uv publish

Version bumps

Edit version in pyproject.toml. Reinstall picks up __version__ via importlib.metadata.

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

zkteco_lan_agent-1.1.9.tar.gz (205.8 kB view details)

Uploaded Source

Built Distribution

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

zkteco_lan_agent-1.1.9-py3-none-any.whl (14.1 kB view details)

Uploaded Python 3

File details

Details for the file zkteco_lan_agent-1.1.9.tar.gz.

File metadata

  • Download URL: zkteco_lan_agent-1.1.9.tar.gz
  • Upload date:
  • Size: 205.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.11

File hashes

Hashes for zkteco_lan_agent-1.1.9.tar.gz
Algorithm Hash digest
SHA256 dc702b2336acc51a6a4c1dfb0171568ed49cb2bcf7f1ca6c227bda68c31461cf
MD5 538573b2f232253ce79e52d6f55a9d45
BLAKE2b-256 3c56ec070bb3d3fafaffd70a65cda128d0cb7ffc3825ca26d1b1ec51e217c7cd

See more details on using hashes here.

File details

Details for the file zkteco_lan_agent-1.1.9-py3-none-any.whl.

File metadata

File hashes

Hashes for zkteco_lan_agent-1.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 c780cd29a8319e999b0171e8e80ff22841f498db64c98b39e56b5731b54ff3c7
MD5 bc2959b61be6ad8d91319d2fe8b1167c
BLAKE2b-256 90c788146f9a4193a7e7e357e053801e66a21cd229385c6b8765547527144971

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