pythonclaw 0.2.1__py3-none-any.whl → 0.2.2__py3-none-any.whl

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.
pythonclaw/__init__.py CHANGED
@@ -6,7 +6,7 @@ from .core.llm.base import LLMProvider
6
6
  from .core.llm.openai_compatible import OpenAICompatibleProvider
7
7
  from .init import init
8
8
 
9
- __version__ = "0.2.1"
9
+ __version__ = "0.2.2"
10
10
  __all__ = [
11
11
  "Agent",
12
12
  "LLMProvider",
pythonclaw/main.py CHANGED
@@ -149,28 +149,46 @@ def _run_foreground(args) -> None:
149
149
  format="%(asctime)s [%(levelname)s] %(name)s: %(message)s",
150
150
  )
151
151
 
152
- if channels:
153
- # Run web + channels together
154
- from .server import run_server
155
- print(f"[PythonClaw] Starting (web + {', '.join(channels)})...")
156
- asyncio.run(run_server(provider, channels=channels))
157
- else:
158
- # Web-only
159
- try:
160
- import uvicorn
161
- except ImportError:
162
- print("Error: Web mode requires 'fastapi' and 'uvicorn'.")
163
- print("Install with: pip install pythonclaw[web]")
164
- return
152
+ try:
153
+ import uvicorn
154
+ except ImportError:
155
+ print("Error: Web mode requires 'fastapi' and 'uvicorn'.")
156
+ print("Install with: pip install pythonclaw[web]")
157
+ return
165
158
 
166
- from .web.app import create_app
159
+ from .web.app import create_app
167
160
 
168
- host = config.get_str("web", "host", default="0.0.0.0")
169
- port = config.get_int("web", "port", default=7788)
161
+ host = config.get_str("web", "host", default="0.0.0.0")
162
+ port = config.get_int("web", "port", default=7788)
170
163
 
171
- app = create_app(provider, build_provider_fn=_build_provider)
172
- print(f"[PythonClaw] Web dashboard: http://localhost:{port}")
173
- uvicorn.run(app, host=host, port=port, log_level="info")
164
+ app = create_app(provider, build_provider_fn=_build_provider)
165
+
166
+ ch_to_start = channels or _detect_configured_channels()
167
+ if ch_to_start:
168
+ from .server import start_channels
169
+ from .web import app as web_app_module
170
+ label = "explicit" if channels else "auto-detected"
171
+ print(f"[PythonClaw] Channels ({label}): {', '.join(ch_to_start)}")
172
+
173
+ @app.on_event("startup")
174
+ async def _start_channels():
175
+ bots = await start_channels(provider, ch_to_start)
176
+ web_app_module._active_bots.extend(bots)
177
+
178
+ print(f"[PythonClaw] Web dashboard: http://localhost:{port}")
179
+ uvicorn.run(app, host=host, port=port, log_level="info")
180
+
181
+
182
+ def _detect_configured_channels() -> list[str]:
183
+ """Return channel names that have a token configured."""
184
+ found = []
185
+ tg_token = config.get_str("channels", "telegram", "token", default="")
186
+ if tg_token:
187
+ found.append("telegram")
188
+ dc_token = config.get_str("channels", "discord", "token", default="")
189
+ if dc_token:
190
+ found.append("discord")
191
+ return found
174
192
 
175
193
 
176
194
  def _cmd_stop(args) -> None:
pythonclaw/server.py CHANGED
@@ -2,21 +2,7 @@
2
2
  Daemon server for PythonClaw — multi-channel mode.
3
3
 
4
4
  Supports Telegram and Discord channels, individually or combined.
