worldmonitor-sdk 0.1.0__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.
- worldmonitor_sdk-0.1.0/.gitignore +88 -0
- worldmonitor_sdk-0.1.0/LICENSE +669 -0
- worldmonitor_sdk-0.1.0/PKG-INFO +77 -0
- worldmonitor_sdk-0.1.0/README.md +55 -0
- worldmonitor_sdk-0.1.0/pyproject.toml +44 -0
- worldmonitor_sdk-0.1.0/src/worldmonitor_sdk/__init__.py +317 -0
- worldmonitor_sdk-0.1.0/tests/test_client.py +166 -0
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
node_modules/
|
|
2
|
+
.idea/
|
|
3
|
+
dist/
|
|
4
|
+
public/blog/
|
|
5
|
+
.DS_Store
|
|
6
|
+
*.log
|
|
7
|
+
.env
|
|
8
|
+
.env.local
|
|
9
|
+
.playwright-mcp/
|
|
10
|
+
*-network.txt
|
|
11
|
+
.vercel
|
|
12
|
+
api/\[domain\]/v1/\[rpc\].js
|
|
13
|
+
api/\[\[...path\]\].js
|
|
14
|
+
.claude/
|
|
15
|
+
.cursor/
|
|
16
|
+
CLAUDE.md
|
|
17
|
+
.env.vercel-backup
|
|
18
|
+
.env.vercel-export
|
|
19
|
+
.agent/
|
|
20
|
+
.factory/
|
|
21
|
+
.windsurf/
|
|
22
|
+
skills/
|
|
23
|
+
!api/skills/
|
|
24
|
+
ideas/
|
|
25
|
+
docs/internal/
|
|
26
|
+
docs/ideation/
|
|
27
|
+
internal/
|
|
28
|
+
# Exception: api/internal/ hosts Vercel edge endpoints that must be tracked
|
|
29
|
+
# (e.g. api/internal/brief-why-matters.ts — RELAY_SHARED_SECRET-auth'd
|
|
30
|
+
# endpoints for internal callers like the Railway digest cron).
|
|
31
|
+
# Scoped to SOURCE FILE TYPES ONLY so the parent `.env` / secrets ignore
|
|
32
|
+
# rules stay in effect inside this directory. Do NOT widen to `**`.
|
|
33
|
+
!api/internal/
|
|
34
|
+
!api/internal/*.ts
|
|
35
|
+
!api/internal/*.js
|
|
36
|
+
!api/internal/*.mjs
|
|
37
|
+
test-results/
|
|
38
|
+
src-tauri/sidecar/node/*
|
|
39
|
+
!src-tauri/sidecar/node/.gitkeep
|
|
40
|
+
|
|
41
|
+
# AI planning session state
|
|
42
|
+
.planning/
|
|
43
|
+
|
|
44
|
+
# Compiled sebuf gateway bundle (built by scripts/build-sidecar-sebuf.mjs)
|
|
45
|
+
api/[[][[].*.js
|
|
46
|
+
|
|
47
|
+
# Compiled sidecar domain handler bundles (built by scripts/build-sidecar-handlers.mjs)
|
|
48
|
+
api/*/v1/\[rpc\].js
|
|
49
|
+
.claudedocs/
|
|
50
|
+
|
|
51
|
+
# Large generated data files (reproduced by scripts/)
|
|
52
|
+
scripts/data/pizzint-processed.json
|
|
53
|
+
scripts/data/osm-military-processed.json
|
|
54
|
+
scripts/data/military-bases-final.json
|
|
55
|
+
scripts/data/dedup-dropped-pairs.json
|
|
56
|
+
scripts/data/pizzint-partial.json
|
|
57
|
+
scripts/data/gpsjam-latest.json
|
|
58
|
+
scripts/data/mirta-raw.geojson
|
|
59
|
+
scripts/data/osm-military-raw.json
|
|
60
|
+
scripts/data/forecast-replays/
|
|
61
|
+
|
|
62
|
+
# Iran events data (sensitive, not for public repo)
|
|
63
|
+
scripts/data/iran-events-latest.json
|
|
64
|
+
|
|
65
|
+
# Military bases rebuild script (references external Supabase URLs)
|
|
66
|
+
scripts/rebuild-military-bases.mjs
|
|
67
|
+
.wrangler
|
|
68
|
+
|
|
69
|
+
# Build artifacts (generated by esbuild/tsc, not source code)
|
|
70
|
+
api/data/city-coords.js
|
|
71
|
+
|
|
72
|
+
# OpenAPI bundle copied at build time from docs/api/ for native Vercel serve
|
|
73
|
+
/public/openapi.yaml
|
|
74
|
+
# JSON mirror of the bundle (build:openapi → scripts/build-openapi-json.mjs);
|
|
75
|
+
# served at /openapi.json for scanners/agents that only parse JSON
|
|
76
|
+
/public/openapi.json
|
|
77
|
+
|
|
78
|
+
# Runtime artifacts (generated by sidecar/tools, not source code)
|
|
79
|
+
api-cache.json
|
|
80
|
+
verbose-mode.json
|
|
81
|
+
skills-lock.json
|
|
82
|
+
tmp/
|
|
83
|
+
.context/
|
|
84
|
+
|
|
85
|
+
# Local planning documents (not for public repo)
|
|
86
|
+
docs/plans/
|
|
87
|
+
docs/brainstorms/
|
|
88
|
+
playground-pricing.html
|