Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add quartodoc documentation page #2

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ fmp_get(resource = "symbol_change", api_version = "v4")

There is an existing Python module that also provide an interface to the FMP API. However, the module lacks flexibility because it provides dedicated functions for specific endpoints, which means that users need to study both the FMP API docs and the package documentation and developers have to create new functions for each new endpoint.

- [fmp-python](https://pypi.org/project/fmp-python/): last comupdated more than 3 years ago.
- [fmp-python](https://pypi.org/project/fmp-python/): last commit more than 3 years ago.

## Contributing

Expand Down
33 changes: 17 additions & 16 deletions fmpapi/fmp_get.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
import httpx
import os
import re
from typing import Optional, Dict, Any, List

def fmp_get(
resource,
symbol=None,
params={},
api_version="v3",
snake_case=True
):
resource: str,
symbol: Optional[str] = None,
params: Dict[str, Any] = {},
api_version: str = "v3",
snake_case: bool = True
) -> pl.DataFrame:
"""
Retrieve Financial Data from the Financial Modeling Prep (FMP) API

Expand Down Expand Up @@ -66,11 +67,11 @@ def fmp_get(
return data_processed

def perform_request(
resource,
base_url="https://financialmodelingprep.com/api/",
api_version="v3",
**kwargs
):
resource: str,
base_url: str = "https://financialmodelingprep.com/api/",
api_version: str = "v3",
**kwargs: Any
) -> List[Dict[str, Any]]:
"""
Perform a GET request to the Financial Modeling Prep (FMP) API.

Expand Down Expand Up @@ -100,7 +101,7 @@ def perform_request(
data = response.json()
return data

def validate_symbol(symbol):
def validate_symbol(symbol: str) -> None:
"""
Validate the provided stock ticker symbol.

Expand All @@ -113,7 +114,7 @@ def validate_symbol(symbol):
if not isinstance(symbol, str) or len(symbol) == 0:
raise ValueError("Please provide a valid symbol.")

def validate_period(period):
def validate_period(period: str) -> None:
"""
Validate the reporting period parameter.

Expand All @@ -126,7 +127,7 @@ def validate_period(period):
if period not in ["annual", "quarter"]:
raise ValueError("Period must be either 'annual' or 'quarter'.")

def validate_limit(limit):
def validate_limit(limit: int) -> None:
"""
Validate the limit parameter for API requests.

Expand All @@ -139,7 +140,7 @@ def validate_limit(limit):
if not isinstance(limit, int) or limit < 1:
raise ValueError("Limit must be an integer larger than 0.")

def convert_column_names(df):
def convert_column_names(df: pl.DataFrame) -> pl.DataFrame:
"""
Convert column names in a Polars DataFrame to snake_case.

Expand All @@ -152,7 +153,7 @@ def convert_column_names(df):
df = df.rename({col: re.sub(r'([a-z])([A-Z])', r'\1_\2', col).lower() for col in df.columns})
return df

def convert_column_types(df):
def convert_column_types(df: pl.DataFrame) -> pl.DataFrame:
"""
Convert column types in a Polars DataFrame.

Expand Down
Loading