5
-
6
- Architecture
7
- ------------
8
- +----------------------------------------+
9
- | SessionManager |
10
- | "{channel}:{id}" → Agent |
11
- | "cron:{job_id}" → Agent |
12
- | (Markdown-backed via SessionStore) |
13
- +----------------------------------------+
14
- |
15
- +--------------------+--------------------+
16
- | | |
17
- TelegramBot CronScheduler HeartbeatMonitor
18
- DiscordBot static + dynamic
19
- jobs
5
+ The web dashboard always runs; channels are started alongside it.
20
6
  """
21
7
 
22
8
  from __future__ import annotations
@@ -30,43 +16,29 @@ from .core.llm.base import LLMProvider
30
16
  from .core.persistent_agent import PersistentAgent
31
17
  from .core.session_store import SessionStore
32
18
  from .scheduler.cron import CronScheduler
33
- from .scheduler.heartbeat import create_heartbeat
34
19
  from .session_manager import SessionManager
35
20
 
36
21
  logger = logging.getLogger(__name__)
37
22
 
38
23
 
39
- async def run_server(
24
+ async def start_channels(
40
25
  provider: LLMProvider,
41
- channels: list[str] | None = None,
42
- ) -> None:
43
- """
44
- Main entry point for daemon mode.
26
+ channels: list[str],
27
+ ) -> list:
28
+ """Start messaging channels (Telegram, Discord) as background tasks.
45
29
 
46
- Parameters
47
- ----------
48
- provider : the LLM provider to use
49
- channels : list of channels to start, e.g. ["telegram", "discord"].
50
- Defaults to ["telegram"] for backward compatibility.
30
+ Returns the list of successfully started bot objects.
31
+ Safe to call during FastAPI startup — failures are logged, not raised.
51
32
  """
52
- if channels is None:
53
- channels = ["telegram"]
54
-
55
- # ── 1. Session store (Markdown persistence) ───────────────────────────────
56
33
  store = SessionStore()
57
- logger.info("[Server] SessionStore initialised at '%s'", store.base_dir)
58
-
59
- # ── 2. SessionManager (placeholder factory, updated below) ────────────────
60
34
  session_manager = SessionManager(agent_factory=lambda sid: None, store=store)
61
35
 
62
- # ── 3. CronScheduler ─────────────────────────────────────────────────────
63
36
  jobs_path = os.path.join("context", "cron", "jobs.yaml")
64
37
  scheduler = CronScheduler(
65
38
  session_manager=session_manager,
66
39
  jobs_path=jobs_path,
67
40
  )
68
41
 
69
- # ── 4. Real agent factory ─────────────────────────────────────────────────
70
42
  def agent_factory(session_id: str) -> PersistentAgent:
