eugene-intelligence 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.
Files changed (52) hide show
  1. eugene_intelligence-0.1.0/PKG-INFO +111 -0
  2. eugene_intelligence-0.1.0/README.md +96 -0
  3. eugene_intelligence-0.1.0/eugene/__init__.py +0 -0
  4. eugene_intelligence-0.1.0/eugene/agents/__init__.py +0 -0
  5. eugene_intelligence-0.1.0/eugene/agents/credit.py +953 -0
  6. eugene_intelligence-0.1.0/eugene/agents/earnings.py +360 -0
  7. eugene_intelligence-0.1.0/eugene/agents/equity.py +215 -0
  8. eugene_intelligence-0.1.0/eugene/agents/equity_research.py +527 -0
  9. eugene_intelligence-0.1.0/eugene/agents/health.py +337 -0
  10. eugene_intelligence-0.1.0/eugene/config.py +212 -0
  11. eugene_intelligence-0.1.0/eugene/core/__init__.py +0 -0
  12. eugene_intelligence-0.1.0/eugene/core/fetcher.py +68 -0
  13. eugene_intelligence-0.1.0/eugene/core/response.py +90 -0
  14. eugene_intelligence-0.1.0/eugene/extraction/__init__.py +0 -0
  15. eugene_intelligence-0.1.0/eugene/extraction/llm.py +417 -0
  16. eugene_intelligence-0.1.0/eugene/extraction/parsers/__init__.py +0 -0
  17. eugene_intelligence-0.1.0/eugene/extraction/parsers/employees.py +608 -0
  18. eugene_intelligence-0.1.0/eugene/models/__init__.py +0 -0
  19. eugene_intelligence-0.1.0/eugene/models/base.py +651 -0
  20. eugene_intelligence-0.1.0/eugene/models/sources.py +85 -0
  21. eugene_intelligence-0.1.0/eugene/services/__init__.py +0 -0
  22. eugene_intelligence-0.1.0/eugene/sources/__init__.py +0 -0
  23. eugene_intelligence-0.1.0/eugene/sources/bulk.py +400 -0
  24. eugene_intelligence-0.1.0/eugene/sources/edgar.py +599 -0
  25. eugene_intelligence-0.1.0/eugene/sources/fmp.py +143 -0
  26. eugene_intelligence-0.1.0/eugene/sources/fred.py +197 -0
  27. eugene_intelligence-0.1.0/eugene/sources/government.py +88 -0
  28. eugene_intelligence-0.1.0/eugene/sources/holdings_13f.py +215 -0
  29. eugene_intelligence-0.1.0/eugene/sources/insider.py +224 -0
  30. eugene_intelligence-0.1.0/eugene/sources/parser.py +147 -0
  31. eugene_intelligence-0.1.0/eugene/sources/realtime.py +205 -0
  32. eugene_intelligence-0.1.0/eugene/sources/sec_regulatory.py +150 -0
  33. eugene_intelligence-0.1.0/eugene/sources/thirteen_f.py +456 -0
  34. eugene_intelligence-0.1.0/eugene/sources/transcripts.py +271 -0
  35. eugene_intelligence-0.1.0/eugene/sources/validator.py +442 -0
  36. eugene_intelligence-0.1.0/eugene/sources/xbrl.py +333 -0
  37. eugene_intelligence-0.1.0/eugene/sources/yahoo.py +427 -0
  38. eugene_intelligence-0.1.0/eugene/storage/__init__.py +0 -0
  39. eugene_intelligence-0.1.0/eugene/tools/__init__.py +1 -0
  40. eugene_intelligence-0.1.0/eugene/tools/consolidated_tools.py +565 -0
  41. eugene_intelligence-0.1.0/eugene/tools/institutional.py +600 -0
  42. eugene_intelligence-0.1.0/eugene/tools/mcp_tools.py +197 -0
  43. eugene_intelligence-0.1.0/eugene/utils/__init__.py +0 -0
  44. eugene_intelligence-0.1.0/eugene/validation/__init__.py +0 -0
  45. eugene_intelligence-0.1.0/eugene/validation/engine.py +377 -0
  46. eugene_intelligence-0.1.0/eugene_intelligence.egg-info/PKG-INFO +111 -0
  47. eugene_intelligence-0.1.0/eugene_intelligence.egg-info/SOURCES.txt +50 -0
  48. eugene_intelligence-0.1.0/eugene_intelligence.egg-info/dependency_links.txt +1 -0
  49. eugene_intelligence-0.1.0/eugene_intelligence.egg-info/requires.txt +2 -0
  50. eugene_intelligence-0.1.0/eugene_intelligence.egg-info/top_level.txt +1 -0
  51. eugene_intelligence-0.1.0/pyproject.toml +31 -0
  52. eugene_intelligence-0.1.0/setup.cfg +4 -0
