Add OpenClaw workspace configuration and tools
- Add agent configuration files (AGENTS.md, USER.md, IDENTITY.md, SOUL.md) - Add git configuration and skills management scripts - Add frontend/backend analysis tools and reports - Add DingTalk media sender utilities and documentation - Fix OpenClaw runtime environment (Node.js and Python) - Configure git remotes and push scripts
This commit is contained in:
16
create_simple_csv.py
Normal file
16
create_simple_csv.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""Simple data for testing"""
|
||||
|
||||
data = """Name,Age,City
|
||||
Alice,25,New York
|
||||
Bob,30,London
|
||||
Charlie,35,Tokyo
|
||||
David,28,Paris
|
||||
"""
|
||||
|
||||
# Write to CSV file first
|
||||
with open('test_data.csv', 'w', encoding='utf-8') as f:
|
||||
f.write(data)
|
||||
|
||||
print("Created test_data.csv")
|
||||
print("You can now convert this to Excel using pandas or other tools.")
|
||||
Reference in New Issue
Block a user