openbb-client 0.0.2__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.
- openbb_client-0.0.2/PKG-INFO +140 -0
- openbb_client-0.0.2/README.md +124 -0
- openbb_client-0.0.2/openbb_client/__init__.py +8 -0
- openbb_client-0.0.2/openbb_client/api/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/akshare/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/akshare/akshare_router_business_analysis.py +218 -0
- openbb_client-0.0.2/openbb_client/api/akshare/akshare_router_etf_holdings.py +318 -0
- openbb_client-0.0.2/openbb_client/api/akshare/akshare_router_fund_holdings.py +277 -0
- openbb_client-0.0.2/openbb_client/api/akshare/akshare_router_get_example.py +198 -0
- openbb_client-0.0.2/openbb_client/api/akshare/akshare_router_post_example.py +233 -0
- openbb_client-0.0.2/openbb_client/api/commodity/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/commodity/commodity_petroleum_status_report.py +494 -0
- openbb_client-0.0.2/openbb_client/api/commodity/commodity_psd_data.py +911 -0
- openbb_client-0.0.2/openbb_client/api/commodity/commodity_psd_report.py +253 -0
- openbb_client-0.0.2/openbb_client/api/commodity/commodity_weather_bulletins.py +283 -0
- openbb_client-0.0.2/openbb_client/api/commodity/commodity_weather_bulletins_download.py +242 -0
- openbb_client-0.0.2/openbb_client/api/coverage/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/coverage/get_command_coverage_api_v1_coverage_commands_get.py +85 -0
- openbb_client-0.0.2/openbb_client/api/coverage/get_commands_model_map_api_v1_coverage_command_model_get.py +85 -0
- openbb_client-0.0.2/openbb_client/api/coverage/get_provider_coverage_api_v1_coverage_providers_get.py +85 -0
- openbb_client-0.0.2/openbb_client/api/crypto/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/crypto/crypto_price_historical.py +399 -0
- openbb_client-0.0.2/openbb_client/api/crypto/crypto_search.py +218 -0
- openbb_client-0.0.2/openbb_client/api/currency/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/currency/currency_price_historical.py +404 -0
- openbb_client-0.0.2/openbb_client/api/currency/currency_search.py +256 -0
- openbb_client-0.0.2/openbb_client/api/currency/currency_snapshots.py +282 -0
- openbb_client-0.0.2/openbb_client/api/derivatives/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/derivatives/derivatives_futures_curve.py +240 -0
- openbb_client-0.0.2/openbb_client/api/derivatives/derivatives_futures_historical.py +301 -0
- openbb_client-0.0.2/openbb_client/api/derivatives/derivatives_options_snapshots.py +254 -0
- openbb_client-0.0.2/openbb_client/api/derivatives/derivatives_options_surface.py +487 -0
- openbb_client-0.0.2/openbb_client/api/derivatives/derivatives_options_unusual.py +431 -0
- openbb_client-0.0.2/openbb_client/api/economy/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_available_indicators.py +345 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_balance_of_payments.py +279 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_calendar.py +347 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_central_bank_holdings.py +333 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_composite_leading_indicator.py +346 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_country_profile.py +259 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_cpi.py +361 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_direction_of_trade.py +397 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_export_destinations.py +217 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_fomc_documents.py +360 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_fred_regional.py +710 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_fred_release_table.py +260 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_fred_series.py +535 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_gdp_forecast.py +304 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_gdp_real.py +311 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_house_price_index.py +296 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_indicators.py +583 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_money_measures.py +271 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_pce.py +244 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_primary_dealer_positioning.py +262 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_retail_prices.py +375 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_risk_premium.py +198 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_share_price_index.py +277 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_shipping_chokepoint_info.py +233 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_shipping_chokepoint_volume.py +375 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_shipping_port_info.py +308 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_shipping_port_volume.py +308 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_survey_bls_search.py +406 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_survey_bls_series.py +323 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_survey_economic_conditions_chicago.py +434 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_survey_manufacturing_outlook_ny.py +506 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_survey_manufacturing_outlook_texas.py +437 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_survey_nonfarm_payrolls.py +240 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_survey_sloos.py +325 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_survey_university_of_michigan.py +434 -0
- openbb_client-0.0.2/openbb_client/api/economy/economy_unemployment.py +330 -0
- openbb_client-0.0.2/openbb_client/api/equity/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_calendar_dividend.py +247 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_calendar_earnings.py +247 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_calendar_events.py +243 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_calendar_ipo.py +360 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_calendar_splits.py +243 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_compare_company_facts.py +378 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_compare_peers.py +225 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_discovery_active.py +248 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_discovery_aggressive_small_caps.py +246 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_discovery_filings.py +315 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_discovery_gainers.py +248 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_discovery_growth_tech.py +246 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_discovery_latest_financial_reports.py +253 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_discovery_losers.py +248 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_discovery_undervalued_growth.py +246 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_discovery_undervalued_large_caps.py +246 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_estimates_analyst_search.py +374 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_estimates_consensus.py +248 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_estimates_forward_ebitda.py +339 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_estimates_forward_eps.py +399 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_estimates_forward_pe.py +222 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_estimates_forward_sales.py +330 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_estimates_historical.py +280 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_estimates_price_target.py +529 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_balance.py +655 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_balance_growth.py +252 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_cash.py +675 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_cash_growth.py +252 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_dividends.py +288 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_employee_count.py +282 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_esg_score.py +217 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_filings.py +423 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_historical_attributes.py +403 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_historical_eps.py +241 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_historical_splits.py +213 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_income.py +680 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_income_growth.py +252 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_latest_attributes.py +236 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_management.py +215 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_management_compensation.py +236 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_management_discussion_analysis.py +385 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_metrics.py +337 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_ratios.py +346 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_reported_financials.py +317 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_revenue_per_geography.py +232 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_revenue_per_segment.py +232 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_search_attributes.py +233 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_trailing_dividend_yield.py +237 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_fundamental_transcript.py +260 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_historical_market_cap.py +288 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_market_snapshots.py +257 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_ownership_form_13f.py +300 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_ownership_government_trades.py +261 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_ownership_insider_trading.py +441 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_ownership_institutional.py +265 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_ownership_major_holders.py +309 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_ownership_share_statistics.py +219 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_price_historical.py +624 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_price_nbbo.py +415 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_price_performance.py +223 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_price_quote.py +266 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_profile.py +242 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_screener.py +698 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_search.py +319 -0
- openbb_client-0.0.2/openbb_client/api/equity/equity_shorts_fails_to_deliver.py +305 -0
- openbb_client-0.0.2/openbb_client/api/etf/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/etf/etf_countries.py +217 -0
- openbb_client-0.0.2/openbb_client/api/etf/etf_equity_exposure.py +217 -0
- openbb_client-0.0.2/openbb_client/api/etf/etf_historical.py +581 -0
- openbb_client-0.0.2/openbb_client/api/etf/etf_holdings.py +318 -0
- openbb_client-0.0.2/openbb_client/api/etf/etf_info.py +219 -0
- openbb_client-0.0.2/openbb_client/api/etf/etf_nport_disclosure.py +282 -0
- openbb_client-0.0.2/openbb_client/api/etf/etf_search.py +305 -0
- openbb_client-0.0.2/openbb_client/api/etf/etf_sectors.py +217 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_bond_indices.py +613 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_corporate_commercial_paper.py +524 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_corporate_hqm.py +260 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_corporate_spot_rates.py +310 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_government_tips_yields.py +473 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_government_treasury_auctions.py +348 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_government_treasury_prices.py +274 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_government_treasury_rates.py +245 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_government_yield_curve.py +305 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_mortgage_indices.py +475 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_rate_ameribor.py +479 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_rate_dpcredit.py +286 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_rate_ecb.py +294 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_rate_effr.py +473 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_rate_effr_forecast.py +237 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_rate_estr.py +572 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_rate_iorb.py +271 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_rate_overnight_bank_funding.py +468 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_rate_sofr.py +450 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_rate_sonia.py +282 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_spreads_tcm.py +298 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_spreads_tcm_effr.py +298 -0
- openbb_client-0.0.2/openbb_client/api/fixedincome/fixedincome_spreads_treasury_effr.py +304 -0
- openbb_client-0.0.2/openbb_client/api/imf_utils/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/imf_utils/imf_get_dataflow_dimensions.py +225 -0
- openbb_client-0.0.2/openbb_client/api/imf_utils/imf_list_dataflow_choices.py +165 -0
- openbb_client-0.0.2/openbb_client/api/imf_utils/imf_list_dataflows.py +210 -0
- openbb_client-0.0.2/openbb_client/api/imf_utils/imf_list_port_id_choices.py +165 -0
- openbb_client-0.0.2/openbb_client/api/imf_utils/imf_list_table_choices.py +165 -0
- openbb_client-0.0.2/openbb_client/api/imf_utils/imf_list_tables.py +160 -0
- openbb_client-0.0.2/openbb_client/api/imf_utils/imf_presentation_table.py +342 -0
- openbb_client-0.0.2/openbb_client/api/imf_utils/imf_presentation_table_choices.py +288 -0
- openbb_client-0.0.2/openbb_client/api/index/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/index/index_available.py +200 -0
- openbb_client-0.0.2/openbb_client/api/index/index_constituents.py +232 -0
- openbb_client-0.0.2/openbb_client/api/index/index_price_historical.py +365 -0
- openbb_client-0.0.2/openbb_client/api/news/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/regulators/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/regulators/regulators_cftc_cot.py +381 -0
- openbb_client-0.0.2/openbb_client/api/regulators/regulators_cftc_cot_search.py +221 -0
- openbb_client-0.0.2/openbb_client/api/regulators/regulators_sec_cik_map.py +237 -0
- openbb_client-0.0.2/openbb_client/api/regulators/regulators_sec_filing_headers.py +248 -0
- openbb_client-0.0.2/openbb_client/api/regulators/regulators_sec_htm_file.py +232 -0
- openbb_client-0.0.2/openbb_client/api/regulators/regulators_sec_institutions_search.py +237 -0
- openbb_client-0.0.2/openbb_client/api/regulators/regulators_sec_rss_litigation.py +202 -0
- openbb_client-0.0.2/openbb_client/api/regulators/regulators_sec_schema_files.py +261 -0
- openbb_client-0.0.2/openbb_client/api/regulators/regulators_sec_sic_search.py +241 -0
- openbb_client-0.0.2/openbb_client/api/regulators/regulators_sec_symbol_map.py +237 -0
- openbb_client-0.0.2/openbb_client/api/uscongress/__init__.py +1 -0
- openbb_client-0.0.2/openbb_client/api/uscongress/congress_gov_router_bill_info.py +262 -0
- openbb_client-0.0.2/openbb_client/api/uscongress/congress_gov_router_bill_text.py +291 -0
- openbb_client-0.0.2/openbb_client/api/uscongress/congress_gov_router_bill_text_urls.py +251 -0
- openbb_client-0.0.2/openbb_client/api/uscongress/congress_gov_router_bills.py +618 -0
- openbb_client-0.0.2/openbb_client/client.py +268 -0
- openbb_client-0.0.2/openbb_client/errors.py +16 -0
- openbb_client-0.0.2/openbb_client/models/__init__.py +1845 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_available_indices_data.py +156 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_balance_sheet_data.py +166 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_cash_flow_statement_data.py +166 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_company_news_data.py +202 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_currency_historical_data.py +230 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_currency_snapshots_data.py +243 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_equity_historical_data.py +218 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_equity_profile_data.py +1136 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_equity_quote_data.py +823 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_equity_screener_data.py +124 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_equity_search_data.py +94 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_etf_search_data.py +84 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_historical_dividends_data.py +205 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_income_statement_data.py +166 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_key_metrics_data.py +176 -0
- openbb_client-0.0.2/openbb_client/models/ak_share_price_performance_data.py +394 -0
- openbb_client-0.0.2/openbb_client/models/akshare_business_analysis_data.py +289 -0
- openbb_client-0.0.2/openbb_client/models/akshare_etf_holdings_data.py +174 -0
- openbb_client-0.0.2/openbb_client/models/akshare_fund_holdings_data.py +174 -0
- openbb_client-0.0.2/openbb_client/models/akshare_router_etf_holdings_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/akshare_router_post_example_data.py +47 -0
- openbb_client-0.0.2/openbb_client/models/benzinga_analyst_search_data.py +1206 -0
- openbb_client-0.0.2/openbb_client/models/benzinga_company_news_data.py +280 -0
- openbb_client-0.0.2/openbb_client/models/benzinga_price_target_data.py +580 -0
- openbb_client-0.0.2/openbb_client/models/benzinga_price_target_data_action_change_type_0.py +13 -0
- openbb_client-0.0.2/openbb_client/models/benzinga_price_target_data_action_type_0.py +18 -0
- openbb_client-0.0.2/openbb_client/models/benzinga_price_target_data_importance_type_0.py +13 -0
- openbb_client-0.0.2/openbb_client/models/benzinga_world_news_data.py +292 -0
- openbb_client-0.0.2/openbb_client/models/bls_search_data.py +104 -0
- openbb_client-0.0.2/openbb_client/models/bls_series_data.py +314 -0
- openbb_client-0.0.2/openbb_client/models/body_derivatives_options_surface.py +138 -0
- openbb_client-0.0.2/openbb_client/models/body_derivatives_options_surface_chart_params_type_0.py +47 -0
- openbb_client-0.0.2/openbb_client/models/cftc_cot_data.py +368 -0
- openbb_client-0.0.2/openbb_client/models/cftc_cot_search_data.py +172 -0
- openbb_client-0.0.2/openbb_client/models/chart.py +133 -0
- openbb_client-0.0.2/openbb_client/models/chart_content_type_0.py +47 -0
- openbb_client-0.0.2/openbb_client/models/commodity_petroleum_status_report_eia.py +20 -0
- openbb_client-0.0.2/openbb_client/models/commodity_price_spot_fred.py +20 -0
- openbb_client-0.0.2/openbb_client/models/commodity_price_spot_frequency_type_0.py +21 -0
- openbb_client-0.0.2/openbb_client/models/commodity_short_term_energy_outlook_eia.py +33 -0
- openbb_client-0.0.2/openbb_client/models/commodity_weather_bulletins_download_body_type_1.py +47 -0
- openbb_client-0.0.2/openbb_client/models/congress_bill_info_data.py +76 -0
- openbb_client-0.0.2/openbb_client/models/congress_bill_info_data_raw_data.py +47 -0
- openbb_client-0.0.2/openbb_client/models/congress_bills_data.py +202 -0
- openbb_client-0.0.2/openbb_client/models/congress_gov_router_bill_text_body_type_2.py +54 -0
- openbb_client-0.0.2/openbb_client/models/crypto_price_historical_interval_type_0.py +11 -0
- openbb_client-0.0.2/openbb_client/models/crypto_price_historical_interval_type_2.py +18 -0
- openbb_client-0.0.2/openbb_client/models/crypto_price_historical_interval_type_3.py +20 -0
- openbb_client-0.0.2/openbb_client/models/crypto_price_historical_polygon.py +9 -0
- openbb_client-0.0.2/openbb_client/models/crypto_price_historical_provider.py +11 -0
- openbb_client-0.0.2/openbb_client/models/currency_price_historical_interval_type_0.py +14 -0
- openbb_client-0.0.2/openbb_client/models/currency_price_historical_interval_type_1.py +11 -0
- openbb_client-0.0.2/openbb_client/models/currency_price_historical_interval_type_3.py +18 -0
- openbb_client-0.0.2/openbb_client/models/currency_price_historical_interval_type_4.py +20 -0
- openbb_client-0.0.2/openbb_client/models/currency_price_historical_polygon.py +9 -0
- openbb_client-0.0.2/openbb_client/models/currency_price_historical_provider.py +12 -0
- openbb_client-0.0.2/openbb_client/models/currency_search_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/currency_snapshots_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/currency_snapshots_quote_type.py +9 -0
- openbb_client-0.0.2/openbb_client/models/data.py +89 -0
- openbb_client-0.0.2/openbb_client/models/derivatives_options_chains_intrinio.py +10 -0
- openbb_client-0.0.2/openbb_client/models/derivatives_options_chains_option_type_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/derivatives_options_chains_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/derivatives_options_surface_option_type_type_0.py +11 -0
- openbb_client-0.0.2/openbb_client/models/derivatives_options_surface_theme.py +9 -0
- openbb_client-0.0.2/openbb_client/models/derivatives_options_unusual_sentiment_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/derivatives_options_unusual_trade_type_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/econ_db_available_indicators_data.py +353 -0
- openbb_client-0.0.2/openbb_client/models/econ_db_country_profile_data.py +325 -0
- openbb_client-0.0.2/openbb_client/models/econ_db_economic_indicators_data.py +166 -0
- openbb_client-0.0.2/openbb_client/models/econ_db_export_destinations_data.py +112 -0
- openbb_client-0.0.2/openbb_client/models/econ_db_gdp_nominal_data.py +103 -0
- openbb_client-0.0.2/openbb_client/models/econ_db_gdp_real_data.py +103 -0
- openbb_client-0.0.2/openbb_client/models/econ_db_port_volume_data.py +212 -0
- openbb_client-0.0.2/openbb_client/models/econ_db_yield_curve_data.py +110 -0
- openbb_client-0.0.2/openbb_client/models/economy_available_indicators_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_balance_of_payments_fred.py +55 -0
- openbb_client-0.0.2/openbb_client/models/economy_calendar_group_type_0.py +20 -0
- openbb_client-0.0.2/openbb_client/models/economy_calendar_importance_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/economy_calendar_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_composite_leading_indicator_country_type_0.py +30 -0
- openbb_client-0.0.2/openbb_client/models/economy_cpi_frequency.py +10 -0
- openbb_client-0.0.2/openbb_client/models/economy_cpi_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/economy_fomc_documents_response_200_type_1.py +47 -0
- openbb_client-0.0.2/openbb_client/models/economy_fred_regional_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/economy_fred_regional_frequency_type_0.py +21 -0
- openbb_client-0.0.2/openbb_client/models/economy_fred_regional_region_type_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/economy_fred_regional_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/economy_fred_search_fred.py +10 -0
- openbb_client-0.0.2/openbb_client/models/economy_fred_series_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/economy_fred_series_frequency_type_0.py +21 -0
- openbb_client-0.0.2/openbb_client/models/economy_fred_series_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_fred_series_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/economy_gdp_nominal_oecd.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_gdp_nominal_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_gdp_real_oecd.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_gdp_real_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_indicators_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_interest_rates_oecd.py +10 -0
- openbb_client-0.0.2/openbb_client/models/economy_primary_dealer_fails_federal_reserve.py +13 -0
- openbb_client-0.0.2/openbb_client/models/economy_retail_prices_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/economy_shipping_chokepoint_info_theme_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_shipping_port_info_continent_type_0.py +12 -0
- openbb_client-0.0.2/openbb_client/models/economy_shipping_port_info_country_type_0.py +187 -0
- openbb_client-0.0.2/openbb_client/models/economy_shipping_port_volume_country_type_0.py +187 -0
- openbb_client-0.0.2/openbb_client/models/economy_shipping_port_volume_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_bls_search_category_type_0.py +20 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_economic_conditions_chicago_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_economic_conditions_chicago_frequency_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_economic_conditions_chicago_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_manufacturing_outlook_ny_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_manufacturing_outlook_ny_frequency_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_manufacturing_outlook_ny_topic_type_0.py +18 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_manufacturing_outlook_ny_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_manufacturing_outlook_texas_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_manufacturing_outlook_texas_frequency_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_manufacturing_outlook_texas_topic_type_0.py +21 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_manufacturing_outlook_texas_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_sloos_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_university_of_michigan_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_university_of_michigan_frequency_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/economy_survey_university_of_michigan_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/eia_petroleum_status_report_data.py +160 -0
- openbb_client-0.0.2/openbb_client/models/eia_short_term_energy_outlook_data.py +166 -0
- openbb_client-0.0.2/openbb_client/models/equity_calendar_ipo_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_calendar_ipo_status_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_compare_company_facts_fact_type_1.py +352 -0
- openbb_client-0.0.2/openbb_client/models/equity_compare_company_facts_fiscal_period_type_0.py +12 -0
- openbb_client-0.0.2/openbb_client/models/equity_discovery_active_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_discovery_active_sort.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_discovery_aggressive_small_caps_sort.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_discovery_gainers_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_discovery_gainers_sort.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_discovery_growth_tech_sort.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_discovery_losers_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_discovery_losers_sort.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_discovery_undervalued_growth_sort.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_discovery_undervalued_large_caps_sort.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_estimates_consensus_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_estimates_forward_ebitda_estimate_type_type_0.py +12 -0
- openbb_client-0.0.2/openbb_client/models/equity_estimates_forward_ebitda_fiscal_period_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_estimates_forward_ebitda_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_estimates_forward_eps_calendar_period_type_0.py +11 -0
- openbb_client-0.0.2/openbb_client/models/equity_estimates_forward_eps_fiscal_period_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_estimates_forward_eps_fiscal_period_type_1.py +12 -0
- openbb_client-0.0.2/openbb_client/models/equity_estimates_forward_eps_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_estimates_forward_sales_calendar_period_type_0.py +11 -0
- openbb_client-0.0.2/openbb_client/models/equity_estimates_forward_sales_fiscal_period_type_0.py +12 -0
- openbb_client-0.0.2/openbb_client/models/equity_estimates_price_target_action_type_0.py +18 -0
- openbb_client-0.0.2/openbb_client/models/equity_estimates_price_target_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_balance_order_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_balance_period_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_balance_period_type_1.py +15 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_balance_provider.py +12 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_balance_sort_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_cash_order_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_cash_period_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_cash_period_type_1.py +15 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_cash_period_type_2.py +11 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_cash_period_type_3.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_cash_provider.py +12 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_cash_sort_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_dividends_provider.py +11 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_filings_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_historical_attributes_frequency_type_0.py +12 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_historical_attributes_sort_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_income_order_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_income_period_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_income_period_type_1.py +15 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_income_period_type_2.py +11 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_income_period_type_3.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_income_provider.py +12 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_income_sort_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_management_discussion_analysis_calendar_period_type_0.py +11 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_management_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_metrics_fmp.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_metrics_period_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_metrics_period_type_1.py +14 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_metrics_provider.py +11 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_ratios_fmp.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_ratios_period_type_0.py +14 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_ratios_period_type_1.py +11 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_ratios_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_reported_financials_statement_type_type_1.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_fundamental_transcript_quarter_type_0.py +11 -0
- openbb_client-0.0.2/openbb_client/models/equity_historical_market_cap_intrinio.py +12 -0
- openbb_client-0.0.2/openbb_client/models/equity_historical_market_cap_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_market_snapshots_fmp.py +70 -0
- openbb_client-0.0.2/openbb_client/models/equity_market_snapshots_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_ownership_insider_trading_ownership_type_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_ownership_insider_trading_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_ownership_insider_trading_sort_by_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_ownership_insider_trading_transaction_type_type_0.py +25 -0
- openbb_client-0.0.2/openbb_client/models/equity_ownership_share_statistics_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_historical_adjustment_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_historical_adjustment_type_1.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_historical_adjustment_type_2.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_historical_akshare.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_historical_interval_type_0.py +14 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_historical_interval_type_1.py +19 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_historical_interval_type_3.py +19 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_historical_interval_type_4.py +20 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_historical_intrinio.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_historical_polygon.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_historical_provider.py +13 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_performance_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_quote_intrinio.py +16 -0
- openbb_client-0.0.2/openbb_client/models/equity_price_quote_provider.py +11 -0
- openbb_client-0.0.2/openbb_client/models/equity_profile_provider.py +11 -0
- openbb_client-0.0.2/openbb_client/models/equity_screener_country_type_0.py +124 -0
- openbb_client-0.0.2/openbb_client/models/equity_screener_exchange_type_1.py +62 -0
- openbb_client-0.0.2/openbb_client/models/equity_screener_exchange_type_2.py +83 -0
- openbb_client-0.0.2/openbb_client/models/equity_screener_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/equity_screener_sector_type_1.py +21 -0
- openbb_client-0.0.2/openbb_client/models/equity_screener_sector_type_2.py +18 -0
- openbb_client-0.0.2/openbb_client/models/equity_search_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/etf_historical_adjustment_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/etf_historical_adjustment_type_1.py +9 -0
- openbb_client-0.0.2/openbb_client/models/etf_historical_adjustment_type_2.py +9 -0
- openbb_client-0.0.2/openbb_client/models/etf_historical_interval_type_0.py +14 -0
- openbb_client-0.0.2/openbb_client/models/etf_historical_interval_type_1.py +19 -0
- openbb_client-0.0.2/openbb_client/models/etf_historical_interval_type_3.py +19 -0
- openbb_client-0.0.2/openbb_client/models/etf_historical_interval_type_4.py +20 -0
- openbb_client-0.0.2/openbb_client/models/etf_historical_intrinio.py +10 -0
- openbb_client-0.0.2/openbb_client/models/etf_historical_polygon.py +9 -0
- openbb_client-0.0.2/openbb_client/models/etf_historical_provider.py +12 -0
- openbb_client-0.0.2/openbb_client/models/etf_holdings_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/etf_info_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/etf_nport_disclosure_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/etf_price_performance_intrinio.py +9 -0
- openbb_client-0.0.2/openbb_client/models/etf_price_performance_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/etf_search_exchange_type_0.py +12 -0
- openbb_client-0.0.2/openbb_client/models/etf_search_exchange_type_1.py +27 -0
- openbb_client-0.0.2/openbb_client/models/etf_search_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/federal_reserve_central_bank_holdings_data.py +552 -0
- openbb_client-0.0.2/openbb_client/models/federal_reserve_federal_funds_rate_data.py +294 -0
- openbb_client-0.0.2/openbb_client/models/federal_reserve_money_measures_data.py +184 -0
- openbb_client-0.0.2/openbb_client/models/federal_reserve_overnight_bank_funding_rate_data.py +194 -0
- openbb_client-0.0.2/openbb_client/models/federal_reserve_primary_dealer_fails_data.py +93 -0
- openbb_client-0.0.2/openbb_client/models/federal_reserve_primary_dealer_positioning_data.py +96 -0
- openbb_client-0.0.2/openbb_client/models/federal_reserve_sofr_data.py +174 -0
- openbb_client-0.0.2/openbb_client/models/federal_reserve_treasury_rates_data.py +326 -0
- openbb_client-0.0.2/openbb_client/models/federal_reserve_yield_curve_data.py +110 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_bond_indices_frequency_type_0.py +21 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_bond_indices_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_corporate_commercial_paper_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_corporate_commercial_paper_category_type_1.py +12 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_corporate_commercial_paper_frequency_type_0.py +20 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_corporate_commercial_paper_maturity_type_1.py +14 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_corporate_commercial_paper_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_government_tips_yields_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_government_tips_yields_frequency_type_0.py +21 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_government_tips_yields_maturity_type_0.py +11 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_government_tips_yields_transform_type_0.py +14 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_government_treasury_auctions_security_type_type_0.py +13 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_government_treasury_prices_security_type_type_0.py +12 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_government_treasury_rates_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_government_yield_curve_fred.py +13 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_government_yield_curve_provider.py +11 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_mortgage_indices_frequency_type_0.py +21 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_mortgage_indices_index_type_0.py +27 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_mortgage_indices_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_ameribor_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_ameribor_frequency_type_0.py +20 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_ameribor_maturity_type_0.py +13 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_ameribor_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_effr_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_effr_frequency_type_0.py +20 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_effr_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_effr_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_estr_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_estr_frequency_type_0.py +20 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_estr_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_overnight_bank_funding_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_overnight_bank_funding_frequency_type_0.py +20 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_overnight_bank_funding_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_overnight_bank_funding_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_sofr_aggregation_method_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_sofr_frequency_type_0.py +20 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_sofr_provider.py +9 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_rate_sofr_transform_type_0.py +15 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_spreads_tcm_effr_maturity_type_0.py +12 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_spreads_tcm_maturity_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/fixedincome_spreads_treasury_effr_maturity_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/fmp_analyst_estimates_data.py +478 -0
- openbb_client-0.0.2/openbb_client/models/fmp_available_indices_data.py +124 -0
- openbb_client-0.0.2/openbb_client/models/fmp_balance_sheet_data.py +1350 -0
- openbb_client-0.0.2/openbb_client/models/fmp_balance_sheet_growth_data.py +1161 -0
- openbb_client-0.0.2/openbb_client/models/fmp_calendar_dividend_data.py +265 -0
- openbb_client-0.0.2/openbb_client/models/fmp_calendar_earnings_data.py +224 -0
- openbb_client-0.0.2/openbb_client/models/fmp_calendar_events_data.py +204 -0
- openbb_client-0.0.2/openbb_client/models/fmp_calendar_ipo_data.py +257 -0
- openbb_client-0.0.2/openbb_client/models/fmp_calendar_splits_data.py +88 -0
- openbb_client-0.0.2/openbb_client/models/fmp_cash_flow_statement_data.py +1052 -0
- openbb_client-0.0.2/openbb_client/models/fmp_cash_flow_statement_growth_data.py +921 -0
- openbb_client-0.0.2/openbb_client/models/fmp_company_filings_data.py +184 -0
- openbb_client-0.0.2/openbb_client/models/fmp_company_news_data.py +190 -0
- openbb_client-0.0.2/openbb_client/models/fmp_crypto_historical_data.py +234 -0
- openbb_client-0.0.2/openbb_client/models/fmp_crypto_search_data.py +176 -0
- openbb_client-0.0.2/openbb_client/models/fmp_currency_historical_data.py +234 -0
- openbb_client-0.0.2/openbb_client/models/fmp_currency_pairs_data.py +116 -0
- openbb_client-0.0.2/openbb_client/models/fmp_currency_snapshots_data.py +355 -0
- openbb_client-0.0.2/openbb_client/models/fmp_discovery_filings_data.py +112 -0
- openbb_client-0.0.2/openbb_client/models/fmp_earnings_call_transcript_data.py +96 -0
- openbb_client-0.0.2/openbb_client/models/fmp_economic_calendar_data.py +349 -0
- openbb_client-0.0.2/openbb_client/models/fmp_equity_active_data.py +136 -0
- openbb_client-0.0.2/openbb_client/models/fmp_equity_historical_data.py +198 -0
- openbb_client-0.0.2/openbb_client/models/fmp_equity_ownership_data.py +498 -0
- openbb_client-0.0.2/openbb_client/models/fmp_equity_peers_data.py +112 -0
- openbb_client-0.0.2/openbb_client/models/fmp_equity_profile_data.py +1069 -0
- openbb_client-0.0.2/openbb_client/models/fmp_equity_quote_data.py +883 -0
- openbb_client-0.0.2/openbb_client/models/fmp_equity_screener_data.py +344 -0
- openbb_client-0.0.2/openbb_client/models/fmp_esg_score_data.py +221 -0
- openbb_client-0.0.2/openbb_client/models/fmp_etf_countries_data.py +92 -0
- openbb_client-0.0.2/openbb_client/models/fmp_etf_equity_exposure_data.py +132 -0
- openbb_client-0.0.2/openbb_client/models/fmp_etf_holdings_data.py +236 -0
- openbb_client-0.0.2/openbb_client/models/fmp_etf_info_data.py +400 -0
- openbb_client-0.0.2/openbb_client/models/fmp_etf_search_data.py +244 -0
- openbb_client-0.0.2/openbb_client/models/fmp_etf_sectors_data.py +92 -0
- openbb_client-0.0.2/openbb_client/models/fmp_executive_compensation_data.py +366 -0
- openbb_client-0.0.2/openbb_client/models/fmp_financial_ratios_data.py +1364 -0
- openbb_client-0.0.2/openbb_client/models/fmp_forward_ebitda_estimates_data.py +346 -0
- openbb_client-0.0.2/openbb_client/models/fmp_forward_eps_estimates_data.py +294 -0
- openbb_client-0.0.2/openbb_client/models/fmp_gainers_data.py +136 -0
- openbb_client-0.0.2/openbb_client/models/fmp_government_trades_data.py +285 -0
- openbb_client-0.0.2/openbb_client/models/fmp_government_trades_data_chamber.py +9 -0
- openbb_client-0.0.2/openbb_client/models/fmp_historical_dividends_data.py +233 -0
- openbb_client-0.0.2/openbb_client/models/fmp_historical_employees_data.py +154 -0
- openbb_client-0.0.2/openbb_client/models/fmp_historical_eps_data.py +184 -0
- openbb_client-0.0.2/openbb_client/models/fmp_historical_market_cap_data.py +84 -0
- openbb_client-0.0.2/openbb_client/models/fmp_historical_splits_data.py +126 -0
- openbb_client-0.0.2/openbb_client/models/fmp_income_statement_data.py +866 -0
- openbb_client-0.0.2/openbb_client/models/fmp_income_statement_growth_data.py +755 -0
- openbb_client-0.0.2/openbb_client/models/fmp_index_constituents_data.py +316 -0
- openbb_client-0.0.2/openbb_client/models/fmp_index_historical_data.py +266 -0
- openbb_client-0.0.2/openbb_client/models/fmp_insider_trading_data.py +626 -0
- openbb_client-0.0.2/openbb_client/models/fmp_institutional_ownership_data.py +399 -0
- openbb_client-0.0.2/openbb_client/models/fmp_key_executives_data.py +152 -0
- openbb_client-0.0.2/openbb_client/models/fmp_key_metrics_data.py +1005 -0
- openbb_client-0.0.2/openbb_client/models/fmp_losers_data.py +136 -0
- openbb_client-0.0.2/openbb_client/models/fmp_market_snapshots_data.py +406 -0
- openbb_client-0.0.2/openbb_client/models/fmp_nport_disclosure_data.py +566 -0
- openbb_client-0.0.2/openbb_client/models/fmp_price_performance_data.py +394 -0
- openbb_client-0.0.2/openbb_client/models/fmp_price_target_consensus_data.py +164 -0
- openbb_client-0.0.2/openbb_client/models/fmp_price_target_data.py +414 -0
- openbb_client-0.0.2/openbb_client/models/fmp_revenue_business_line_data.py +168 -0
- openbb_client-0.0.2/openbb_client/models/fmp_revenue_geographic_data.py +168 -0
- openbb_client-0.0.2/openbb_client/models/fmp_risk_premium_data.py +124 -0
- openbb_client-0.0.2/openbb_client/models/fmp_share_statistics_data.py +186 -0
- openbb_client-0.0.2/openbb_client/models/fmp_treasury_rates_data.py +326 -0
- openbb_client-0.0.2/openbb_client/models/fmp_world_news_data.py +182 -0
- openbb_client-0.0.2/openbb_client/models/fmp_yield_curve_data.py +110 -0
- openbb_client-0.0.2/openbb_client/models/fred_ameribor_data.py +122 -0
- openbb_client-0.0.2/openbb_client/models/fred_balance_of_payments_data.py +491 -0
- openbb_client-0.0.2/openbb_client/models/fred_bond_indices_data.py +123 -0
- openbb_client-0.0.2/openbb_client/models/fred_commercial_paper_data.py +131 -0
- openbb_client-0.0.2/openbb_client/models/fred_commercial_paper_data_asset_type.py +11 -0
- openbb_client-0.0.2/openbb_client/models/fred_commodity_spot_prices_data.py +134 -0
- openbb_client-0.0.2/openbb_client/models/fred_consumer_price_index_data.py +80 -0
- openbb_client-0.0.2/openbb_client/models/fred_discount_window_primary_credit_rate_data.py +78 -0
- openbb_client-0.0.2/openbb_client/models/fred_euro_short_term_rate_data.py +195 -0
- openbb_client-0.0.2/openbb_client/models/fred_european_central_bank_interest_rates_data.py +78 -0
- openbb_client-0.0.2/openbb_client/models/fred_federal_funds_rate_data.py +214 -0
- openbb_client-0.0.2/openbb_client/models/fred_high_quality_market_corporate_bond_data.py +80 -0
- openbb_client-0.0.2/openbb_client/models/fred_manufacturing_outlook_ny_data.py +169 -0
- openbb_client-0.0.2/openbb_client/models/fred_manufacturing_outlook_texas_data.py +169 -0
- openbb_client-0.0.2/openbb_client/models/fred_mortgage_indices_data.py +114 -0
- openbb_client-0.0.2/openbb_client/models/fred_non_farm_payrolls_data.py +134 -0
- openbb_client-0.0.2/openbb_client/models/fred_overnight_bank_funding_rate_data.py +174 -0
- openbb_client-0.0.2/openbb_client/models/fred_personal_consumption_expenditures_data.py +142 -0
- openbb_client-0.0.2/openbb_client/models/fred_regional_data.py +115 -0
- openbb_client-0.0.2/openbb_client/models/fred_release_table_data.py +266 -0
- openbb_client-0.0.2/openbb_client/models/fred_retail_prices_data.py +155 -0
- openbb_client-0.0.2/openbb_client/models/fred_search_data.py +547 -0
- openbb_client-0.0.2/openbb_client/models/fred_selected_treasury_bill_data.py +78 -0
- openbb_client-0.0.2/openbb_client/models/fred_selected_treasury_constant_maturity_data.py +78 -0
- openbb_client-0.0.2/openbb_client/models/fred_senior_loan_officer_survey_data.py +108 -0
- openbb_client-0.0.2/openbb_client/models/fred_series_data.py +64 -0
- openbb_client-0.0.2/openbb_client/models/fred_spot_rate_data.py +78 -0
- openbb_client-0.0.2/openbb_client/models/fred_survey_of_economic_conditions_chicago_data.py +248 -0
- openbb_client-0.0.2/openbb_client/models/fred_tips_yields_data.py +145 -0
- openbb_client-0.0.2/openbb_client/models/fred_treasury_constant_maturity_data.py +78 -0
- openbb_client-0.0.2/openbb_client/models/fred_uof_michigan_data.py +107 -0
- openbb_client-0.0.2/openbb_client/models/fred_yield_curve_data.py +110 -0
- openbb_client-0.0.2/openbb_client/models/frediorb_data.py +78 -0
- openbb_client-0.0.2/openbb_client/models/fredprojection_data.py +162 -0
- openbb_client-0.0.2/openbb_client/models/fredsofr_data.py +254 -0
- openbb_client-0.0.2/openbb_client/models/fredsonia_data.py +78 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data.py +2745 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_back_dated_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_callable_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_cash_management_bill_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_competitive_tenders_accepted_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_fima_included_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_floating_rate_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_non_competitive_tenders_accepted_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_reopening_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_security_type.py +13 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_soma_included_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_strippable_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_tips_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/governement_us_treasury_auctions_data_treasury_retail_tenders_accepted_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/government_us_commodity_psd_data.py +194 -0
- openbb_client-0.0.2/openbb_client/models/government_us_treasury_prices_data.py +438 -0
- openbb_client-0.0.2/openbb_client/models/http_validation_error.py +79 -0
- openbb_client-0.0.2/openbb_client/models/imf_available_indicators_data.py +255 -0
- openbb_client-0.0.2/openbb_client/models/imf_consumer_price_index_data.py +154 -0
- openbb_client-0.0.2/openbb_client/models/imf_direction_of_trade_data.py +223 -0
- openbb_client-0.0.2/openbb_client/models/imf_economic_indicators_data.py +326 -0
- openbb_client-0.0.2/openbb_client/models/imf_list_dataflow_choices_response_200_item.py +47 -0
- openbb_client-0.0.2/openbb_client/models/imf_list_port_id_choices_response_200_item.py +47 -0
- openbb_client-0.0.2/openbb_client/models/imf_list_table_choices_response_200_item.py +47 -0
- openbb_client-0.0.2/openbb_client/models/imf_maritime_choke_point_info_data.py +208 -0
- openbb_client-0.0.2/openbb_client/models/imf_maritime_choke_point_volume_data.py +199 -0
- openbb_client-0.0.2/openbb_client/models/imf_port_info_data.py +258 -0
- openbb_client-0.0.2/openbb_client/models/imf_port_volume_data.py +306 -0
- openbb_client-0.0.2/openbb_client/models/imf_presentation_table_choices_response_200_item.py +47 -0
- openbb_client-0.0.2/openbb_client/models/imf_table_metadata.py +102 -0
- openbb_client-0.0.2/openbb_client/models/index_available_provider.py +10 -0
- openbb_client-0.0.2/openbb_client/models/index_price_historical_interval_type_0.py +11 -0
- openbb_client-0.0.2/openbb_client/models/index_price_historical_interval_type_2.py +20 -0
- openbb_client-0.0.2/openbb_client/models/index_price_historical_polygon.py +9 -0
- openbb_client-0.0.2/openbb_client/models/index_price_historical_provider.py +11 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_balance_sheet_data.py +1992 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_calendar_ipo_data.py +567 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_calendar_ipo_data_status_type_0.py +10 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_cash_flow_statement_data.py +1062 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_company.py +139 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_company_filings_data.py +246 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_company_news_data.py +429 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_currency_pairs_data.py +100 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_equity_historical_data.py +491 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_equity_info_data.py +885 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_equity_quote_data.py +909 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_equity_search_data.py +133 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_etf_holdings_data.py +468 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_etf_info_data.py +2567 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_etf_price_performance_data.py +706 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_etf_search_data.py +204 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_financial_ratios_data.py +146 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_forward_ebitda_estimates_data.py +379 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_forward_ebitda_estimates_data_conensus_type_type_0.py +12 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_forward_eps_estimates_data.py +395 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_forward_pe_estimates_data.py +256 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_forward_sales_estimates_data.py +477 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_fred_series_data.py +86 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_historical_attributes_data.py +114 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_historical_dividends_data.py +156 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_historical_market_cap_data.py +84 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_income_statement_data.py +1805 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_index_historical_data.py +206 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_insider_trading_data.py +688 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_key_metrics_data.py +918 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_latest_attributes_data.py +104 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_market_snapshots_data.py +498 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_options_chains_data.py +1238 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_options_snapshots_data.py +594 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_options_unusual_data.py +180 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_options_unusual_data_sentiment.py +10 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_options_unusual_data_trade_type.py +10 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_price_target_consensus_data.py +296 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_reported_financials_data.py +96 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_search_attributes_data.py +228 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_security.py +270 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_share_statistics_data.py +207 -0
- openbb_client-0.0.2/openbb_client/models/intrinio_world_news_data.py +454 -0
- openbb_client-0.0.2/openbb_client/models/news_company_benzinga.py +10 -0
- openbb_client-0.0.2/openbb_client/models/news_company_provider.py +14 -0
- openbb_client-0.0.2/openbb_client/models/news_world_benzinga.py +10 -0
- openbb_client-0.0.2/openbb_client/models/news_world_provider.py +11 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_ameribor.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_ameribor_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_analyst_estimates.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_analyst_estimates_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_analyst_search.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_analyst_search_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_available_indicators.py +248 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_available_indicators_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_available_indices.py +269 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_available_indices_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_balance_of_payments.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_balance_of_payments_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_balance_sheet.py +325 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_balance_sheet_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_balance_sheet_growth.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_balance_sheet_growth_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_bls_search.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_bls_search_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_bls_series.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_bls_series_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_bond_indices.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_bond_indices_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_business_analysis.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_business_analysis_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_calendar_dividend.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_calendar_dividend_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_calendar_earnings.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_calendar_earnings_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_calendar_events.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_calendar_events_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_calendar_ipo.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_calendar_ipo_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_calendar_splits.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_calendar_splits_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_cash_flow_statement.py +325 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_cash_flow_statement_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_cash_flow_statement_growth.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_cash_flow_statement_growth_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_central_bank_holdings.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_central_bank_holdings_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_cik_map.py +212 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_cik_map_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_commercial_paper.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_commercial_paper_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_commodity_psd_data.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_commodity_psd_data_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_commodity_spot_prices.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_commodity_spot_prices_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_company_filings.py +264 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_company_filings_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_company_news.py +359 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_company_news_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_compare_company_facts.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_compare_company_facts_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_composite_leading_indicator.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_composite_leading_indicator_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_congress_bill_info.py +212 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_congress_bill_info_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_congress_bills.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_congress_bills_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_consumer_price_index.py +262 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_consumer_price_index_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_cot.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_cot_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_cot_search.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_cot_search_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_country_interest_rates.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_country_interest_rates_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_country_profile.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_country_profile_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_crypto_historical.py +308 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_crypto_historical_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_crypto_search.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_crypto_search_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_currency_historical.py +325 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_currency_historical_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_currency_pairs.py +264 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_currency_pairs_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_currency_snapshots.py +271 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_currency_snapshots_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_direction_of_trade.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_direction_of_trade_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_discount_window_primary_credit_rate.py +222 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_discount_window_primary_credit_rate_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_discovery_filings.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_discovery_filings_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_earnings_call_transcript.py +212 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_earnings_call_transcript_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_economic_calendar.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_economic_calendar_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_economic_indicators.py +248 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_economic_indicators_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_active.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_active_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_aggressive_small_caps.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_aggressive_small_caps_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_ftd.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_ftd_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_gainers.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_gainers_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_historical.py +343 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_historical_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_info.py +295 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_info_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_losers.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_losers_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_nbbo.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_nbbo_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_ownership.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_ownership_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_peers.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_peers_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_quote.py +290 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_quote_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_screener.py +265 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_screener_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_search.py +264 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_search_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_undervalued_growth.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_undervalued_growth_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_undervalued_large_caps.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_equity_undervalued_large_caps_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_esg_score.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_esg_score_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_countries.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_countries_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_equity_exposure.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_equity_exposure_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_historical.py +325 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_historical_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_holdings.py +264 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_holdings_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_info.py +261 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_info_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_price_performance.py +248 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_price_performance_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_search.py +262 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_search_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_sectors.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_etf_sectors_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_euro_short_term_rate.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_euro_short_term_rate_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_european_central_bank_interest_rates.py +224 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_european_central_bank_interest_rates_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_executive_compensation.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_executive_compensation_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_export_destinations.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_export_destinations_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_federal_funds_rate.py +249 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_federal_funds_rate_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_financial_ratios.py +246 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_financial_ratios_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_form_13fhr.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_form_13fhr_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_forward_ebitda_estimates.py +249 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_forward_ebitda_estimates_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_forward_eps_estimates.py +249 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_forward_eps_estimates_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_forward_pe_estimates.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_forward_pe_estimates_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_forward_sales_estimates.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_forward_sales_estimates_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_fred_regional.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_fred_regional_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_fred_release_table.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_fred_release_table_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_fred_search.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_fred_search_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_fred_series.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_fred_series_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_fund_holdings.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_fund_holdings_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_futures_curve.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_futures_curve_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_futures_historical.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_futures_historical_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_gdp_forecast.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_gdp_forecast_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_gdp_nominal.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_gdp_nominal_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_gdp_real.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_gdp_real_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_government_trades.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_government_trades_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_growth_tech_equities.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_growth_tech_equities_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_high_quality_market_corporate_bond.py +222 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_high_quality_market_corporate_bond_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_historical_attributes.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_historical_attributes_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_historical_dividends.py +308 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_historical_dividends_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_historical_employees.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_historical_employees_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_historical_eps.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_historical_eps_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_historical_market_cap.py +249 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_historical_market_cap_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_historical_splits.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_historical_splits_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_house_price_index.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_house_price_index_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_income_statement.py +325 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_income_statement_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_income_statement_growth.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_income_statement_growth_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_index_constituents.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_index_constituents_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_index_historical.py +308 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_index_historical_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_insider_trading.py +264 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_insider_trading_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_institutional_ownership.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_institutional_ownership_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_institutions_search.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_institutions_search_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_iorb.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_iorb_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_key_executives.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_key_executives_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_key_metrics.py +286 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_key_metrics_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_latest_attributes.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_latest_attributes_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_latest_financial_reports.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_latest_financial_reports_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_management_discussion_analysis.py +212 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_management_discussion_analysis_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_manufacturing_outlook_ny.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_manufacturing_outlook_ny_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_manufacturing_outlook_texas.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_manufacturing_outlook_texas_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_maritime_choke_point_info.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_maritime_choke_point_info_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_maritime_choke_point_volume.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_maritime_choke_point_volume_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_market_snapshots.py +267 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_market_snapshots_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_money_measures.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_money_measures_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_mortgage_indices.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_mortgage_indices_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_non_farm_payrolls.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_non_farm_payrolls_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_nport_disclosure.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_nport_disclosure_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_options_chains.py +225 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_options_chains_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_options_snapshots.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_options_snapshots_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_options_unusual.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_options_unusual_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_overnight_bank_funding_rate.py +251 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_overnight_bank_funding_rate_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_personal_consumption_expenditures.py +222 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_personal_consumption_expenditures_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_petroleum_status_report.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_petroleum_status_report_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_port_info.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_port_info_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_port_volume.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_port_volume_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_price_performance.py +246 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_price_performance_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_price_target.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_price_target_consensus.py +279 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_price_target_consensus_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_price_target_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_primary_dealer_fails.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_primary_dealer_fails_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_primary_dealer_positioning.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_primary_dealer_positioning_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_projections.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_projections_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_reported_financials.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_reported_financials_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_retail_prices.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_retail_prices_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_revenue_business_line.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_revenue_business_line_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_revenue_geographic.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_revenue_geographic_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_risk_premium.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_risk_premium_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_rss_litigation.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_rss_litigation_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_schema_files.py +212 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_schema_files_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_search_attributes.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_search_attributes_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_sec_filing.py +212 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_sec_filing_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_sec_htm_file.py +212 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_sec_htm_file_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_selected_treasury_bill.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_selected_treasury_bill_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_selected_treasury_constant_maturity.py +222 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_selected_treasury_constant_maturity_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_senior_loan_officer_survey.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_senior_loan_officer_survey_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_share_price_index.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_share_price_index_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_share_statistics.py +267 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_share_statistics_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_short_term_energy_outlook.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_short_term_energy_outlook_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_sic_search.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_sic_search_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_sofr.py +244 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_sofr_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_sonia.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_sonia_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_spot_rate.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_spot_rate_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_survey_of_economic_conditions_chicago.py +224 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_survey_of_economic_conditions_chicago_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_symbol_map.py +212 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_symbol_map_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_t.py +199 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_t_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_tips_yields.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_tips_yields_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_tlist_imf_table_metadata.py +219 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_tlist_imf_table_metadata_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_trailing_dividend_yield.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_trailing_dividend_yield_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_treasury_auctions.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_treasury_auctions_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_treasury_constant_maturity.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_treasury_constant_maturity_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_treasury_prices.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_treasury_prices_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_treasury_rates.py +246 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_treasury_rates_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_unemployment.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_unemployment_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_university_of_michigan.py +220 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_university_of_michigan_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_world_news.py +284 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_world_news_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_yield_curve.py +288 -0
- openbb_client-0.0.2/openbb_client/models/ob_bject_yield_curve_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bjectdict.py +211 -0
- openbb_client-0.0.2/openbb_client/models/ob_bjectdict_extra.py +47 -0
- openbb_client-0.0.2/openbb_client/models/ob_bjectdict_results_type_0.py +47 -0
- openbb_client-0.0.2/openbb_client/models/oecd_composite_leading_indicator_data.py +83 -0
- openbb_client-0.0.2/openbb_client/models/oecd_country_interest_rates_data.py +100 -0
- openbb_client-0.0.2/openbb_client/models/oecd_gdp_forecast_data.py +84 -0
- openbb_client-0.0.2/openbb_client/models/oecd_gdp_nominal_data.py +87 -0
- openbb_client-0.0.2/openbb_client/models/oecd_gdp_real_data.py +87 -0
- openbb_client-0.0.2/openbb_client/models/oecd_house_price_index_data.py +126 -0
- openbb_client-0.0.2/openbb_client/models/oecd_share_price_index_data.py +126 -0
- openbb_client-0.0.2/openbb_client/models/oecd_unemployment_data.py +126 -0
- openbb_client-0.0.2/openbb_client/models/oecdcpi_data.py +88 -0
- openbb_client-0.0.2/openbb_client/models/open_bb_error_response.py +70 -0
- openbb_client-0.0.2/openbb_client/models/polygon_balance_sheet_data.py +700 -0
- openbb_client-0.0.2/openbb_client/models/polygon_cash_flow_statement_data.py +414 -0
- openbb_client-0.0.2/openbb_client/models/polygon_company_news_data.py +264 -0
- openbb_client-0.0.2/openbb_client/models/polygon_crypto_historical_data.py +214 -0
- openbb_client-0.0.2/openbb_client/models/polygon_currency_historical_data.py +214 -0
- openbb_client-0.0.2/openbb_client/models/polygon_currency_pairs_data.py +222 -0
- openbb_client-0.0.2/openbb_client/models/polygon_currency_snapshots_data.py +630 -0
- openbb_client-0.0.2/openbb_client/models/polygon_equity_historical_data.py +178 -0
- openbb_client-0.0.2/openbb_client/models/polygon_equity_nbbo_data.py +317 -0
- openbb_client-0.0.2/openbb_client/models/polygon_income_statement_data.py +1027 -0
- openbb_client-0.0.2/openbb_client/models/polygon_index_historical_data.py +226 -0
- openbb_client-0.0.2/openbb_client/models/polygon_market_snapshots_data.py +642 -0
- openbb_client-0.0.2/openbb_client/models/polygon_publisher.py +86 -0
- openbb_client-0.0.2/openbb_client/models/regulators_cftc_cot_cftc.py +11 -0
- openbb_client-0.0.2/openbb_client/models/sec_cik_map_data.py +74 -0
- openbb_client-0.0.2/openbb_client/models/sec_company_filings_data.py +364 -0
- openbb_client-0.0.2/openbb_client/models/sec_compare_company_facts_data.py +333 -0
- openbb_client-0.0.2/openbb_client/models/sec_equity_ftd_data.py +186 -0
- openbb_client-0.0.2/openbb_client/models/sec_equity_search_data.py +104 -0
- openbb_client-0.0.2/openbb_client/models/sec_filing_data.py +273 -0
- openbb_client-0.0.2/openbb_client/models/sec_filing_data_cover_page_type_0.py +47 -0
- openbb_client-0.0.2/openbb_client/models/sec_form_13fhr_data.py +268 -0
- openbb_client-0.0.2/openbb_client/models/sec_form_13fhr_data_option_type_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/sec_form_13fhr_data_security_type_type_0.py +9 -0
- openbb_client-0.0.2/openbb_client/models/sec_htm_file_data.py +70 -0
- openbb_client-0.0.2/openbb_client/models/sec_insider_trading_data.py +796 -0
- openbb_client-0.0.2/openbb_client/models/sec_institutions_search_data.py +94 -0
- openbb_client-0.0.2/openbb_client/models/sec_latest_financial_reports_data.py +300 -0
- openbb_client-0.0.2/openbb_client/models/sec_management_discussion_analysis_data.py +128 -0
- openbb_client-0.0.2/openbb_client/models/sec_nport_disclosure_data.py +1596 -0
- openbb_client-0.0.2/openbb_client/models/sec_rss_litigation_data.py +96 -0
- openbb_client-0.0.2/openbb_client/models/sec_schema_files_data.py +67 -0
- openbb_client-0.0.2/openbb_client/models/sec_sic_search_data.py +78 -0
- openbb_client-0.0.2/openbb_client/models/sec_symbol_map_data.py +62 -0
- openbb_client-0.0.2/openbb_client/models/te_economic_calendar_data.py +527 -0
- openbb_client-0.0.2/openbb_client/models/tiingo_company_news_data.py +226 -0
- openbb_client-0.0.2/openbb_client/models/tiingo_crypto_historical_data.py +235 -0
- openbb_client-0.0.2/openbb_client/models/tiingo_currency_historical_data.py +194 -0
- openbb_client-0.0.2/openbb_client/models/tiingo_equity_historical_data.py +298 -0
- openbb_client-0.0.2/openbb_client/models/tiingo_trailing_div_yield_data.py +72 -0
- openbb_client-0.0.2/openbb_client/models/tiingo_world_news_data.py +238 -0
- openbb_client-0.0.2/openbb_client/models/validation_error.py +90 -0
- openbb_client-0.0.2/openbb_client/models/warning.py +70 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_available_indices_data.py +132 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_balance_sheet_data.py +106 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_cash_flow_statement_data.py +106 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_company_news_data.py +202 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_crypto_historical_data.py +194 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_currency_historical_data.py +194 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_equity_historical_data.py +198 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_equity_profile_data.py +1057 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_equity_quote_data.py +923 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_equity_screener_data.py +540 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_etf_info_data.py +812 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_futures_curve_data.py +105 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_futures_historical_data.py +104 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_historical_dividends_data.py +95 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_income_statement_data.py +106 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_index_historical_data.py +206 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_key_executives_data.py +212 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_key_metrics_data.py +877 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_options_chains_data.py +1278 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_price_target_consensus_data.py +265 -0
- openbb_client-0.0.2/openbb_client/models/y_finance_share_statistics_data.py +380 -0
- openbb_client-0.0.2/openbb_client/models/yf_active_data.py +540 -0
- openbb_client-0.0.2/openbb_client/models/yf_aggressive_small_caps_data.py +540 -0
- openbb_client-0.0.2/openbb_client/models/yf_gainers_data.py +540 -0
- openbb_client-0.0.2/openbb_client/models/yf_growth_tech_equities_data.py +540 -0
- openbb_client-0.0.2/openbb_client/models/yf_losers_data.py +540 -0
- openbb_client-0.0.2/openbb_client/models/yf_undervalued_growth_equities_data.py +540 -0
- openbb_client-0.0.2/openbb_client/models/yf_undervalued_large_caps_data.py +540 -0
- openbb_client-0.0.2/openbb_client/py.typed +1 -0
- openbb_client-0.0.2/openbb_client/types.py +54 -0
- openbb_client-0.0.2/pyproject.toml +26 -0
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: openbb-client
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: A client library for accessing OpenBB Platform API
|
|
5
|
+
Requires-Python: >=3.10,<4.0
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
11
|
+
Requires-Dist: attrs (>=22.2.0)
|
|
12
|
+
Requires-Dist: httpx (>=0.23.0,<0.29.0)
|
|
13
|
+
Requires-Dist: python-dateutil (>=2.8.0,<3.0.0)
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# openbb-client
|
|
17
|
+
A client library for accessing OpenBB Platform API
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
First, create a client:
|
|
21
|
+
|
|
22
|
+
```python
|
|
23
|
+
from openbb_client import Client
|
|
24
|
+
|
|
25
|
+
client = Client(base_url="https://api.example.com")
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
If the endpoints you're going to hit require authentication, use `AuthenticatedClient` instead:
|
|
29
|
+
|
|
30
|
+
```python
|
|
31
|
+
from openbb_client import AuthenticatedClient
|
|
32
|
+
|
|
33
|
+
client = AuthenticatedClient(base_url="https://api.example.com", token="SuperSecretToken")
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Now call your endpoint and use your models:
|
|
37
|
+
|
|
38
|
+
```python
|
|
39
|
+
from openbb_client.models import MyDataModel
|
|
40
|
+
from openbb_client.api.my_tag import get_my_data_model
|
|
41
|
+
from openbb_client.types import Response
|
|
42
|
+
|
|
43
|
+
with client as client:
|
|
44
|
+
my_data: MyDataModel = get_my_data_model.sync(client=client)
|
|
45
|
+
# or if you need more info (e.g. status_code)
|
|
46
|
+
response: Response[MyDataModel] = get_my_data_model.sync_detailed(client=client)
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Or do the same thing with an async version:
|
|
50
|
+
|
|
51
|
+
```python
|
|
52
|
+
from openbb_client.models import MyDataModel
|
|
53
|
+
from openbb_client.api.my_tag import get_my_data_model
|
|
54
|
+
from openbb_client.types import Response
|
|
55
|
+
|
|
56
|
+
async with client as client:
|
|
57
|
+
my_data: MyDataModel = await get_my_data_model.asyncio(client=client)
|
|
58
|
+
response: Response[MyDataModel] = await get_my_data_model.asyncio_detailed(client=client)
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
By default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.
|
|
62
|
+
|
|
63
|
+
```python
|
|
64
|
+
client = AuthenticatedClient(
|
|
65
|
+
base_url="https://internal_api.example.com",
|
|
66
|
+
token="SuperSecretToken",
|
|
67
|
+
verify_ssl="/path/to/certificate_bundle.pem",
|
|
68
|
+
)
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
You can also disable certificate validation altogether, but beware that **this is a security risk**.
|
|
72
|
+
|
|
73
|
+
```python
|
|
74
|
+
client = AuthenticatedClient(
|
|
75
|
+
base_url="https://internal_api.example.com",
|
|
76
|
+
token="SuperSecretToken",
|
|
77
|
+
verify_ssl=False
|
|
78
|
+
)
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Things to know:
|
|
82
|
+
1. Every path/method combo becomes a Python module with four functions:
|
|
83
|
+
1. `sync`: Blocking request that returns parsed data (if successful) or `None`
|
|
84
|
+
1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.
|
|
85
|
+
1. `asyncio`: Like `sync` but async instead of blocking
|
|
86
|
+
1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking
|
|
87
|
+
|
|
88
|
+
1. All path/query params, and bodies become method arguments.
|
|
89
|
+
1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)
|
|
90
|
+
1. Any endpoint which did not have a tag will be in `openbb_client.api.default`
|
|
91
|
+
|
|
92
|
+
## Advanced customizations
|
|
93
|
+
|
|
94
|
+
There are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info. You can also customize the underlying `httpx.Client` or `httpx.AsyncClient` (depending on your use-case):
|
|
95
|
+
|
|
96
|
+
```python
|
|
97
|
+
from openbb_client import Client
|
|
98
|
+
|
|
99
|
+
def log_request(request):
|
|
100
|
+
print(f"Request event hook: {request.method} {request.url} - Waiting for response")
|
|
101
|
+
|
|
102
|
+
def log_response(response):
|
|
103
|
+
request = response.request
|
|
104
|
+
print(f"Response event hook: {request.method} {request.url} - Status {response.status_code}")
|
|
105
|
+
|
|
106
|
+
client = Client(
|
|
107
|
+
base_url="https://api.example.com",
|
|
108
|
+
httpx_args={"event_hooks": {"request": [log_request], "response": [log_response]}},
|
|
109
|
+
)
|
|
110
|
+
|
|
111
|
+
# Or get the underlying httpx client to modify directly with client.get_httpx_client() or client.get_async_httpx_client()
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
You can even set the httpx client directly, but beware that this will override any existing settings (e.g., base_url):
|
|
115
|
+
|
|
116
|
+
```python
|
|
117
|
+
import httpx
|
|
118
|
+
from openbb_client import Client
|
|
119
|
+
|
|
120
|
+
client = Client(
|
|
121
|
+
base_url="https://api.example.com",
|
|
122
|
+
)
|
|
123
|
+
# Note that base_url needs to be re-set, as would any shared cookies, headers, etc.
|
|
124
|
+
client.set_httpx_client(httpx.Client(base_url="https://api.example.com", proxies="http://localhost:8030"))
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
## Building / publishing this package
|
|
128
|
+
This project uses [Poetry](https://python-poetry.org/) to manage dependencies and packaging. Here are the basics:
|
|
129
|
+
1. Update the metadata in pyproject.toml (e.g. authors, version)
|
|
130
|
+
1. If you're using a private repository, configure it with Poetry
|
|
131
|
+
1. `poetry config repositories.<your-repository-name> <url-to-your-repository>`
|
|
132
|
+
1. `poetry config http-basic.<your-repository-name> <username> <password>`
|
|
133
|
+
1. Publish the client with `poetry publish --build -r <your-repository-name>` or, if for public PyPI, just `poetry publish --build`
|
|
134
|
+
|
|
135
|
+
If you want to install this client into another project without publishing it (e.g. for development) then:
|
|
136
|
+
1. If that project **is using Poetry**, you can simply do `poetry add <path-to-this-client>` from that project
|
|
137
|
+
1. If that project is not using Poetry:
|
|
138
|
+
1. Build a wheel with `poetry build -f wheel`
|
|
139
|
+
1. Install that wheel from the other project `pip install <path-to-wheel>`
|
|
140
|
+
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
# openbb-client
|
|
2
|
+
A client library for accessing OpenBB Platform API
|
|
3
|
+
|
|
4
|
+
## Usage
|
|
5
|
+
First, create a client:
|
|
6
|
+
|
|
7
|
+
```python
|
|
8
|
+
from openbb_client import Client
|
|
9
|
+
|
|
10
|
+
client = Client(base_url="https://api.example.com")
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
If the endpoints you're going to hit require authentication, use `AuthenticatedClient` instead:
|
|
14
|
+
|
|
15
|
+
```python
|
|
16
|
+
from openbb_client import AuthenticatedClient
|
|
17
|
+
|
|
18
|
+
client = AuthenticatedClient(base_url="https://api.example.com", token="SuperSecretToken")
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Now call your endpoint and use your models:
|
|
22
|
+
|
|
23
|
+
```python
|
|
24
|
+
from openbb_client.models import MyDataModel
|
|
25
|
+
from openbb_client.api.my_tag import get_my_data_model
|
|
26
|
+
from openbb_client.types import Response
|
|
27
|
+
|
|
28
|
+
with client as client:
|
|
29
|
+
my_data: MyDataModel = get_my_data_model.sync(client=client)
|
|
30
|
+
# or if you need more info (e.g. status_code)
|
|
31
|
+
response: Response[MyDataModel] = get_my_data_model.sync_detailed(client=client)
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Or do the same thing with an async version:
|
|
35
|
+
|
|
36
|
+
```python
|
|
37
|
+
from openbb_client.models import MyDataModel
|
|
38
|
+
from openbb_client.api.my_tag import get_my_data_model
|
|
39
|
+
from openbb_client.types import Response
|
|
40
|
+
|
|
41
|
+
async with client as client:
|
|
42
|
+
my_data: MyDataModel = await get_my_data_model.asyncio(client=client)
|
|
43
|
+
response: Response[MyDataModel] = await get_my_data_model.asyncio_detailed(client=client)
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
By default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.
|
|
47
|
+
|
|
48
|
+
```python
|
|
49
|
+
client = AuthenticatedClient(
|
|
50
|
+
base_url="https://internal_api.example.com",
|
|
51
|
+
token="SuperSecretToken",
|
|
52
|
+
verify_ssl="/path/to/certificate_bundle.pem",
|
|
53
|
+
)
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
You can also disable certificate validation altogether, but beware that **this is a security risk**.
|
|
57
|
+
|
|
58
|
+
```python
|
|
59
|
+
client = AuthenticatedClient(
|
|
60
|
+
base_url="https://internal_api.example.com",
|
|
61
|
+
token="SuperSecretToken",
|
|
62
|
+
verify_ssl=False
|
|
63
|
+
)
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Things to know:
|
|
67
|
+
1. Every path/method combo becomes a Python module with four functions:
|
|
68
|
+
1. `sync`: Blocking request that returns parsed data (if successful) or `None`
|
|
69
|
+
1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.
|
|
70
|
+
1. `asyncio`: Like `sync` but async instead of blocking
|
|
71
|
+
1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking
|
|
72
|
+
|
|
73
|
+
1. All path/query params, and bodies become method arguments.
|
|
74
|
+
1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)
|
|
75
|
+
1. Any endpoint which did not have a tag will be in `openbb_client.api.default`
|
|
76
|
+
|
|
77
|
+
## Advanced customizations
|
|
78
|
+
|
|
79
|
+
There are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info. You can also customize the underlying `httpx.Client` or `httpx.AsyncClient` (depending on your use-case):
|
|
80
|
+
|
|
81
|
+
```python
|
|
82
|
+
from openbb_client import Client
|
|
83
|
+
|
|
84
|
+
def log_request(request):
|
|
85
|
+
print(f"Request event hook: {request.method} {request.url} - Waiting for response")
|
|
86
|
+
|
|
87
|
+
def log_response(response):
|
|
88
|
+
request = response.request
|
|
89
|
+
print(f"Response event hook: {request.method} {request.url} - Status {response.status_code}")
|
|
90
|
+
|
|
91
|
+
client = Client(
|
|
92
|
+
base_url="https://api.example.com",
|
|
93
|
+
httpx_args={"event_hooks": {"request": [log_request], "response": [log_response]}},
|
|
94
|
+
)
|
|
95
|
+
|
|
96
|
+
# Or get the underlying httpx client to modify directly with client.get_httpx_client() or client.get_async_httpx_client()
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
You can even set the httpx client directly, but beware that this will override any existing settings (e.g., base_url):
|
|
100
|
+
|
|
101
|
+
```python
|
|
102
|
+
import httpx
|
|
103
|
+
from openbb_client import Client
|
|
104
|
+
|
|
105
|
+
client = Client(
|
|
106
|
+
base_url="https://api.example.com",
|
|
107
|
+
)
|
|
108
|
+
# Note that base_url needs to be re-set, as would any shared cookies, headers, etc.
|
|
109
|
+
client.set_httpx_client(httpx.Client(base_url="https://api.example.com", proxies="http://localhost:8030"))
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
## Building / publishing this package
|
|
113
|
+
This project uses [Poetry](https://python-poetry.org/) to manage dependencies and packaging. Here are the basics:
|
|
114
|
+
1. Update the metadata in pyproject.toml (e.g. authors, version)
|
|
115
|
+
1. If you're using a private repository, configure it with Poetry
|
|
116
|
+
1. `poetry config repositories.<your-repository-name> <url-to-your-repository>`
|
|
117
|
+
1. `poetry config http-basic.<your-repository-name> <username> <password>`
|
|
118
|
+
1. Publish the client with `poetry publish --build -r <your-repository-name>` or, if for public PyPI, just `poetry publish --build`
|
|
119
|
+
|
|
120
|
+
If you want to install this client into another project without publishing it (e.g. for development) then:
|
|
121
|
+
1. If that project **is using Poetry**, you can simply do `poetry add <path-to-this-client>` from that project
|
|
122
|
+
1. If that project is not using Poetry:
|
|
123
|
+
1. Build a wheel with `poetry build -f wheel`
|
|
124
|
+
1. Install that wheel from the other project `pip install <path-to-wheel>`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Contains methods for accessing the API"""
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Contains endpoint functions for accessing the API"""
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
from http import HTTPStatus
|
|
2
|
+
from typing import Any, Literal, cast
|
|
3
|
+
|
|
4
|
+
import httpx
|
|
5
|
+
|
|
6
|
+
from ... import errors
|
|
7
|
+
from ...client import AuthenticatedClient, Client
|
|
8
|
+
from ...models.http_validation_error import HTTPValidationError
|
|
9
|
+
from ...models.ob_bject_business_analysis import OBBjectBusinessAnalysis
|
|
10
|
+
from ...models.open_bb_error_response import OpenBBErrorResponse
|
|
11
|
+
from ...types import UNSET, Response, Unset
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def _get_kwargs(
|
|
15
|
+
*,
|
|
16
|
+
provider: Literal["akshare"] | Unset = "akshare",
|
|
17
|
+
symbol: None | str | Unset = UNSET,
|
|
18
|
+
) -> dict[str, Any]:
|
|
19
|
+
|
|
20
|
+
params: dict[str, Any] = {}
|
|
21
|
+
|
|
22
|
+
params["provider"] = provider
|
|
23
|
+
|
|
24
|
+
json_symbol: None | str | Unset
|
|
25
|
+
if isinstance(symbol, Unset):
|
|
26
|
+
json_symbol = UNSET
|
|
27
|
+
else:
|
|
28
|
+
json_symbol = symbol
|
|
29
|
+
params["symbol"] = json_symbol
|
|
30
|
+
|
|
31
|
+
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
32
|
+
|
|
33
|
+
_kwargs: dict[str, Any] = {
|
|
34
|
+
"method": "get",
|
|
35
|
+
"url": "/api/v1/akshare/business_analysis",
|
|
36
|
+
"params": params,
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
return _kwargs
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def _parse_response(
|
|
43
|
+
*, client: AuthenticatedClient | Client, response: httpx.Response
|
|
44
|
+
) -> Any | HTTPValidationError | OBBjectBusinessAnalysis | OpenBBErrorResponse | None:
|
|
45
|
+
if response.status_code == 200:
|
|
46
|
+
response_200 = OBBjectBusinessAnalysis.from_dict(response.json())
|
|
47
|
+
|
|
48
|
+
return response_200
|
|
49
|
+
|
|
50
|
+
if response.status_code == 204:
|
|
51
|
+
response_204 = cast(Any, None)
|
|
52
|
+
return response_204
|
|
53
|
+
|
|
54
|
+
if response.status_code == 400:
|
|
55
|
+
response_400 = OpenBBErrorResponse.from_dict(response.json())
|
|
56
|
+
|
|
57
|
+
return response_400
|
|
58
|
+
|
|
59
|
+
if response.status_code == 404:
|
|
60
|
+
response_404 = cast(Any, None)
|
|
61
|
+
return response_404
|
|
62
|
+
|
|
63
|
+
if response.status_code == 422:
|
|
64
|
+
response_422 = HTTPValidationError.from_dict(response.json())
|
|
65
|
+
|
|
66
|
+
return response_422
|
|
67
|
+
|
|
68
|
+
if response.status_code == 500:
|
|
69
|
+
response_500 = OpenBBErrorResponse.from_dict(response.json())
|
|
70
|
+
|
|
71
|
+
return response_500
|
|
72
|
+
|
|
73
|
+
if response.status_code == 502:
|
|
74
|
+
response_502 = OpenBBErrorResponse.from_dict(response.json())
|
|
75
|
+
|
|
76
|
+
return response_502
|
|
77
|
+
|
|
78
|
+
if client.raise_on_unexpected_status:
|
|
79
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
80
|
+
else:
|
|
81
|
+
return None
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
def _build_response(
|
|
85
|
+
*, client: AuthenticatedClient | Client, response: httpx.Response
|
|
86
|
+
) -> Response[Any | HTTPValidationError | OBBjectBusinessAnalysis | OpenBBErrorResponse]:
|
|
87
|
+
return Response(
|
|
88
|
+
status_code=HTTPStatus(response.status_code),
|
|
89
|
+
content=response.content,
|
|
90
|
+
headers=response.headers,
|
|
91
|
+
parsed=_parse_response(client=client, response=response),
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
def sync_detailed(
|
|
96
|
+
*,
|
|
97
|
+
client: AuthenticatedClient | Client,
|
|
98
|
+
provider: Literal["akshare"] | Unset = "akshare",
|
|
99
|
+
symbol: None | str | Unset = UNSET,
|
|
100
|
+
) -> Response[Any | HTTPValidationError | OBBjectBusinessAnalysis | OpenBBErrorResponse]:
|
|
101
|
+
"""Business Analysis
|
|
102
|
+
|
|
103
|
+
Get business analysis data.
|
|
104
|
+
|
|
105
|
+
Args:
|
|
106
|
+
provider (Literal['akshare'] | Unset): Default: 'akshare'.
|
|
107
|
+
symbol (None | str | Unset): Symbol to get data for. (provider: akshare)
|
|
108
|
+
|
|
109
|
+
Raises:
|
|
110
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
111
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
112
|
+
|
|
113
|
+
Returns:
|
|
114
|
+
Response[Any | HTTPValidationError | OBBjectBusinessAnalysis | OpenBBErrorResponse]
|
|
115
|
+
"""
|
|
116
|
+
|
|
117
|
+
kwargs = _get_kwargs(
|
|
118
|
+
provider=provider,
|
|
119
|
+
symbol=symbol,
|
|
120
|
+
)
|
|
121
|
+
|
|
122
|
+
response = client.get_httpx_client().request(
|
|
123
|
+
**kwargs,
|
|
124
|
+
)
|
|
125
|
+
|
|
126
|
+
return _build_response(client=client, response=response)
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
def sync(
|
|
130
|
+
*,
|
|
131
|
+
client: AuthenticatedClient | Client,
|
|
132
|
+
provider: Literal["akshare"] | Unset = "akshare",
|
|
133
|
+
symbol: None | str | Unset = UNSET,
|
|
134
|
+
) -> Any | HTTPValidationError | OBBjectBusinessAnalysis | OpenBBErrorResponse | None:
|
|
135
|
+
"""Business Analysis
|
|
136
|
+
|
|
137
|
+
Get business analysis data.
|
|
138
|
+
|
|
139
|
+
Args:
|
|
140
|
+
provider (Literal['akshare'] | Unset): Default: 'akshare'.
|
|
141
|
+
symbol (None | str | Unset): Symbol to get data for. (provider: akshare)
|
|
142
|
+
|
|
143
|
+
Raises:
|
|
144
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
145
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
146
|
+
|
|
147
|
+
Returns:
|
|
148
|
+
Any | HTTPValidationError | OBBjectBusinessAnalysis | OpenBBErrorResponse
|
|
149
|
+
"""
|
|
150
|
+
|
|
151
|
+
return sync_detailed(
|
|
152
|
+
client=client,
|
|
153
|
+
provider=provider,
|
|
154
|
+
symbol=symbol,
|
|
155
|
+
).parsed
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
async def asyncio_detailed(
|
|
159
|
+
*,
|
|
160
|
+
client: AuthenticatedClient | Client,
|
|
161
|
+
provider: Literal["akshare"] | Unset = "akshare",
|
|
162
|
+
symbol: None | str | Unset = UNSET,
|
|
163
|
+
) -> Response[Any | HTTPValidationError | OBBjectBusinessAnalysis | OpenBBErrorResponse]:
|
|
164
|
+
"""Business Analysis
|
|
165
|
+
|
|
166
|
+
Get business analysis data.
|
|
167
|
+
|
|
168
|
+
Args:
|
|
169
|
+
provider (Literal['akshare'] | Unset): Default: 'akshare'.
|
|
170
|
+
symbol (None | str | Unset): Symbol to get data for. (provider: akshare)
|
|
171
|
+
|
|
172
|
+
Raises:
|
|
173
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
174
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
175
|
+
|
|
176
|
+
Returns:
|
|
177
|
+
Response[Any | HTTPValidationError | OBBjectBusinessAnalysis | OpenBBErrorResponse]
|
|
178
|
+
"""
|
|
179
|
+
|
|
180
|
+
kwargs = _get_kwargs(
|
|
181
|
+
provider=provider,
|
|
182
|
+
symbol=symbol,
|
|
183
|
+
)
|
|
184
|
+
|
|
185
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
|
186
|
+
|
|
187
|
+
return _build_response(client=client, response=response)
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
async def asyncio(
|
|
191
|
+
*,
|
|
192
|
+
client: AuthenticatedClient | Client,
|
|
193
|
+
provider: Literal["akshare"] | Unset = "akshare",
|
|
194
|
+
symbol: None | str | Unset = UNSET,
|
|
195
|
+
) -> Any | HTTPValidationError | OBBjectBusinessAnalysis | OpenBBErrorResponse | None:
|
|
196
|
+
"""Business Analysis
|
|
197
|
+
|
|
198
|
+
Get business analysis data.
|
|
199
|
+
|
|
200
|
+
Args:
|
|
201
|
+
provider (Literal['akshare'] | Unset): Default: 'akshare'.
|
|
202
|
+
symbol (None | str | Unset): Symbol to get data for. (provider: akshare)
|
|
203
|
+
|
|
204
|
+
Raises:
|
|
205
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
206
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
207
|
+
|
|
208
|
+
Returns:
|
|
209
|
+
Any | HTTPValidationError | OBBjectBusinessAnalysis | OpenBBErrorResponse
|
|
210
|
+
"""
|
|
211
|
+
|
|
212
|
+
return (
|
|
213
|
+
await asyncio_detailed(
|
|
214
|
+
client=client,
|
|
215
|
+
provider=provider,
|
|
216
|
+
symbol=symbol,
|
|
217
|
+
)
|
|
218
|
+
).parsed
|