71
43
  return PersistentAgent(
72
44
  provider=provider,
@@ -78,7 +50,6 @@ async def run_server(
78
50
 
79
51
  session_manager.set_factory(agent_factory)
80
52
 
81
- # ── 5. Start channels ─────────────────────────────────────────────────────
82
53
  active_bots: list = []
83
54
 
84
55
  if "telegram" in channels:
@@ -89,8 +60,8 @@ async def run_server(
89
60
  await bot.start_async()
90
61
  active_bots.append(bot)
91
62
  logger.info("[Server] Telegram bot started.")
92
- except (ValueError, ImportError) as exc:
93
- logger.warning("[Server] Telegram skipped: %s", exc)
63
+ except Exception as exc:
64
+ logger.warning("[Server] Telegram channel failed to start: %s", exc)
94
65
 
95
66
  if "discord" in channels:
96
67
  try:
@@ -99,25 +70,36 @@ async def run_server(
99
70
  asyncio.create_task(discord_bot.start_async())
100
71
  active_bots.append(discord_bot)
101
72
  logger.info("[Server] Discord bot started.")
102
- except (ValueError, ImportError) as exc:
103
- logger.warning("[Server] Discord skipped: %s", exc)
73
+ except Exception as exc:
74
+ logger.warning("[Server] Discord channel failed to start: %s", exc)
104
75
 
105
- if not active_bots:
106
- logger.error("[Server] No channels started. Check your pythonclaw.json configuration.")
107
- return
76
+ if active_bots:
77
+ scheduler.start()
78
+ logger.info("[Server] Channels running: %s", ", ".join(channels))
79
+ else:
80
+ logger.warning("[Server] No channels started — check tokens in pythonclaw.json.")
108
81
 
109
- # ── 6. Start scheduler ────────────────────────────────────────────────────
110
- scheduler.start()
82
+ return active_bots
111
83
 
112
- # ── 7. Heartbeat monitor ──────────────────────────────────────────────────
113
- telegram_bot = next((b for b in active_bots if hasattr(b, '_app')), None)
114
- heartbeat = create_heartbeat(provider=provider, telegram_bot=telegram_bot)
115
- await heartbeat.start()
116
84
 
117
- logger.info("[Server] All subsystems running (%s). Press Ctrl-C to stop.",
118
- ", ".join(channels))
85
+ async def run_server(
86
+ provider: LLMProvider,
87
+ channels: list[str] | None = None,
88
+ ) -> None:
89
+ """Standalone server entry point (channels only, no web).
90
+
91
+ Kept for backward compatibility. Prefer using ``start_channels``
92
+ together with the web dashboard in ``_run_foreground``.
93
+ """
94
+ if channels is None:
95
+ channels = ["telegram"]
96
+
97
+ active_bots = await start_channels(provider, channels)
98
+
99
+ if not active_bots:
100
+ logger.error("[Server] No channels started. Exiting.")
101
+ return
119
102
 
120
- # ── Graceful shutdown ─────────────────────────────────────────────────────
121
103
  stop_event = asyncio.Event()
122
104
 
123
105
  def _signal_handler() -> None:
@@ -136,9 +118,7 @@ async def run_server(
136
118
  except (KeyboardInterrupt, asyncio.CancelledError):
137
119
  pass
138
120
  finally:
139
- logger.info("[Server] Shutting down subsystems...")
140
- await heartbeat.stop()
141
- scheduler.stop()
121
+ logger.info("[Server] Shutting down...")
142
122
  for bot in active_bots:
143
123
  if hasattr(bot, 'stop_async'):
144
124
  await bot.stop_async()
pythonclaw/web/app.py CHANGED
@@ -37,6 +37,7 @@ _provider: LLMProvider | None = None
37
37
  _store: SessionStore | None = None
38
38
  _start_time: float = 0.0
39
39
  _build_provider_fn = None
40
+ _active_bots: list = []
40
41
 
41
42
  WEB_SESSION_ID = "web:dashboard"
42
43
 
@@ -73,6 +74,8 @@ def create_app(provider: LLMProvider | None, *, build_provider_fn=None) -> FastA
73
74
  app.add_api_route("/api/skillhub/search", _api_skillhub_search, methods=["POST"])
74
75
  app.add_api_route("/api/skillhub/browse", _api_skillhub_browse, methods=["GET"])
75
76
  app.add_api_route("/api/skillhub/install", _api_skillhub_install, methods=["POST"])
77
+ app.add_api_route("/api/channels", _api_channels_status, methods=["GET"])
78
+ app.add_api_route("/api/channels/restart", _api_channels_restart, methods=["POST"])
76
79
  app.add_websocket_route("/ws/chat", _ws_chat)
77
80
 
78
81
  return app
@@ -226,7 +229,14 @@ async def _api_config_save(request: Request):
226
229
  logger.warning("[Web] Provider rebuild failed: %s", exc)
227
230
  _provider = None
228
231
 
229
- return {"ok": True, "configPath": str(cfg_path), "providerReady": _provider is not None}
232
+ channels_started = await _maybe_start_channels()
233
+
234
+ return {
235
+ "ok": True,
236
+ "configPath": str(cfg_path),
237
+ "providerReady": _provider is not None,
238
+ "channelsStarted": channels_started,
239
+ }
230
240
 
231
241
 
232
242
  async def _api_skills():
@@ -507,6 +517,81 @@ async def _api_skillhub_install(request: Request):
507
517
  return JSONResponse({"ok": False, "error": str(exc)}, status_code=500)
508
518
 
509
519
 
520
+ async def _maybe_start_channels() -> list[str]:
521
+ """Start channels whose tokens are now configured but not yet running."""
522
+ global _active_bots
523
+ if _provider is None:
524
+ return []
525
+
526
+ wanted = []
527
+ tg_token = config.get_str("channels", "telegram", "token", default="")
528
+ if tg_token:
529
+ wanted.append("telegram")
530
+ dc_token = config.get_str("channels", "discord", "token", default="")
531
+ if dc_token:
532
+ wanted.append("discord")
533
+
534
+ if not wanted:
535
+ return []
536
+
537
+ running_types = set()
538
+ for bot in _active_bots:
539
+ cls_name = type(bot).__name__.lower()
540
+ if "telegram" in cls_name:
541
+ running_types.add("telegram")
542
+ elif "discord" in cls_name:
543
+ running_types.add("discord")
544
+
545
+ to_start = [ch for ch in wanted if ch not in running_types]
546
+ if not to_start:
547
+ return list(running_types)
548
+
549
+ try:
550
+ from ..server import start_channels
551
+ new_bots = await start_channels(_provider, to_start)
552
+ _active_bots.extend(new_bots)
553
+ return [ch for ch in wanted if ch in running_types or ch in to_start]
554
+ except Exception as exc:
555
+ logger.warning("[Web] Channel start failed: %s", exc)
556
+ return list(running_types)
557
+
558
+
559
+ async def _api_channels_status():
560
+ """Return status of messaging channels."""
561
+ channels = []
562
+ for bot in _active_bots:
563
+ cls_name = type(bot).__name__
564
+ ch_type = "telegram" if "Telegram" in cls_name else "discord" if "Discord" in cls_name else cls_name
565
+ channels.append({"type": ch_type, "running": True})
566
+
567
+ tg_token = config.get_str("channels", "telegram", "token", default="")
568
+ dc_token = config.get_str("channels", "discord", "token", default="")
569
+ running_types = {c["type"] for c in channels}
570
+
571
+ if tg_token and "telegram" not in running_types:
572
+ channels.append({"type": "telegram", "running": False, "tokenSet": True})
573
+ if dc_token and "discord" not in running_types:
574
+ channels.append({"type": "discord", "running": False, "tokenSet": True})
575
+
576
+ return {"channels": channels}
577
+
578
+
579
+ async def _api_channels_restart(request: Request):
580
+ """Stop and restart all configured channels."""
581
+ global _active_bots
582
+
583
+ for bot in _active_bots:
584
+ if hasattr(bot, "stop_async"):
585
+ try:
586
+ await bot.stop_async()
587
+ except Exception:
588
+ pass
589
+ _active_bots = []
590
+
591
+ started = await _maybe_start_channels()
592
+ return {"ok": True, "channels": started}
593
+
594
+
510
595
  def _reload_agent_identity() -> None:
511
596
  """Reload the agent's soul/persona from disk without full reset."""
512
597
  global _agent
@@ -209,6 +209,16 @@
209
209
  <div id="stat-history" class="text-[.6875rem] text-gray-500">0 msgs in history</div>
210
210
  </div>
211
211
  </div>
212
+ <div class="stat-card section-card flex items-start gap-3.5">
213
+ <div class="w-9 h-9 rounded-lg bg-cyan-500/15 flex items-center justify-center shrink-0 mt-0.5">
214
+ <svg class="w-4.5 h-4.5 text-cyan-400" fill="none" stroke="currentColor" stroke-width="1.75" viewBox="0 0 24 24"><path d="M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z"/></svg>
215
+ </div>
216
+ <div class="min-w-0">
217
+ <div class="text-[.6875rem] text-gray-500 font-medium uppercase tracking-wider mb-1">Channels</div>
218
+ <div id="stat-channels" class="text-base font-semibold text-white">Web only</div>
219
+ <div id="stat-channels-detail" class="text-[.6875rem] text-gray-500">web dashboard</div>
220
+ </div>
221
+ </div>
212
222
  </div>
213
223
 
214
224
  <!-- Identity & Status Row -->
@@ -493,7 +503,10 @@
493
503
 
494
504
  <!-- Channels -->
495
505
  <div class="cfg-section">
496
- <h3 class="cfg-title">Channels</h3>
506
+ <h3 class="cfg-title flex items-center gap-2">
507
+ Channels
508
+ <span id="cfg-channel-status" class="text-[.625rem] font-normal text-gray-500"></span>
509
+ </h3>
497
510
  <div class="grid grid-cols-1 sm:grid-cols-2 gap-x-6 gap-y-4">
498
511
  <div class="sm:col-span-2">
499
512
  <label class="block text-xs text-gray-500 mb-1.5">Telegram Bot Token</label>
@@ -512,6 +525,7 @@
512
525
  <input id="cfg-dc-channels" type="text" placeholder="Comma-separated channel IDs (blank = allow all)" class="input-field">
513
526
  </div>
514
527
  </div>
528
+ <p class="text-[.6875rem] text-gray-600 mt-3">Channels auto-start after saving. Tokens are stored securely.</p>
515
529
  </div>
516
530
 
517
531
  <!-- Web Dashboard -->
@@ -636,6 +650,21 @@ async function refreshDashboard() {
636
650
  banner.classList.toggle('hidden', d.providerReady !== false);
637
651
  } catch (e) { console.error('Status fetch:', e); }
638
652
 
653
+ try {
654
+ const chRes = await fetch('/api/channels');
655
+ const chData = await chRes.json();
656
+ const running = (chData.channels || []).filter(c => c.running).map(c => c.type);
657
+ const chEl = document.getElementById('stat-channels');
658
+ const chDetailEl = document.getElementById('stat-channels-detail');
659
+ if (running.length > 0) {
660
+ chEl.textContent = (running.length + 1) + ' active';
661
+ chDetailEl.textContent = 'web + ' + running.join(', ');
662
+ } else {
663
+ chEl.textContent = 'Web only';
664
+ chDetailEl.textContent = 'web dashboard';
665
+ }
666
+ } catch (e) {}
667
+
639
668
  try {
640
669
  const res2 = await fetch('/api/identity');
641
670
  const id = await res2.json();
@@ -1085,6 +1114,19 @@ async function loadConfig() {
1085
1114
 
1086
1115
  document.getElementById('cfg-json-raw').value = JSON.stringify(_rawConfig, null, 2);
1087
1116
  document.getElementById('config-save-status').textContent = '';
1117
+
1118
+ // Channel status
1119
+ try {
1120
+ const chRes = await fetch('/api/channels');
1121
+ const chData = await chRes.json();
1122
+ const statusEl = document.getElementById('cfg-channel-status');
1123
+ const running = (chData.channels || []).filter(c => c.running).map(c => c.type);
1124
+ if (running.length > 0) {
1125
+ statusEl.innerHTML = '<span class="text-accent-green">● ' + running.join(', ') + ' running</span>';
1126
+ } else {
1127
+ statusEl.textContent = '';
1128
+ }
1129
+ } catch (e) {}
1088
1130
  } catch (e) { console.error('Config fetch:', e); }
1089
1131
  }
1090
1132
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythonclaw
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: OpenClaw reimagined in pure Python — autonomous AI agent with memory, RAG, skills, web dashboard, and multi-channel support.
5
5
  Author-email: Eric Wang <wangchen2007915@gmail.com>
6
6
  License: MIT
@@ -1,11 +1,11 @@
1
- pythonclaw/__init__.py,sha256=DLlHqVmSfbCYhqo-DM4hDuLhsz_FCu_CNVMrerCpuEU,389
1
+ pythonclaw/__init__.py,sha256=WUtCQQOhI2PW7Bj-z9y7VqLQ2mCAklPE9kbIAv2ziwo,389
2
2
  pythonclaw/__main__.py,sha256=8q42hSuG6znq4wWXSPDmCtmG77SF7P_23hjwaRb-V9I,123
3
3
  pythonclaw/config.py,sha256=QreP_tBvUTK6UD2wsEMgBX51Tzb6KuIjznQQFgkKVOI,5395
4
4
  pythonclaw/daemon.py,sha256=i07DGJd-REzSW6tHQIEgHpx3Is44ZcxjCcUxFV8_p0c,6519
5
5
  pythonclaw/init.py,sha256=SMPaW-esuUeMIEYAEVC8Kl5jxmGz_BKgfm-ay5EMbe8,2311
6
- pythonclaw/main.py,sha256=AmLNLwJ9RQ75_I-C86yvJjiBu-c1WcoPufVTfZtjfgQ,17490
6
+ pythonclaw/main.py,sha256=Fo1jGbRFngwcecphF7X_dN8DMspFYzG39DkpLd4-KZs,18071
7
7
  pythonclaw/onboard.py,sha256=mzGhHmVghoveSc9Cku0YxOA_0O4blXRim12GIqJ2JVM,11693
8
- pythonclaw/server.py,sha256=1i_qS9FF36PTwCxhBb4nIdl5gq0OrKUTipHy0W-lasQ,5879
8
+ pythonclaw/server.py,sha256=2rHC9xJXeur4qoA8UCmHN3u7oooB3nSYByjZcsxdEyQ,3857
9
9
  pythonclaw/session_manager.py,sha256=oWxvyztYqAwgkG5ofJYiXf0XHR8NKD8wmF7FmWsetM8,3969
10
10
  pythonclaw/channels/discord_bot.py,sha256=ToEs5wm0woo7pjMfjyiVDvBjt2nxQ9MfyJU9g5U5o1w,9293
11
11
  pythonclaw/channels/telegram_bot.py,sha256=S2GSQQHQnUDRemhj2NMUgMxTbTTIsACwquMdIpdVUJw,9959
@@ -100,13 +100,13 @@ pythonclaw/templates/skills/web/CATEGORY.md,sha256=sCfrbWk9kfbWAv5_wkB7J2Fzz1I7f
100
100
  pythonclaw/templates/skills/web/tavily/SKILL.md,sha256=j9chgkhxHEVNpnZv0fBLp8vDtZmqfiS577E5OWda2U4,2018
101
101
  pythonclaw/templates/soul/SOUL.md,sha256=DskXNm-rKTG1pG_k17CEjOBfcC-7YlVVgPAoRHGQDXs,2182
102
102
  pythonclaw/web/__init__.py,sha256=ZgKF2tEAcpGnM22EC1CpNKtV4PQ8RbHw2qIqhw7i3UM,86
103
- pythonclaw/web/app.py,sha256=qu1SzZNHVEkX626PVV8015A6iyLkMsZsLMBiwIRcXaE,21236
103
+ pythonclaw/web/app.py,sha256=YfaPbq2D6zgYyuY0UsA-uJQgPy_-xbngd2V4Qcnak7o,24049
104
104
  pythonclaw/web/static/favicon.png,sha256=zJA13uE8mSe6lOlR5NyAhiOmnZkfv7ZlBbSBNCH7iTM,2557
105
- pythonclaw/web/static/index.html,sha256=UuVBdTZmsKrJ35SAi5zqId2wlrxB6dDQuCW2aTvqbpg,73539
105
+ pythonclaw/web/static/index.html,sha256=voy3AbwE0ftNL7nnFFqfN920cMaL0D7twwwQeoGEhnU,75713
106
106
  pythonclaw/web/static/logo.png,sha256=h7v0HHllD23FtmCL2UvjjTDt0UgqKjGy5jOhI3rb7lM,28359
107
- pythonclaw-0.2.1.dist-info/licenses/LICENSE,sha256=wbYsm5Ofe8cnxHgWSnSG1vUJDNiY1DIeTyxHSbo1HqM,1066
108
- pythonclaw-0.2.1.dist-info/METADATA,sha256=gvIXwrMxIEKduqeYZrXQjCfxqm4PzgL8HQfs-T2dLhw,14586
109
- pythonclaw-0.2.1.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
110
- pythonclaw-0.2.1.dist-info/entry_points.txt,sha256=4uGCuBw-id_22IRdkoxPVOOcwgiPX5lNEpD1XKQWE4I,52
111
- pythonclaw-0.2.1.dist-info/top_level.txt,sha256=S_lM2VH3gP3UeZbSWHXIrBOCNtoqn5pk491IAzgsV7M,11
112
- pythonclaw-0.2.1.dist-info/RECORD,,
107
+ pythonclaw-0.2.2.dist-info/licenses/LICENSE,sha256=wbYsm5Ofe8cnxHgWSnSG1vUJDNiY1DIeTyxHSbo1HqM,1066
108
+ pythonclaw-0.2.2.dist-info/METADATA,sha256=shmBvIvx1M7_1_oG8qpMX4Uh-G3YU2PNPRZXtNrzdDU,14586
109
+ pythonclaw-0.2.2.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
110
+ pythonclaw-0.2.2.dist-info/entry_points.txt,sha256=4uGCuBw-id_22IRdkoxPVOOcwgiPX5lNEpD1XKQWE4I,52
111
+ pythonclaw-0.2.2.dist-info/top_level.txt,sha256=S_lM2VH3gP3UeZbSWHXIrBOCNtoqn5pk491IAzgsV7M,11
112
+ pythonclaw-0.2.2.dist-info/RECORD,,