fleet-framework 0.3.1__tar.gz → 0.3.2__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.1 → fleet_framework-0.3.2}/PKG-INFO +2 -2
- {fleet_framework-0.3.1 → fleet_framework-0.3.2}/pyproject.toml +4 -20
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_framework.egg-info/PKG-INFO +2 -2
- fleet_framework-0.3.2/src/fleet_framework.egg-info/SOURCES.txt +92 -0
- fleet_framework-0.3.1/fleet_framework.egg-info/SOURCES.txt +0 -92
- {fleet_framework-0.3.1 → fleet_framework-0.3.2}/LICENSE +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2}/README.md +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2}/setup.cfg +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/cli.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/automation.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/backend.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/browser.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/config.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/context.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/contract.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/country_presets.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/events.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/local_runner.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/logging.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/memory_backend.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/metrics.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/otel.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/primitives.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/protocol.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/proxy.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/reconcile.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/sqlite_backend.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/core/store.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/master/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/master/api.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/master/app.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/master/auth.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/master/broadcaster.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/master/dashboard/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/master/dashboard/router.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/master/dashboard/static/style.css +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/master/dashboard/templates/index.html +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/master/metrics_route.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/master/ratelimit.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/master/ws_router.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/worker/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/worker/agent.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/worker/reconcile_loop.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/worker/slot_runner.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet/worker/ws_client.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_browser/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_browser/browser.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_browser/cert.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_browser/cloak.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_browser/display.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_browser/fingerprint.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_browser/pool.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_browser/proxy_extension.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_browser/smart_router.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_browser/solver.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_browser/stealth.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_cloudflare/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_cloudflare/bypasser.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_cloudflare/harvest.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_cloudflare/replay.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_cloudflare/solver.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_content/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_content/automation.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_content/contracts.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_detect/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_detect/contracts.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_detect/detect.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_framework.egg-info/dependency_links.txt +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_framework.egg-info/entry_points.txt +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_framework.egg-info/requires.txt +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_framework.egg-info/top_level.txt +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_headers/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_headers/profiles.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_jobs/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_jobs/automation.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_jobs/contracts.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_marketplace/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_marketplace/automation.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_marketplace/contracts.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_news/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_news/automation.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_news/contracts.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_place/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_place/automation.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_place/contracts.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_provider_dataimpulse/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_provider_evomi/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_serp/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_serp/automation.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_serp/contracts.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_social/__init__.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_social/automation.py +0 -0
- {fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_social/contracts.py +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fleet-framework
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
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
|
-
Author: Sarper
|
|
5
|
+
Author: Sarper AVCI
|
|
6
6
|
License: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/sarperavci/fleet
|
|
8
8
|
Project-URL: Repository, https://github.com/sarperavci/fleet
|
|
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "fleet-framework"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.2"
|
|
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"
|
|
11
11
|
license = {text = "MIT"}
|
|
12
|
-
authors = [{name = "Sarper
|
|
12
|
+
authors = [{name = "Sarper AVCI"}]
|
|
13
13
|
dependencies = [
|
|
14
14
|
"fastapi>=0.115.0",
|
|
15
15
|
"uvicorn[standard]>=0.30.0",
|
|
@@ -87,24 +87,8 @@ Homepage = "https://github.com/sarperavci/fleet"
|
|
|
87
87
|
Repository = "https://github.com/sarperavci/fleet"
|
|
88
88
|
|
|
89
89
|
[tool.setuptools.packages.find]
|
|
90
|
-
where = ["
|
|
91
|
-
include = [
|
|
92
|
-
"fleet*",
|
|
93
|
-
"fleet_browser*",
|
|
94
|
-
"fleet_cloudflare*",
|
|
95
|
-
"fleet_content*",
|
|
96
|
-
"fleet_detect*",
|
|
97
|
-
"fleet_headers*",
|
|
98
|
-
"fleet_jobs*",
|
|
99
|
-
"fleet_marketplace*",
|
|
100
|
-
"fleet_news*",
|
|
101
|
-
"fleet_place*",
|
|
102
|
-
"fleet_provider_dataimpulse*",
|
|
103
|
-
"fleet_provider_evomi*",
|
|
104
|
-
"fleet_serp*",
|
|
105
|
-
"fleet_social*",
|
|
106
|
-
]
|
|
107
|
-
exclude = ["tests*", "docs*", "examples*", "deploy*"]
|
|
90
|
+
where = ["src"]
|
|
91
|
+
include = ["fleet*"]
|
|
108
92
|
|
|
109
93
|
[tool.setuptools.package-data]
|
|
110
94
|
"fleet.master.dashboard" = ["templates/**/*", "static/**/*"]
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fleet-framework
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
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
|
-
Author: Sarper
|
|
5
|
+
Author: Sarper AVCI
|
|
6
6
|
License: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/sarperavci/fleet
|
|
8
8
|
Project-URL: Repository, https://github.com/sarperavci/fleet
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/fleet/__init__.py
|
|
5
|
+
src/fleet/cli.py
|
|
6
|
+
src/fleet/core/__init__.py
|
|
7
|
+
src/fleet/core/automation.py
|
|
8
|
+
src/fleet/core/backend.py
|
|
9
|
+
src/fleet/core/browser.py
|
|
10
|
+
src/fleet/core/config.py
|
|
11
|
+
src/fleet/core/context.py
|
|
12
|
+
src/fleet/core/contract.py
|
|
13
|
+
src/fleet/core/country_presets.py
|
|
14
|
+
src/fleet/core/events.py
|
|
15
|
+
src/fleet/core/local_runner.py
|
|
16
|
+
src/fleet/core/logging.py
|
|
17
|
+
src/fleet/core/memory_backend.py
|
|
18
|
+
src/fleet/core/metrics.py
|
|
19
|
+
src/fleet/core/otel.py
|
|
20
|
+
src/fleet/core/primitives.py
|
|
21
|
+
src/fleet/core/protocol.py
|
|
22
|
+
src/fleet/core/proxy.py
|
|
23
|
+
src/fleet/core/reconcile.py
|
|
24
|
+
src/fleet/core/sqlite_backend.py
|
|
25
|
+
src/fleet/core/store.py
|
|
26
|
+
src/fleet/master/__init__.py
|
|
27
|
+
src/fleet/master/api.py
|
|
28
|
+
src/fleet/master/app.py
|
|
29
|
+
src/fleet/master/auth.py
|
|
30
|
+
src/fleet/master/broadcaster.py
|
|
31
|
+
src/fleet/master/metrics_route.py
|
|
32
|
+
src/fleet/master/ratelimit.py
|
|
33
|
+
src/fleet/master/ws_router.py
|
|
34
|
+
src/fleet/master/dashboard/__init__.py
|
|
35
|
+
src/fleet/master/dashboard/router.py
|
|
36
|
+
src/fleet/master/dashboard/static/style.css
|
|
37
|
+
src/fleet/master/dashboard/templates/index.html
|
|
38
|
+
src/fleet/worker/__init__.py
|
|
39
|
+
src/fleet/worker/agent.py
|
|
40
|
+
src/fleet/worker/reconcile_loop.py
|
|
41
|
+
src/fleet/worker/slot_runner.py
|
|
42
|
+
src/fleet/worker/ws_client.py
|
|
43
|
+
src/fleet_browser/__init__.py
|
|
44
|
+
src/fleet_browser/browser.py
|
|
45
|
+
src/fleet_browser/cert.py
|
|
46
|
+
src/fleet_browser/cloak.py
|
|
47
|
+
src/fleet_browser/display.py
|
|
48
|
+
src/fleet_browser/fingerprint.py
|
|
49
|
+
src/fleet_browser/pool.py
|
|
50
|
+
src/fleet_browser/proxy_extension.py
|
|
51
|
+
src/fleet_browser/smart_router.py
|
|
52
|
+
src/fleet_browser/solver.py
|
|
53
|
+
src/fleet_browser/stealth.py
|
|
54
|
+
src/fleet_cloudflare/__init__.py
|
|
55
|
+
src/fleet_cloudflare/bypasser.py
|
|
56
|
+
src/fleet_cloudflare/harvest.py
|
|
57
|
+
src/fleet_cloudflare/replay.py
|
|
58
|
+
src/fleet_cloudflare/solver.py
|
|
59
|
+
src/fleet_content/__init__.py
|
|
60
|
+
src/fleet_content/automation.py
|
|
61
|
+
src/fleet_content/contracts.py
|
|
62
|
+
src/fleet_detect/__init__.py
|
|
63
|
+
src/fleet_detect/contracts.py
|
|
64
|
+
src/fleet_detect/detect.py
|
|
65
|
+
src/fleet_framework.egg-info/PKG-INFO
|
|
66
|
+
src/fleet_framework.egg-info/SOURCES.txt
|
|
67
|
+
src/fleet_framework.egg-info/dependency_links.txt
|
|
68
|
+
src/fleet_framework.egg-info/entry_points.txt
|
|
69
|
+
src/fleet_framework.egg-info/requires.txt
|
|
70
|
+
src/fleet_framework.egg-info/top_level.txt
|
|
71
|
+
src/fleet_headers/__init__.py
|
|
72
|
+
src/fleet_headers/profiles.py
|
|
73
|
+
src/fleet_jobs/__init__.py
|
|
74
|
+
src/fleet_jobs/automation.py
|
|
75
|
+
src/fleet_jobs/contracts.py
|
|
76
|
+
src/fleet_marketplace/__init__.py
|
|
77
|
+
src/fleet_marketplace/automation.py
|
|
78
|
+
src/fleet_marketplace/contracts.py
|
|
79
|
+
src/fleet_news/__init__.py
|
|
80
|
+
src/fleet_news/automation.py
|
|
81
|
+
src/fleet_news/contracts.py
|
|
82
|
+
src/fleet_place/__init__.py
|
|
83
|
+
src/fleet_place/automation.py
|
|
84
|
+
src/fleet_place/contracts.py
|
|
85
|
+
src/fleet_provider_dataimpulse/__init__.py
|
|
86
|
+
src/fleet_provider_evomi/__init__.py
|
|
87
|
+
src/fleet_serp/__init__.py
|
|
88
|
+
src/fleet_serp/automation.py
|
|
89
|
+
src/fleet_serp/contracts.py
|
|
90
|
+
src/fleet_social/__init__.py
|
|
91
|
+
src/fleet_social/automation.py
|
|
92
|
+
src/fleet_social/contracts.py
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
LICENSE
|
|
2
|
-
README.md
|
|
3
|
-
pyproject.toml
|
|
4
|
-
fleet/__init__.py
|
|
5
|
-
fleet/cli.py
|
|
6
|
-
fleet/core/__init__.py
|
|
7
|
-
fleet/core/automation.py
|
|
8
|
-
fleet/core/backend.py
|
|
9
|
-
fleet/core/browser.py
|
|
10
|
-
fleet/core/config.py
|
|
11
|
-
fleet/core/context.py
|
|
12
|
-
fleet/core/contract.py
|
|
13
|
-
fleet/core/country_presets.py
|
|
14
|
-
fleet/core/events.py
|
|
15
|
-
fleet/core/local_runner.py
|
|
16
|
-
fleet/core/logging.py
|
|
17
|
-
fleet/core/memory_backend.py
|
|
18
|
-
fleet/core/metrics.py
|
|
19
|
-
fleet/core/otel.py
|
|
20
|
-
fleet/core/primitives.py
|
|
21
|
-
fleet/core/protocol.py
|
|
22
|
-
fleet/core/proxy.py
|
|
23
|
-
fleet/core/reconcile.py
|
|
24
|
-
fleet/core/sqlite_backend.py
|
|
25
|
-
fleet/core/store.py
|
|
26
|
-
fleet/master/__init__.py
|
|
27
|
-
fleet/master/api.py
|
|
28
|
-
fleet/master/app.py
|
|
29
|
-
fleet/master/auth.py
|
|
30
|
-
fleet/master/broadcaster.py
|
|
31
|
-
fleet/master/metrics_route.py
|
|
32
|
-
fleet/master/ratelimit.py
|
|
33
|
-
fleet/master/ws_router.py
|
|
34
|
-
fleet/master/dashboard/__init__.py
|
|
35
|
-
fleet/master/dashboard/router.py
|
|
36
|
-
fleet/master/dashboard/static/style.css
|
|
37
|
-
fleet/master/dashboard/templates/index.html
|
|
38
|
-
fleet/worker/__init__.py
|
|
39
|
-
fleet/worker/agent.py
|
|
40
|
-
fleet/worker/reconcile_loop.py
|
|
41
|
-
fleet/worker/slot_runner.py
|
|
42
|
-
fleet/worker/ws_client.py
|
|
43
|
-
fleet_browser/__init__.py
|
|
44
|
-
fleet_browser/browser.py
|
|
45
|
-
fleet_browser/cert.py
|
|
46
|
-
fleet_browser/cloak.py
|
|
47
|
-
fleet_browser/display.py
|
|
48
|
-
fleet_browser/fingerprint.py
|
|
49
|
-
fleet_browser/pool.py
|
|
50
|
-
fleet_browser/proxy_extension.py
|
|
51
|
-
fleet_browser/smart_router.py
|
|
52
|
-
fleet_browser/solver.py
|
|
53
|
-
fleet_browser/stealth.py
|
|
54
|
-
fleet_cloudflare/__init__.py
|
|
55
|
-
fleet_cloudflare/bypasser.py
|
|
56
|
-
fleet_cloudflare/harvest.py
|
|
57
|
-
fleet_cloudflare/replay.py
|
|
58
|
-
fleet_cloudflare/solver.py
|
|
59
|
-
fleet_content/__init__.py
|
|
60
|
-
fleet_content/automation.py
|
|
61
|
-
fleet_content/contracts.py
|
|
62
|
-
fleet_detect/__init__.py
|
|
63
|
-
fleet_detect/contracts.py
|
|
64
|
-
fleet_detect/detect.py
|
|
65
|
-
fleet_framework.egg-info/PKG-INFO
|
|
66
|
-
fleet_framework.egg-info/SOURCES.txt
|
|
67
|
-
fleet_framework.egg-info/dependency_links.txt
|
|
68
|
-
fleet_framework.egg-info/entry_points.txt
|
|
69
|
-
fleet_framework.egg-info/requires.txt
|
|
70
|
-
fleet_framework.egg-info/top_level.txt
|
|
71
|
-
fleet_headers/__init__.py
|
|
72
|
-
fleet_headers/profiles.py
|
|
73
|
-
fleet_jobs/__init__.py
|
|
74
|
-
fleet_jobs/automation.py
|
|
75
|
-
fleet_jobs/contracts.py
|
|
76
|
-
fleet_marketplace/__init__.py
|
|
77
|
-
fleet_marketplace/automation.py
|
|
78
|
-
fleet_marketplace/contracts.py
|
|
79
|
-
fleet_news/__init__.py
|
|
80
|
-
fleet_news/automation.py
|
|
81
|
-
fleet_news/contracts.py
|
|
82
|
-
fleet_place/__init__.py
|
|
83
|
-
fleet_place/automation.py
|
|
84
|
-
fleet_place/contracts.py
|
|
85
|
-
fleet_provider_dataimpulse/__init__.py
|
|
86
|
-
fleet_provider_evomi/__init__.py
|
|
87
|
-
fleet_serp/__init__.py
|
|
88
|
-
fleet_serp/automation.py
|
|
89
|
-
fleet_serp/contracts.py
|
|
90
|
-
fleet_social/__init__.py
|
|
91
|
-
fleet_social/automation.py
|
|
92
|
-
fleet_social/contracts.py
|
|
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.1 → fleet_framework-0.3.2/src}/fleet/master/dashboard/templates/index.html
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_framework.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{fleet_framework-0.3.1 → fleet_framework-0.3.2/src}/fleet_framework.egg-info/entry_points.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
|