human-input-kit 0.2.4__tar.gz → 0.2.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/CHANGELOG.md +12 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/PKG-INFO +2 -2
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/README.md +1 -1
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/docs/AFFILIATE.md +1 -1
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/pyproject.toml +1 -1
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/.github/workflows/ci.yml +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/.github/workflows/release.yml +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/.gitignore +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/LICENSE +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/docs/FAQ.md +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/docs/assets/.gitkeep +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/examples/demo_warmup.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/examples/mlx_warmup_demo.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/__init__.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/async_.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/bezier.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/cli.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/deal.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/gesture_schema.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/gestures.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/idle.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/keyboard.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/record.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/replay.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/rng.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/scroll.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/human_input_kit/sync_.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/recipes/scroll_news.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/recipes/youtube_idle.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/tests/conftest.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/tests/test_async_module.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/tests/test_benchmark_bezier.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/tests/test_bezier.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/tests/test_cli.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/tests/test_gesture_schema.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/tests/test_gestures.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/tests/test_mlx_warmup_demo.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/tests/test_playwright_actions.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/tests/test_record.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/tests/test_replay.py +0 -0
- {human_input_kit-0.2.4 → human_input_kit-0.2.6}/tests/test_sync_api.py +0 -0
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.2.6 — 2026-06-12
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Cloud phone coupon `MIN50` checkout → `https://multilogin.com?a_aid=saas` (AFFILIATE, README footer, MLX docs)
|
|
8
|
+
|
|
9
|
+
## v0.2.5 — 2026-06-12
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Confirm unified affiliate URL `https://multilogin.com?a_aid=saas` across all docs
|
|
14
|
+
|
|
3
15
|
## v0.2.4 — 2026-06-12
|
|
4
16
|
|
|
5
17
|
### Changed
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: human-input-kit
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.6
|
|
4
4
|
Summary: Human-like Playwright mouse, scroll, and typing — Bezier warmup with deterministic seeds. CLI: human-input.
|
|
5
5
|
Project-URL: Homepage, https://github.com/human-input-kit/human-input-kit
|
|
6
6
|
Project-URL: Documentation, https://github.com/human-input-kit/human-input-kit#readme
|
|
@@ -274,5 +274,5 @@ MIT
|
|
|
274
274
|
|
|
275
275
|
---
|
|
276
276
|
|
|
277
|
-
**Production antidetect (partner):** [Multilogin X](https://multilogin.com?a_aid=saas) · Code `SAAS50` (-50% browser) ·
|
|
277
|
+
**Production antidetect (partner):** [Multilogin X](https://multilogin.com?a_aid=saas) · Code `SAAS50` (-50% browser) · [MIN50](https://multilogin.com?a_aid=saas) (-50% cloud phone)
|
|
278
278
|
Affiliate disclosure — we may earn a commission; offers change on the vendor site. More scripts: [@Multilogin_Scripts_Bot](https://t.me/Multilogin_Scripts_Bot) · [Multilogin promo codes](https://anti-detect.github.io/)
|
|
@@ -240,5 +240,5 @@ MIT
|
|
|
240
240
|
|
|
241
241
|
---
|
|
242
242
|
|
|
243
|
-
**Production antidetect (partner):** [Multilogin X](https://multilogin.com?a_aid=saas) · Code `SAAS50` (-50% browser) ·
|
|
243
|
+
**Production antidetect (partner):** [Multilogin X](https://multilogin.com?a_aid=saas) · Code `SAAS50` (-50% browser) · [MIN50](https://multilogin.com?a_aid=saas) (-50% cloud phone)
|
|
244
244
|
Affiliate disclosure — we may earn a commission; offers change on the vendor site. More scripts: [@Multilogin_Scripts_Bot](https://t.me/Multilogin_Scripts_Bot) · [Multilogin promo codes](https://anti-detect.github.io/)
|
|
@@ -29,7 +29,7 @@ Do **not** push MLX in install paths, CLI defaults, or error messages. Core pack
|
|
|
29
29
|
|
|
30
30
|
**Eligibility disclaimer:** Codes, discounts, and product names are set by Multilogin and change without notice. "50% off" applies only to **eligible new purchases** per vendor terms — not renewals, upgrades, or all regions. Verify on [multilogin.com](https://multilogin.com?a_aid=saas) before paying. We do not guarantee any discount will apply to your order.
|
|
31
31
|
|
|
32
|
-
Checkout with referral: [Multilogin X — SAAS50](https://multilogin.com?a_aid=saas)
|
|
32
|
+
Checkout with referral: [Multilogin X — SAAS50](https://multilogin.com?a_aid=saas) (browser) · [Cloud Phone — MIN50](https://multilogin.com?a_aid=saas) (browser) · [Cloud Phone — MIN50](https://multilogin.com?a_aid=saas)
|
|
33
33
|
|
|
34
34
|
## Links
|
|
35
35
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "human-input-kit"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.6"
|
|
8
8
|
description = "Human-like Playwright mouse, scroll, and typing — Bezier warmup with deterministic seeds. CLI: human-input."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|