Initial commit with translated description

This commit is contained in:
2026-03-29 10:21:46 +08:00
commit 18e90b0b09
67 changed files with 20609 additions and 0 deletions

4
tests/fixtures/sample_portfolio.csv vendored Normal file
View File

@@ -0,0 +1,4 @@
symbol,name,category,notes
AAPL,Apple Inc,Tech,Core holding
TSLA,Tesla Inc,Auto,Growth play
MSFT,Microsoft,Tech,Dividend stock
1 symbol name category notes
2 AAPL Apple Inc Tech Core holding
3 TSLA Tesla Inc Auto Growth play
4 MSFT Microsoft Tech Dividend stock

20
tests/fixtures/sample_rss.xml vendored Normal file
View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Test Market News</title>
<link>https://example.com</link>
<description>Sample RSS feed for testing</description>
<item>
<title>Apple Stock Rises 5%</title>
<link>https://example.com/apple-rises</link>
<description>Apple Inc. shares rose 5% today on strong earnings.</description>
<pubDate>Mon, 20 Jan 2025 10:00:00 GMT</pubDate>
</item>
<item>
<title>Tesla Announces New Model</title>
<link>https://example.com/tesla-model</link>
<description>Tesla unveils new electric vehicle model.</description>
<pubDate>Mon, 20 Jan 2025 11:30:00 GMT</pubDate>
</item>
</channel>
</rss>