Spaces:
Running on Zero
Running on Zero
Upload community_contributions/chrys/sources/__init__.py with huggingface_hub
Browse files
community_contributions/chrys/sources/__init__.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from .alpha_vantage import fetch_alpha_vantage
|
| 2 |
+
from .metals_api import fetch_metals
|
| 3 |
+
from .coingecko import fetch_coingecko
|
| 4 |
+
|
| 5 |
+
__all__ = ["fetch_alpha_vantage", "fetch_metals", "fetch_coingecko"]
|