@@ -0,0 +1,111 @@
1
+ Metadata-Version: 2.4
2
+ Name: eugene-intelligence
3
+ Version: 0.1.0
4
+ Summary: Data Infrastructure for AI Agents — SEC, FRED, FMP
5
+ Author-email: Matthew Anyiam <matthew@eugeneintelligence.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/Matthew-Anyiam/eugene-data-labs
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: requests>=2.28.0
14
+ Requires-Dist: feedparser>=6.0.0
15
+
16
+ # Eugene Intelligence
17
+
18
+ **Data Infrastructure for AI Agents**
19
+
20
+ ---
21
+
22
+ ## What is Eugene?
23
+
24
+ Eugene provides verified financial data for AI agents — SEC filings, market data, economic indicators, regulatory news — through one MCP server.
25
+
26
+ Every number traced to source. No hallucination.
27
+
28
+ ---
29
+
30
+ ## Quick Start
31
+
32
+ ### MCP Server (Claude Desktop)
33
+
34
+ Add to your Claude config:
35
+ ```json
36
+ {
37
+ "mcpServers": {
38
+ "eugene": {
39
+ "command": "python",
40
+ "args": ["mcp_server.py"],
41
+ "cwd": "/path/to/eugene"
42
+ }
43
+ }
44
+ }
45
+ ```
46
+
47
+ ### Python
48
+ ```python
49
+ from eugene.tools.institutional import company
50
+
51
+ # Get stock price
52
+ result = company("AAPL", "prices")
53
+ print(result["data"]["price"]["formatted"]) # $275.50
54
+
55
+ # Get SEC financials
56
+ result = company("AAPL", "financials")
57
+ print(result["data"]["revenue"]["formatted"]) # $416.16B
58
+ ```
59
+
60
+ ---
61
+
62
+ ## MCP Tools (4)
63
+
64
+ | Tool | Description | Types |
65
+ |------|-------------|-------|
66
+ | `company` | Company data | prices, profile, financials, health, earnings, insider |
67
+ | `economy_data` | Economic indicators | inflation, employment, gdp, housing, treasury, forex |
68
+ | `regulatory_data` | Government & regulatory | sec_press, fed_speeches, fomc, treasury_debt |
69
+ | `research_report` | AI-powered analysis | equity, credit |
70
+
71
+ ---
72
+
73
+ ## Data Sources
74
+
75
+ - **SEC XBRL** — Financial statements (10-K, 10-Q)
76
+ - **SEC EDGAR** — Insider trades (Form 4), 13F holdings
77
+ - **FRED** — 400K+ economic series
78
+ - **FMP** — Real-time stock prices
79
+ - **Fed RSS** — Speeches, FOMC statements
80
+ - **Treasury** — National debt, yields
81
+
82
+ ---
83
+
84
+ ## Demo
85
+
86
+ Try it: [huggingface.co/spaces/Rex165/eugene-intelligence](https://huggingface.co/spaces/Rex165/eugene-intelligence)
87
+
88
+ ---
89
+
90
+ ## Project Structure
91
+ ```
92
+ eugene/
93
+ ├── eugene/ # Core package
94
+ │ ├── core/ # Response formatting, HTTP client
95
+ │ ├── sources/ # Data sources (SEC, FRED, FMP)
96
+ │ ├── tools/ # MCP tools
97
+ │ └── agents/ # AI research agents
98
+ ├── api/ # REST API (FastAPI)
99
+ ├── mcp_server.py # MCP server entry point
100
+ └── requirements.txt
101
+ ```
102
+
103
+ ---
104
+
105
+ ## Contact
106
+
107
+ [matthew@eugeneintelligence.com](mailto:matthew@eugeneintelligence.com)
108
+
109
+ ---
110
+
111
+ *Built for agents that need to get finance right.*
@@ -0,0 +1,96 @@
1
+ # Eugene Intelligence
2
+
3
+ **Data Infrastructure for AI Agents**
4
+
5
+ ---
6
+
7
+ ## What is Eugene?
8
+
9
+ Eugene provides verified financial data for AI agents — SEC filings, market data, economic indicators, regulatory news — through one MCP server.
10
+
11
+ Every number traced to source. No hallucination.
12
+
13
+ ---
14
+
15
+ ## Quick Start
16
+
17
+ ### MCP Server (Claude Desktop)
18
+
19
+ Add to your Claude config:
20
+ ```json
21
+ {
22
+ "mcpServers": {
23
+ "eugene": {
24
+ "command": "python",
25
+ "args": ["mcp_server.py"],
26
+ "cwd": "/path/to/eugene"
27
+ }
28
+ }
29
+ }
30
+ ```
31
+
32
+ ### Python
33
+ ```python
34
+ from eugene.tools.institutional import company
35
+
36
+ # Get stock price
37
+ result = company("AAPL", "prices")
38
+ print(result["data"]["price"]["formatted"]) # $275.50
39
+
40
+ # Get SEC financials
41
+ result = company("AAPL", "financials")
42
+ print(result["data"]["revenue"]["formatted"]) # $416.16B
43
+ ```
44
+
45
+ ---
46
+
47
+ ## MCP Tools (4)
48
+
49
+ | Tool | Description | Types |
50
+ |------|-------------|-------|
51
+ | `company` | Company data | prices, profile, financials, health, earnings, insider |
52
+ | `economy_data` | Economic indicators | inflation, employment, gdp, housing, treasury, forex |
53
+ | `regulatory_data` | Government & regulatory | sec_press, fed_speeches, fomc, treasury_debt |
54
+ | `research_report` | AI-powered analysis | equity, credit |
55
+
56
+ ---
57
+
58
+ ## Data Sources
59
+
60
+ - **SEC XBRL** — Financial statements (10-K, 10-Q)
61
+ - **SEC EDGAR** — Insider trades (Form 4), 13F holdings
62
+ - **FRED** — 400K+ economic series
63
+ - **FMP** — Real-time stock prices
64
+ - **Fed RSS** — Speeches, FOMC statements
65
+ - **Treasury** — National debt, yields
66
+
67
+ ---
68
+
69
+ ## Demo
70
+
71
+ Try it: [huggingface.co/spaces/Rex165/eugene-intelligence](https://huggingface.co/spaces/Rex165/eugene-intelligence)
72
+
73
+ ---
74
+
75
+ ## Project Structure
76
+ ```
77
+ eugene/
78
+ ├── eugene/ # Core package
79
+ │ ├── core/ # Response formatting, HTTP client
80
+ │ ├── sources/ # Data sources (SEC, FRED, FMP)
81
+ │ ├── tools/ # MCP tools
82
+ │ └── agents/ # AI research agents
83
+ ├── api/ # REST API (FastAPI)
84
+ ├── mcp_server.py # MCP server entry point
85
+ └── requirements.txt
86
+ ```
87
+
88
+ ---
89
+
90
+ ## Contact
91
+
92
+ [matthew@eugeneintelligence.com](mailto:matthew@eugeneintelligence.com)
93
+
94
+ ---
95
+
96
+ *Built for agents that need to get finance right.*
File without changes
File without changes