fleet-framework 0.3.0__tar.gz → 0.3.1__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.
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/PKG-INFO +2 -1
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_framework.egg-info/PKG-INFO +2 -1
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_framework.egg-info/requires.txt +1 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/pyproject.toml +8 -1
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/LICENSE +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/README.md +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/cli.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/automation.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/backend.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/browser.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/config.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/context.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/contract.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/country_presets.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/events.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/local_runner.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/logging.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/memory_backend.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/metrics.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/otel.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/primitives.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/protocol.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/proxy.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/reconcile.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/sqlite_backend.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/core/store.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/master/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/master/api.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/master/app.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/master/auth.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/master/broadcaster.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/master/dashboard/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/master/dashboard/router.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/master/dashboard/static/style.css +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/master/dashboard/templates/index.html +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/master/metrics_route.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/master/ratelimit.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/master/ws_router.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/worker/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/worker/agent.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/worker/reconcile_loop.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/worker/slot_runner.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet/worker/ws_client.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_browser/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_browser/browser.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_browser/cert.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_browser/cloak.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_browser/display.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_browser/fingerprint.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_browser/pool.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_browser/proxy_extension.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_browser/smart_router.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_browser/solver.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_browser/stealth.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_cloudflare/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_cloudflare/bypasser.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_cloudflare/harvest.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_cloudflare/replay.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_cloudflare/solver.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_content/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_content/automation.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_content/contracts.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_detect/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_detect/contracts.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_detect/detect.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_framework.egg-info/SOURCES.txt +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_framework.egg-info/dependency_links.txt +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_framework.egg-info/entry_points.txt +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_framework.egg-info/top_level.txt +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_headers/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_headers/profiles.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_jobs/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_jobs/automation.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_jobs/contracts.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_marketplace/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_marketplace/automation.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_marketplace/contracts.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_news/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_news/automation.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_news/contracts.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_place/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_place/automation.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_place/contracts.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_provider_dataimpulse/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_provider_evomi/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_serp/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_serp/automation.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_serp/contracts.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_social/__init__.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_social/automation.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_social/contracts.py +0 -0
- {fleet_framework-0.3.0 → fleet_framework-0.3.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fleet-framework
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: generic distributed-automation framework — master/worker, browser pool, anti-bot helpers, and abstract automation contracts (SERP, content, news, place, marketplace, jobs, social)
|
|
5
5
|
Author: Sarper Avci
|
|
6
6
|
License: MIT
|
|
@@ -18,6 +18,7 @@ Requires-Dist: redis>=5.0.0
|
|
|
18
18
|
Requires-Dist: jinja2>=3.1.0
|
|
19
19
|
Requires-Dist: psutil>=5.9.0
|
|
20
20
|
Requires-Dist: click>=8.1.0
|
|
21
|
+
Requires-Dist: pyyaml>=6.0.2
|
|
21
22
|
Provides-Extra: browser
|
|
22
23
|
Requires-Dist: cloakbrowser>=0.3; extra == "browser"
|
|
23
24
|
Requires-Dist: cryptography>=42.0.0; extra == "browser"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fleet-framework
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: generic distributed-automation framework — master/worker, browser pool, anti-bot helpers, and abstract automation contracts (SERP, content, news, place, marketplace, jobs, social)
|
|
5
5
|
Author: Sarper Avci
|
|
6
6
|
License: MIT
|
|
@@ -18,6 +18,7 @@ Requires-Dist: redis>=5.0.0
|
|
|
18
18
|
Requires-Dist: jinja2>=3.1.0
|
|
19
19
|
Requires-Dist: psutil>=5.9.0
|
|
20
20
|
Requires-Dist: click>=8.1.0
|
|
21
|
+
Requires-Dist: pyyaml>=6.0.2
|
|
21
22
|
Provides-Extra: browser
|
|
22
23
|
Requires-Dist: cloakbrowser>=0.3; extra == "browser"
|
|
23
24
|
Requires-Dist: cryptography>=42.0.0; extra == "browser"
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "fleet-framework"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.1"
|
|
8
8
|
description = "generic distributed-automation framework — master/worker, browser pool, anti-bot helpers, and abstract automation contracts (SERP, content, news, place, marketplace, jobs, social)"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -20,6 +20,13 @@ dependencies = [
|
|
|
20
20
|
"jinja2>=3.1.0",
|
|
21
21
|
"psutil>=5.9.0",
|
|
22
22
|
"click>=8.1.0",
|
|
23
|
+
# Explicit floor: uvicorn[standard] (and mitmproxy in [browser]) pull
|
|
24
|
+
# pyyaml. pip's backtracking resolver, faced with a complex dep tree,
|
|
25
|
+
# otherwise walks down to pyyaml 6.0 — the last sdist before 6.0.1 added
|
|
26
|
+
# the Cython-3 wheel — which fails to build on py3.12 with
|
|
27
|
+
# "AttributeError: 'build_ext' object has no attribute 'cython_sources'".
|
|
28
|
+
# Anchoring at 6.0.2 stops the walk before it gets there.
|
|
29
|
+
"pyyaml>=6.0.2",
|
|
23
30
|
]
|
|
24
31
|
|
|
25
32
|
[project.optional-dependencies]
|
|
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
|
|
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
|
{fleet_framework-0.3.0 → fleet_framework-0.3.1}/fleet_framework.egg-info/dependency_links.txt
RENAMED
|
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
|