Skip to content

Commit

Permalink
Test line ending identification
Browse files Browse the repository at this point in the history
  • Loading branch information
piiq committed Nov 22, 2023
1 parent c04c5b9 commit 340ab0c
Showing 1 changed file with 121 additions and 121 deletions.
242 changes: 121 additions & 121 deletions openbb_platform/extensions/etf/openbb_etf/etf_router.py
Original file line number Diff line number Diff line change
@@ -1,121 +1,121 @@
"""ETF Router."""

from openbb_core.app.model.command_context import CommandContext
from openbb_core.app.model.obbject import OBBject
from openbb_core.app.provider_interface import (
ExtraParams,
ProviderChoices,
StandardParams,
)
from openbb_core.app.query import Query
from openbb_core.app.router import Router
from pydantic import BaseModel

from openbb_etf.discovery.discovery_router import router as discovery_router

router = Router(prefix="")
router.include_router(discovery_router)

# pylint: disable=unused-argument


@router.command(model="EtfSearch")
def search(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""Search for ETFs.
An empty query returns the full list of ETFs from the provider.
"""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfHistorical")
def historical(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""ETF Historical Market Price."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfInfo")
def info(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""ETF Information Overview."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfSectors")
def sectors(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""ETF Sector weighting."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfCountries")
def countries(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""ETF Country weighting."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="PricePerformance")
def price_performance(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""Price performance as a return, over different periods."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfHoldings")
def holdings(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""Get the holdings for an individual ETF."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfHoldingsDate")
def holdings_date(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""Get the holdings filing date for an individual ETF."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfHoldingsPerformance")
def holdings_performance(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""Get the ETF holdings performance."""
return OBBject(results=Query(**locals()).execute())
"""ETF Router."""

from openbb_core.app.model.command_context import CommandContext
from openbb_core.app.model.obbject import OBBject
from openbb_core.app.provider_interface import (
ExtraParams,
ProviderChoices,
StandardParams,
)
from openbb_core.app.query import Query
from openbb_core.app.router import Router
from pydantic import BaseModel

from openbb_etf.discovery.discovery_router import router as discovery_router

router = Router(prefix="")
router.include_router(discovery_router)

# pylint: disable=unused-argument


@router.command(model="EtfSearch")
def search(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""Search for ETFs.
An empty query returns the full list of ETFs from the provider.
"""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfHistorical")
def historical(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""ETF Historical Market Price."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfInfo")
def info(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""ETF Information Overview."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfSectors")
def sectors(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""ETF Sector weighting."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfCountries")
def countries(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""ETF Country weighting."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="PricePerformance")
def price_performance(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""Price performance as a return, over different periods."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfHoldings")
def holdings(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""Get the holdings for an individual ETF."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfHoldingsDate")
def holdings_date(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""Get the holdings filing date for an individual ETF."""
return OBBject(results=Query(**locals()).execute())


@router.command(model="EtfHoldingsPerformance")
def holdings_performance(
cc: CommandContext,
provider_choices: ProviderChoices,
standard_params: StandardParams,
extra_params: ExtraParams,
) -> OBBject[BaseModel]:
"""Get the ETF holdings performance."""
return OBBject(results=Query(**locals()).execute())

0 comments on commit 340ab0c

Please sign in to comment.