├── .github └── workflows │ ├── python-publish.yml │ └── tests.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── examples ├── Indicators │ ├── compareHistoricalDataByDate.py │ ├── creditRating.csv │ ├── creditRatingEx.py │ ├── indicators.csv │ ├── indicatorsEx.py │ ├── indicatorsForecastsEx.csv │ ├── indicatorsForecastsEx.py │ ├── indicatorsHistoricalEx.csv │ ├── indicatorsHistoricalEx.py │ ├── latestUpdates.csv │ └── latestUpdatesEx.py ├── README.md ├── calendar │ ├── README.md │ ├── calendar.csv │ ├── calendarApp.py │ ├── calendarEx.py │ ├── calendarStreamingEx.py │ ├── htmlTable.png │ ├── static │ │ └── style.css │ └── templates │ │ └── index.html ├── cli_terminal │ └── ClassLibrary │ │ ├── __init__.py │ │ ├── comtrade.py │ │ ├── economicCalendar.py │ │ ├── economic_calendar.py │ │ ├── eurostat.py │ │ ├── federalReserve.py │ │ ├── federal_reserve.py │ │ ├── indicators.py │ │ ├── markets.py │ │ ├── news.py │ │ ├── operator.py │ │ ├── search.py │ │ ├── section.py │ │ └── world_bank.py ├── comtrade │ ├── comtrade.csv │ └── comtradeEx.py ├── eurostat │ ├── eurostat.csv │ └── eurostatEx.py ├── federalReserve │ ├── federalReserve.csv │ └── federalReserveEx.py ├── forecasts │ ├── README.md │ ├── forecastsApp.py │ ├── forecastsTable.png │ ├── static │ │ └── style.css │ └── templates │ │ └── index.html ├── historical │ ├── README.md │ ├── Untitled.ipynb │ ├── bulkHistorical.py │ ├── chart.png │ ├── historicalChart.py │ └── historicalMultipleCountries.py ├── jupyter_notebooks │ └── Readme.md ├── markets │ ├── README.md │ ├── earnings.csv │ ├── earningsEx.py │ ├── financials.csv │ ├── financialsEx.py │ ├── getEarningsPerShareTTM.py │ ├── getMarketsIntradayRange.py │ ├── getPERatio.py │ ├── historicalMarketsChart.png │ ├── historicalMarketsChart.py │ ├── intraday.csv │ ├── intradayEx.py │ ├── marketForecatsEx.csv │ ├── marketForecatsEx.py │ ├── markets.csv │ ├── marketsEx.py │ ├── marketsHistoricalEx.csv │ ├── marketsHistoricalEx.py │ └── marketsStreamingEx.py ├── news │ ├── latestArticlesEx.py │ ├── latestNewsEx.py │ ├── news.csv │ └── newsStreamingEx.py ├── search │ ├── search.csv │ └── searchEx.py ├── stream-python │ ├── README.md │ ├── app-v2.py │ └── app.py └── worldBank │ ├── worldBank.csv │ └── worldBankEx.py ├── run_tests.py ├── setup.cfg ├── setup.py ├── tests ├── README.md ├── __init__.py ├── _test_calendar.py ├── _test_credit_ratings.py ├── _test_dividends.py ├── _test_forecasts.py ├── _test_indicators.py ├── _test_ipo.py ├── _test_stockSplits.py ├── calendar │ ├── __init__.py │ └── test_calendar_unit.py ├── comtrade │ ├── __init__.py │ ├── test_check_cmt_country.py │ ├── test_check_cmt_page.py │ ├── test_get_cmt_categories.py │ ├── test_get_cmt_country.py │ ├── test_get_cmt_country_by_category.py │ ├── test_get_cmt_country_filter_by_type.py │ ├── test_get_cmt_historical.py │ ├── test_get_cmt_last_updates.py │ ├── test_get_cmt_snapshot_by_type.py │ ├── test_get_cmt_total_by_type.py │ ├── test_get_cmt_two_countries.py │ └── test_get_cmt_updates.py ├── credit_ratings │ ├── __init__.py │ ├── test_get_credit_ratings.py │ └── test_get_historical_credit_ratings.py ├── dividends │ ├── __init__.py │ └── test_get_dividends.py ├── earnings │ ├── test_country.py │ ├── test_dates.py │ ├── test_get_earnings_type.py │ ├── test_index.py │ ├── test_missing_api_key.py │ ├── test_no_parameters.py │ ├── test_precedence.py │ ├── test_sector.py │ └── test_symbols.py ├── eurostat │ ├── __init__.py │ ├── test_get_eurostat_category_groups.py │ ├── test_get_eurostat_countries.py │ ├── test_get_eurostat_data_category.py │ ├── test_get_eurostat_data_category_group.py │ ├── test_get_eurostat_data_combined.py │ ├── test_get_eurostat_data_country.py │ ├── test_get_eurostat_data_lists.py │ ├── test_get_eurostat_data_no_parameters.py │ └── test_get_eurostat_data_symbol.py ├── federalReserve │ ├── __init__.py │ ├── test_get_fed_r_county.py │ ├── test_get_fed_r_historical.py │ ├── test_get_fed_r_snaps_country.py │ ├── test_get_fed_r_snaps_county.py │ ├── test_get_fed_r_snaps_no_parameters.py │ ├── test_get_fed_r_snaps_state.py │ ├── test_get_fed_r_snaps_symbol.py │ ├── test_get_fed_r_snaps_url.py │ └── test_get_fed_r_states.py ├── financials │ ├── __init__.py │ ├── test_get_financials_category_list.py │ ├── test_get_financials_data_by_category.py │ ├── test_get_financials_data_by_category_no_parameter.py │ ├── test_get_financials_data_conflict.py │ ├── test_get_financials_data_country.py │ ├── test_get_financials_data_no_parameters.py │ ├── test_get_financials_data_symbol.py │ └── test_get_sectors.py ├── forecasts │ ├── __init__.py │ ├── test_get_forecast_by_ticker.py │ ├── test_get_forecast_by_ticker_no_parameter.py │ ├── test_get_forecast_data_combined.py │ ├── test_get_forecast_data_country.py │ ├── test_get_forecast_data_indicator.py │ ├── test_get_forecast_data_no_parameters.py │ └── test_get_forecast_updates.py ├── historical │ ├── __init__.py │ ├── test_get_historical_by_ticker.py │ ├── test_get_historical_by_ticker_errors.py │ ├── test_get_historical_data.py │ ├── test_get_historical_data_date_errors.py │ ├── test_get_historical_data_multiple.py │ ├── test_get_historical_latest.py │ ├── test_get_historical_ratings.py │ └── test_get_historical_updates.py ├── historicalDB │ ├── __init__.py │ ├── test_get_historical_comtrade.py │ ├── test_get_historical_end_date_only.py │ ├── test_get_historical_fred.py │ ├── test_get_historical_markets.py │ ├── test_get_historical_output_type.py │ ├── test_get_historical_ticker.py │ └── test_get_historical_worldbank.py ├── historicalEurostat │ ├── __init__.py │ ├── test_get_historical_eurostat_dates.py │ ├── test_get_historical_eurostat_errors.py │ ├── test_get_historical_eurostat_id.py │ └── test_get_historical_eurostat_output_type.py ├── historicalFinancials │ ├── __init__.py │ ├── test_get_financials_historical_category.py │ ├── test_get_financials_historical_dates.py │ ├── test_get_financials_historical_errors.py │ ├── test_get_financials_historical_output_type.py │ └── test_get_financials_historical_symbol.py ├── historicalMarkets │ ├── __init__.py │ ├── test_fetch_markets_combined.py │ ├── test_fetch_markets_dates.py │ ├── test_fetch_markets_errors.py │ ├── test_fetch_markets_output_type.py │ └── test_fetch_markets_symbol.py ├── indicators │ ├── __init__.py │ ├── test_get_all_countries.py │ ├── test_get_credit_ratings_updates.py │ ├── test_get_discontinued_indicator.py │ ├── test_get_indicator_by_category_group.py │ ├── test_get_indicator_by_ticker.py │ ├── test_get_indicator_changes.py │ ├── test_get_indicator_data.py │ ├── test_get_indicator_data_calendar.py │ ├── test_get_latest_updates.py │ ├── test_get_peers.py │ └── test_get_ratings.py ├── ipo │ ├── __init__.py │ ├── test_get_ipo_basic.py │ ├── test_get_ipo_country.py │ ├── test_get_ipo_dates.py │ ├── test_get_ipo_errors.py │ ├── test_get_ipo_output_type.py │ └── test_get_ipo_ticker.py ├── markets │ ├── __init__.py │ ├── test_get_currency_cross.py │ ├── test_get_markets_by_symbol.py │ ├── test_get_markets_components.py │ ├── test_get_markets_data.py │ ├── test_get_markets_forecasts.py │ ├── test_get_markets_intraday.py │ ├── test_get_markets_peers.py │ └── test_get_markets_search.py ├── news │ ├── __init__.py │ ├── test_get_article_id.py │ ├── test_get_articles.py │ ├── test_get_articles_dates.py │ ├── test_get_articles_pagination.py │ ├── test_get_news_basic.py │ ├── test_get_news_country.py │ ├── test_get_news_dates.py │ ├── test_get_news_errors.py │ ├── test_get_news_indicator.py │ ├── test_get_news_pagination.py │ ├── test_get_news_ticker.py │ └── test_get_news_type.py ├── search │ ├── __init__.py │ ├── test_get_search_basic.py │ ├── test_get_search_category.py │ ├── test_get_search_term.py │ └── test_get_search_term_and_category.py ├── stock_splits │ ├── __init__.py │ ├── test_get_stock_splits_basic.py │ ├── test_get_stock_splits_country.py │ ├── test_get_stock_splits_dates.py │ ├── test_get_stock_splits_errors.py │ └── test_get_stock_splits_ticker.py ├── stream │ ├── __init__.py │ ├── test_build_url.py │ ├── test_on_error.py │ └── test_on_open.py └── worldBank │ ├── __init__.py │ ├── test_get_wb_categories_basic.py │ ├── test_get_wb_categories_category.py │ ├── test_get_wb_country.py │ ├── test_get_wb_errors.py │ ├── test_get_wb_historical.py │ └── test_get_wb_indicator.py └── tradingeconomics ├── __init__.py ├── calendar.py ├── comtrade.py ├── credit_ratings.py ├── dividends.py ├── drafts └── calendar_draft.py ├── earnings.py ├── eurostat.py ├── federalReserve.py ├── financials.py ├── forecasts.py ├── functions.py ├── glob.py ├── historical.py ├── historicalDB.py ├── historicalEurostat.py ├── historicalFinancials.py ├── historicalMarkets.py ├── indicators.py ├── ipo.py ├── markets.py ├── news.py ├── requirements.txt ├── search.py ├── stock_splits.py ├── stream.py └── worldBank.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/README.rst -------------------------------------------------------------------------------- /examples/Indicators/compareHistoricalDataByDate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/Indicators/compareHistoricalDataByDate.py -------------------------------------------------------------------------------- /examples/Indicators/creditRating.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/Indicators/creditRating.csv -------------------------------------------------------------------------------- /examples/Indicators/creditRatingEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/Indicators/creditRatingEx.py -------------------------------------------------------------------------------- /examples/Indicators/indicators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/Indicators/indicators.csv -------------------------------------------------------------------------------- /examples/Indicators/indicatorsEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/Indicators/indicatorsEx.py -------------------------------------------------------------------------------- /examples/Indicators/indicatorsForecastsEx.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/Indicators/indicatorsForecastsEx.csv -------------------------------------------------------------------------------- /examples/Indicators/indicatorsForecastsEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/Indicators/indicatorsForecastsEx.py -------------------------------------------------------------------------------- /examples/Indicators/indicatorsHistoricalEx.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/Indicators/indicatorsHistoricalEx.csv -------------------------------------------------------------------------------- /examples/Indicators/indicatorsHistoricalEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/Indicators/indicatorsHistoricalEx.py -------------------------------------------------------------------------------- /examples/Indicators/latestUpdates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/Indicators/latestUpdates.csv -------------------------------------------------------------------------------- /examples/Indicators/latestUpdatesEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/Indicators/latestUpdatesEx.py -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/calendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/calendar/README.md -------------------------------------------------------------------------------- /examples/calendar/calendar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/calendar/calendar.csv -------------------------------------------------------------------------------- /examples/calendar/calendarApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/calendar/calendarApp.py -------------------------------------------------------------------------------- /examples/calendar/calendarEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/calendar/calendarEx.py -------------------------------------------------------------------------------- /examples/calendar/calendarStreamingEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/calendar/calendarStreamingEx.py -------------------------------------------------------------------------------- /examples/calendar/htmlTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/calendar/htmlTable.png -------------------------------------------------------------------------------- /examples/calendar/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/calendar/static/style.css -------------------------------------------------------------------------------- /examples/calendar/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/calendar/templates/index.html -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/__init__.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/comtrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/comtrade.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/economicCalendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/economicCalendar.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/economic_calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/economic_calendar.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/eurostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/eurostat.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/federalReserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/federalReserve.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/federal_reserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/federal_reserve.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/indicators.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/markets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/markets.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/news.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/operator.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/search.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/section.py -------------------------------------------------------------------------------- /examples/cli_terminal/ClassLibrary/world_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/cli_terminal/ClassLibrary/world_bank.py -------------------------------------------------------------------------------- /examples/comtrade/comtrade.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/comtrade/comtrade.csv -------------------------------------------------------------------------------- /examples/comtrade/comtradeEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/comtrade/comtradeEx.py -------------------------------------------------------------------------------- /examples/eurostat/eurostat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/eurostat/eurostat.csv -------------------------------------------------------------------------------- /examples/eurostat/eurostatEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/eurostat/eurostatEx.py -------------------------------------------------------------------------------- /examples/federalReserve/federalReserve.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/federalReserve/federalReserve.csv -------------------------------------------------------------------------------- /examples/federalReserve/federalReserveEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/federalReserve/federalReserveEx.py -------------------------------------------------------------------------------- /examples/forecasts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/forecasts/README.md -------------------------------------------------------------------------------- /examples/forecasts/forecastsApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/forecasts/forecastsApp.py -------------------------------------------------------------------------------- /examples/forecasts/forecastsTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/forecasts/forecastsTable.png -------------------------------------------------------------------------------- /examples/forecasts/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/forecasts/static/style.css -------------------------------------------------------------------------------- /examples/forecasts/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/forecasts/templates/index.html -------------------------------------------------------------------------------- /examples/historical/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/historical/README.md -------------------------------------------------------------------------------- /examples/historical/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/historical/Untitled.ipynb -------------------------------------------------------------------------------- /examples/historical/bulkHistorical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/historical/bulkHistorical.py -------------------------------------------------------------------------------- /examples/historical/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/historical/chart.png -------------------------------------------------------------------------------- /examples/historical/historicalChart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/historical/historicalChart.py -------------------------------------------------------------------------------- /examples/historical/historicalMultipleCountries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/historical/historicalMultipleCountries.py -------------------------------------------------------------------------------- /examples/jupyter_notebooks/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/jupyter_notebooks/Readme.md -------------------------------------------------------------------------------- /examples/markets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/README.md -------------------------------------------------------------------------------- /examples/markets/earnings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/earnings.csv -------------------------------------------------------------------------------- /examples/markets/earningsEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/earningsEx.py -------------------------------------------------------------------------------- /examples/markets/financials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/financials.csv -------------------------------------------------------------------------------- /examples/markets/financialsEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/financialsEx.py -------------------------------------------------------------------------------- /examples/markets/getEarningsPerShareTTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/getEarningsPerShareTTM.py -------------------------------------------------------------------------------- /examples/markets/getMarketsIntradayRange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/getMarketsIntradayRange.py -------------------------------------------------------------------------------- /examples/markets/getPERatio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/getPERatio.py -------------------------------------------------------------------------------- /examples/markets/historicalMarketsChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/historicalMarketsChart.png -------------------------------------------------------------------------------- /examples/markets/historicalMarketsChart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/historicalMarketsChart.py -------------------------------------------------------------------------------- /examples/markets/intraday.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/intraday.csv -------------------------------------------------------------------------------- /examples/markets/intradayEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/intradayEx.py -------------------------------------------------------------------------------- /examples/markets/marketForecatsEx.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/marketForecatsEx.csv -------------------------------------------------------------------------------- /examples/markets/marketForecatsEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/marketForecatsEx.py -------------------------------------------------------------------------------- /examples/markets/markets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/markets.csv -------------------------------------------------------------------------------- /examples/markets/marketsEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/marketsEx.py -------------------------------------------------------------------------------- /examples/markets/marketsHistoricalEx.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/marketsHistoricalEx.csv -------------------------------------------------------------------------------- /examples/markets/marketsHistoricalEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/marketsHistoricalEx.py -------------------------------------------------------------------------------- /examples/markets/marketsStreamingEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/markets/marketsStreamingEx.py -------------------------------------------------------------------------------- /examples/news/latestArticlesEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/news/latestArticlesEx.py -------------------------------------------------------------------------------- /examples/news/latestNewsEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/news/latestNewsEx.py -------------------------------------------------------------------------------- /examples/news/news.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/news/news.csv -------------------------------------------------------------------------------- /examples/news/newsStreamingEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/news/newsStreamingEx.py -------------------------------------------------------------------------------- /examples/search/search.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/search/search.csv -------------------------------------------------------------------------------- /examples/search/searchEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/search/searchEx.py -------------------------------------------------------------------------------- /examples/stream-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/stream-python/README.md -------------------------------------------------------------------------------- /examples/stream-python/app-v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/stream-python/app-v2.py -------------------------------------------------------------------------------- /examples/stream-python/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/stream-python/app.py -------------------------------------------------------------------------------- /examples/worldBank/worldBank.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/worldBank/worldBank.csv -------------------------------------------------------------------------------- /examples/worldBank/worldBankEx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/examples/worldBank/worldBankEx.py -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/run_tests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_test_calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/_test_calendar.py -------------------------------------------------------------------------------- /tests/_test_credit_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/_test_credit_ratings.py -------------------------------------------------------------------------------- /tests/_test_dividends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/_test_dividends.py -------------------------------------------------------------------------------- /tests/_test_forecasts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/_test_forecasts.py -------------------------------------------------------------------------------- /tests/_test_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/_test_indicators.py -------------------------------------------------------------------------------- /tests/_test_ipo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/_test_ipo.py -------------------------------------------------------------------------------- /tests/_test_stockSplits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/_test_stockSplits.py -------------------------------------------------------------------------------- /tests/calendar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/calendar/test_calendar_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/calendar/test_calendar_unit.py -------------------------------------------------------------------------------- /tests/comtrade/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/comtrade/test_check_cmt_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/comtrade/test_check_cmt_country.py -------------------------------------------------------------------------------- /tests/comtrade/test_check_cmt_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/comtrade/test_check_cmt_page.py -------------------------------------------------------------------------------- /tests/comtrade/test_get_cmt_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/comtrade/test_get_cmt_categories.py -------------------------------------------------------------------------------- /tests/comtrade/test_get_cmt_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/comtrade/test_get_cmt_country.py -------------------------------------------------------------------------------- /tests/comtrade/test_get_cmt_country_by_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/comtrade/test_get_cmt_country_by_category.py -------------------------------------------------------------------------------- /tests/comtrade/test_get_cmt_country_filter_by_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/comtrade/test_get_cmt_country_filter_by_type.py -------------------------------------------------------------------------------- /tests/comtrade/test_get_cmt_historical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/comtrade/test_get_cmt_historical.py -------------------------------------------------------------------------------- /tests/comtrade/test_get_cmt_last_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/comtrade/test_get_cmt_last_updates.py -------------------------------------------------------------------------------- /tests/comtrade/test_get_cmt_snapshot_by_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/comtrade/test_get_cmt_snapshot_by_type.py -------------------------------------------------------------------------------- /tests/comtrade/test_get_cmt_total_by_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/comtrade/test_get_cmt_total_by_type.py -------------------------------------------------------------------------------- /tests/comtrade/test_get_cmt_two_countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/comtrade/test_get_cmt_two_countries.py -------------------------------------------------------------------------------- /tests/comtrade/test_get_cmt_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/comtrade/test_get_cmt_updates.py -------------------------------------------------------------------------------- /tests/credit_ratings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/credit_ratings/test_get_credit_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/credit_ratings/test_get_credit_ratings.py -------------------------------------------------------------------------------- /tests/credit_ratings/test_get_historical_credit_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/credit_ratings/test_get_historical_credit_ratings.py -------------------------------------------------------------------------------- /tests/dividends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dividends/test_get_dividends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/dividends/test_get_dividends.py -------------------------------------------------------------------------------- /tests/earnings/test_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/earnings/test_country.py -------------------------------------------------------------------------------- /tests/earnings/test_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/earnings/test_dates.py -------------------------------------------------------------------------------- /tests/earnings/test_get_earnings_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/earnings/test_get_earnings_type.py -------------------------------------------------------------------------------- /tests/earnings/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/earnings/test_index.py -------------------------------------------------------------------------------- /tests/earnings/test_missing_api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/earnings/test_missing_api_key.py -------------------------------------------------------------------------------- /tests/earnings/test_no_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/earnings/test_no_parameters.py -------------------------------------------------------------------------------- /tests/earnings/test_precedence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/earnings/test_precedence.py -------------------------------------------------------------------------------- /tests/earnings/test_sector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/earnings/test_sector.py -------------------------------------------------------------------------------- /tests/earnings/test_symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/earnings/test_symbols.py -------------------------------------------------------------------------------- /tests/eurostat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/eurostat/test_get_eurostat_category_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/eurostat/test_get_eurostat_category_groups.py -------------------------------------------------------------------------------- /tests/eurostat/test_get_eurostat_countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/eurostat/test_get_eurostat_countries.py -------------------------------------------------------------------------------- /tests/eurostat/test_get_eurostat_data_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/eurostat/test_get_eurostat_data_category.py -------------------------------------------------------------------------------- /tests/eurostat/test_get_eurostat_data_category_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/eurostat/test_get_eurostat_data_category_group.py -------------------------------------------------------------------------------- /tests/eurostat/test_get_eurostat_data_combined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/eurostat/test_get_eurostat_data_combined.py -------------------------------------------------------------------------------- /tests/eurostat/test_get_eurostat_data_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/eurostat/test_get_eurostat_data_country.py -------------------------------------------------------------------------------- /tests/eurostat/test_get_eurostat_data_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/eurostat/test_get_eurostat_data_lists.py -------------------------------------------------------------------------------- /tests/eurostat/test_get_eurostat_data_no_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/eurostat/test_get_eurostat_data_no_parameters.py -------------------------------------------------------------------------------- /tests/eurostat/test_get_eurostat_data_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/eurostat/test_get_eurostat_data_symbol.py -------------------------------------------------------------------------------- /tests/federalReserve/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/federalReserve/test_get_fed_r_county.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/federalReserve/test_get_fed_r_county.py -------------------------------------------------------------------------------- /tests/federalReserve/test_get_fed_r_historical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/federalReserve/test_get_fed_r_historical.py -------------------------------------------------------------------------------- /tests/federalReserve/test_get_fed_r_snaps_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/federalReserve/test_get_fed_r_snaps_country.py -------------------------------------------------------------------------------- /tests/federalReserve/test_get_fed_r_snaps_county.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/federalReserve/test_get_fed_r_snaps_county.py -------------------------------------------------------------------------------- /tests/federalReserve/test_get_fed_r_snaps_no_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/federalReserve/test_get_fed_r_snaps_no_parameters.py -------------------------------------------------------------------------------- /tests/federalReserve/test_get_fed_r_snaps_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/federalReserve/test_get_fed_r_snaps_state.py -------------------------------------------------------------------------------- /tests/federalReserve/test_get_fed_r_snaps_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/federalReserve/test_get_fed_r_snaps_symbol.py -------------------------------------------------------------------------------- /tests/federalReserve/test_get_fed_r_snaps_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/federalReserve/test_get_fed_r_snaps_url.py -------------------------------------------------------------------------------- /tests/federalReserve/test_get_fed_r_states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/federalReserve/test_get_fed_r_states.py -------------------------------------------------------------------------------- /tests/financials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/financials/test_get_financials_category_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/financials/test_get_financials_category_list.py -------------------------------------------------------------------------------- /tests/financials/test_get_financials_data_by_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/financials/test_get_financials_data_by_category.py -------------------------------------------------------------------------------- /tests/financials/test_get_financials_data_by_category_no_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/financials/test_get_financials_data_by_category_no_parameter.py -------------------------------------------------------------------------------- /tests/financials/test_get_financials_data_conflict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/financials/test_get_financials_data_conflict.py -------------------------------------------------------------------------------- /tests/financials/test_get_financials_data_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/financials/test_get_financials_data_country.py -------------------------------------------------------------------------------- /tests/financials/test_get_financials_data_no_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/financials/test_get_financials_data_no_parameters.py -------------------------------------------------------------------------------- /tests/financials/test_get_financials_data_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/financials/test_get_financials_data_symbol.py -------------------------------------------------------------------------------- /tests/financials/test_get_sectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/financials/test_get_sectors.py -------------------------------------------------------------------------------- /tests/forecasts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/forecasts/test_get_forecast_by_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/forecasts/test_get_forecast_by_ticker.py -------------------------------------------------------------------------------- /tests/forecasts/test_get_forecast_by_ticker_no_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/forecasts/test_get_forecast_by_ticker_no_parameter.py -------------------------------------------------------------------------------- /tests/forecasts/test_get_forecast_data_combined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/forecasts/test_get_forecast_data_combined.py -------------------------------------------------------------------------------- /tests/forecasts/test_get_forecast_data_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/forecasts/test_get_forecast_data_country.py -------------------------------------------------------------------------------- /tests/forecasts/test_get_forecast_data_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/forecasts/test_get_forecast_data_indicator.py -------------------------------------------------------------------------------- /tests/forecasts/test_get_forecast_data_no_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/forecasts/test_get_forecast_data_no_parameters.py -------------------------------------------------------------------------------- /tests/forecasts/test_get_forecast_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/forecasts/test_get_forecast_updates.py -------------------------------------------------------------------------------- /tests/historical/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/historical/test_get_historical_by_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historical/test_get_historical_by_ticker.py -------------------------------------------------------------------------------- /tests/historical/test_get_historical_by_ticker_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historical/test_get_historical_by_ticker_errors.py -------------------------------------------------------------------------------- /tests/historical/test_get_historical_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historical/test_get_historical_data.py -------------------------------------------------------------------------------- /tests/historical/test_get_historical_data_date_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historical/test_get_historical_data_date_errors.py -------------------------------------------------------------------------------- /tests/historical/test_get_historical_data_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historical/test_get_historical_data_multiple.py -------------------------------------------------------------------------------- /tests/historical/test_get_historical_latest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historical/test_get_historical_latest.py -------------------------------------------------------------------------------- /tests/historical/test_get_historical_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historical/test_get_historical_ratings.py -------------------------------------------------------------------------------- /tests/historical/test_get_historical_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historical/test_get_historical_updates.py -------------------------------------------------------------------------------- /tests/historicalDB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/historicalDB/test_get_historical_comtrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalDB/test_get_historical_comtrade.py -------------------------------------------------------------------------------- /tests/historicalDB/test_get_historical_end_date_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalDB/test_get_historical_end_date_only.py -------------------------------------------------------------------------------- /tests/historicalDB/test_get_historical_fred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalDB/test_get_historical_fred.py -------------------------------------------------------------------------------- /tests/historicalDB/test_get_historical_markets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalDB/test_get_historical_markets.py -------------------------------------------------------------------------------- /tests/historicalDB/test_get_historical_output_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalDB/test_get_historical_output_type.py -------------------------------------------------------------------------------- /tests/historicalDB/test_get_historical_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalDB/test_get_historical_ticker.py -------------------------------------------------------------------------------- /tests/historicalDB/test_get_historical_worldbank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalDB/test_get_historical_worldbank.py -------------------------------------------------------------------------------- /tests/historicalEurostat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/historicalEurostat/test_get_historical_eurostat_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalEurostat/test_get_historical_eurostat_dates.py -------------------------------------------------------------------------------- /tests/historicalEurostat/test_get_historical_eurostat_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalEurostat/test_get_historical_eurostat_errors.py -------------------------------------------------------------------------------- /tests/historicalEurostat/test_get_historical_eurostat_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalEurostat/test_get_historical_eurostat_id.py -------------------------------------------------------------------------------- /tests/historicalEurostat/test_get_historical_eurostat_output_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalEurostat/test_get_historical_eurostat_output_type.py -------------------------------------------------------------------------------- /tests/historicalFinancials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/historicalFinancials/test_get_financials_historical_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalFinancials/test_get_financials_historical_category.py -------------------------------------------------------------------------------- /tests/historicalFinancials/test_get_financials_historical_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalFinancials/test_get_financials_historical_dates.py -------------------------------------------------------------------------------- /tests/historicalFinancials/test_get_financials_historical_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalFinancials/test_get_financials_historical_errors.py -------------------------------------------------------------------------------- /tests/historicalFinancials/test_get_financials_historical_output_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalFinancials/test_get_financials_historical_output_type.py -------------------------------------------------------------------------------- /tests/historicalFinancials/test_get_financials_historical_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalFinancials/test_get_financials_historical_symbol.py -------------------------------------------------------------------------------- /tests/historicalMarkets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/historicalMarkets/test_fetch_markets_combined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalMarkets/test_fetch_markets_combined.py -------------------------------------------------------------------------------- /tests/historicalMarkets/test_fetch_markets_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalMarkets/test_fetch_markets_dates.py -------------------------------------------------------------------------------- /tests/historicalMarkets/test_fetch_markets_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalMarkets/test_fetch_markets_errors.py -------------------------------------------------------------------------------- /tests/historicalMarkets/test_fetch_markets_output_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalMarkets/test_fetch_markets_output_type.py -------------------------------------------------------------------------------- /tests/historicalMarkets/test_fetch_markets_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/historicalMarkets/test_fetch_markets_symbol.py -------------------------------------------------------------------------------- /tests/indicators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/indicators/test_get_all_countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/indicators/test_get_all_countries.py -------------------------------------------------------------------------------- /tests/indicators/test_get_credit_ratings_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/indicators/test_get_credit_ratings_updates.py -------------------------------------------------------------------------------- /tests/indicators/test_get_discontinued_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/indicators/test_get_discontinued_indicator.py -------------------------------------------------------------------------------- /tests/indicators/test_get_indicator_by_category_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/indicators/test_get_indicator_by_category_group.py -------------------------------------------------------------------------------- /tests/indicators/test_get_indicator_by_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/indicators/test_get_indicator_by_ticker.py -------------------------------------------------------------------------------- /tests/indicators/test_get_indicator_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/indicators/test_get_indicator_changes.py -------------------------------------------------------------------------------- /tests/indicators/test_get_indicator_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/indicators/test_get_indicator_data.py -------------------------------------------------------------------------------- /tests/indicators/test_get_indicator_data_calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/indicators/test_get_indicator_data_calendar.py -------------------------------------------------------------------------------- /tests/indicators/test_get_latest_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/indicators/test_get_latest_updates.py -------------------------------------------------------------------------------- /tests/indicators/test_get_peers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/indicators/test_get_peers.py -------------------------------------------------------------------------------- /tests/indicators/test_get_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/indicators/test_get_ratings.py -------------------------------------------------------------------------------- /tests/ipo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/ipo/test_get_ipo_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/ipo/test_get_ipo_basic.py -------------------------------------------------------------------------------- /tests/ipo/test_get_ipo_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/ipo/test_get_ipo_country.py -------------------------------------------------------------------------------- /tests/ipo/test_get_ipo_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/ipo/test_get_ipo_dates.py -------------------------------------------------------------------------------- /tests/ipo/test_get_ipo_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/ipo/test_get_ipo_errors.py -------------------------------------------------------------------------------- /tests/ipo/test_get_ipo_output_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/ipo/test_get_ipo_output_type.py -------------------------------------------------------------------------------- /tests/ipo/test_get_ipo_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/ipo/test_get_ipo_ticker.py -------------------------------------------------------------------------------- /tests/markets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/markets/test_get_currency_cross.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/markets/test_get_currency_cross.py -------------------------------------------------------------------------------- /tests/markets/test_get_markets_by_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/markets/test_get_markets_by_symbol.py -------------------------------------------------------------------------------- /tests/markets/test_get_markets_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/markets/test_get_markets_components.py -------------------------------------------------------------------------------- /tests/markets/test_get_markets_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/markets/test_get_markets_data.py -------------------------------------------------------------------------------- /tests/markets/test_get_markets_forecasts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/markets/test_get_markets_forecasts.py -------------------------------------------------------------------------------- /tests/markets/test_get_markets_intraday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/markets/test_get_markets_intraday.py -------------------------------------------------------------------------------- /tests/markets/test_get_markets_peers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/markets/test_get_markets_peers.py -------------------------------------------------------------------------------- /tests/markets/test_get_markets_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/markets/test_get_markets_search.py -------------------------------------------------------------------------------- /tests/news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/news/test_get_article_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/news/test_get_article_id.py -------------------------------------------------------------------------------- /tests/news/test_get_articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/news/test_get_articles.py -------------------------------------------------------------------------------- /tests/news/test_get_articles_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/news/test_get_articles_dates.py -------------------------------------------------------------------------------- /tests/news/test_get_articles_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/news/test_get_articles_pagination.py -------------------------------------------------------------------------------- /tests/news/test_get_news_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/news/test_get_news_basic.py -------------------------------------------------------------------------------- /tests/news/test_get_news_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/news/test_get_news_country.py -------------------------------------------------------------------------------- /tests/news/test_get_news_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/news/test_get_news_dates.py -------------------------------------------------------------------------------- /tests/news/test_get_news_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/news/test_get_news_errors.py -------------------------------------------------------------------------------- /tests/news/test_get_news_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/news/test_get_news_indicator.py -------------------------------------------------------------------------------- /tests/news/test_get_news_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/news/test_get_news_pagination.py -------------------------------------------------------------------------------- /tests/news/test_get_news_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/news/test_get_news_ticker.py -------------------------------------------------------------------------------- /tests/news/test_get_news_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/news/test_get_news_type.py -------------------------------------------------------------------------------- /tests/search/__init__.py: -------------------------------------------------------------------------------- 1 | # Search tests module 2 | -------------------------------------------------------------------------------- /tests/search/test_get_search_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/search/test_get_search_basic.py -------------------------------------------------------------------------------- /tests/search/test_get_search_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/search/test_get_search_category.py -------------------------------------------------------------------------------- /tests/search/test_get_search_term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/search/test_get_search_term.py -------------------------------------------------------------------------------- /tests/search/test_get_search_term_and_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/search/test_get_search_term_and_category.py -------------------------------------------------------------------------------- /tests/stock_splits/__init__.py: -------------------------------------------------------------------------------- 1 | # Stock splits tests module 2 | -------------------------------------------------------------------------------- /tests/stock_splits/test_get_stock_splits_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/stock_splits/test_get_stock_splits_basic.py -------------------------------------------------------------------------------- /tests/stock_splits/test_get_stock_splits_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/stock_splits/test_get_stock_splits_country.py -------------------------------------------------------------------------------- /tests/stock_splits/test_get_stock_splits_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/stock_splits/test_get_stock_splits_dates.py -------------------------------------------------------------------------------- /tests/stock_splits/test_get_stock_splits_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/stock_splits/test_get_stock_splits_errors.py -------------------------------------------------------------------------------- /tests/stock_splits/test_get_stock_splits_ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/stock_splits/test_get_stock_splits_ticker.py -------------------------------------------------------------------------------- /tests/stream/__init__.py: -------------------------------------------------------------------------------- 1 | # Stream tests module 2 | -------------------------------------------------------------------------------- /tests/stream/test_build_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/stream/test_build_url.py -------------------------------------------------------------------------------- /tests/stream/test_on_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/stream/test_on_error.py -------------------------------------------------------------------------------- /tests/stream/test_on_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/stream/test_on_open.py -------------------------------------------------------------------------------- /tests/worldBank/__init__.py: -------------------------------------------------------------------------------- 1 | # WorldBank tests module 2 | -------------------------------------------------------------------------------- /tests/worldBank/test_get_wb_categories_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/worldBank/test_get_wb_categories_basic.py -------------------------------------------------------------------------------- /tests/worldBank/test_get_wb_categories_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/worldBank/test_get_wb_categories_category.py -------------------------------------------------------------------------------- /tests/worldBank/test_get_wb_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/worldBank/test_get_wb_country.py -------------------------------------------------------------------------------- /tests/worldBank/test_get_wb_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/worldBank/test_get_wb_errors.py -------------------------------------------------------------------------------- /tests/worldBank/test_get_wb_historical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/worldBank/test_get_wb_historical.py -------------------------------------------------------------------------------- /tests/worldBank/test_get_wb_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tests/worldBank/test_get_wb_indicator.py -------------------------------------------------------------------------------- /tradingeconomics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/__init__.py -------------------------------------------------------------------------------- /tradingeconomics/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/calendar.py -------------------------------------------------------------------------------- /tradingeconomics/comtrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/comtrade.py -------------------------------------------------------------------------------- /tradingeconomics/credit_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/credit_ratings.py -------------------------------------------------------------------------------- /tradingeconomics/dividends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/dividends.py -------------------------------------------------------------------------------- /tradingeconomics/drafts/calendar_draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/drafts/calendar_draft.py -------------------------------------------------------------------------------- /tradingeconomics/earnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/earnings.py -------------------------------------------------------------------------------- /tradingeconomics/eurostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/eurostat.py -------------------------------------------------------------------------------- /tradingeconomics/federalReserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/federalReserve.py -------------------------------------------------------------------------------- /tradingeconomics/financials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/financials.py -------------------------------------------------------------------------------- /tradingeconomics/forecasts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/forecasts.py -------------------------------------------------------------------------------- /tradingeconomics/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/functions.py -------------------------------------------------------------------------------- /tradingeconomics/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/glob.py -------------------------------------------------------------------------------- /tradingeconomics/historical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/historical.py -------------------------------------------------------------------------------- /tradingeconomics/historicalDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/historicalDB.py -------------------------------------------------------------------------------- /tradingeconomics/historicalEurostat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/historicalEurostat.py -------------------------------------------------------------------------------- /tradingeconomics/historicalFinancials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/historicalFinancials.py -------------------------------------------------------------------------------- /tradingeconomics/historicalMarkets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/historicalMarkets.py -------------------------------------------------------------------------------- /tradingeconomics/indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/indicators.py -------------------------------------------------------------------------------- /tradingeconomics/ipo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/ipo.py -------------------------------------------------------------------------------- /tradingeconomics/markets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/markets.py -------------------------------------------------------------------------------- /tradingeconomics/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/news.py -------------------------------------------------------------------------------- /tradingeconomics/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/requirements.txt -------------------------------------------------------------------------------- /tradingeconomics/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/search.py -------------------------------------------------------------------------------- /tradingeconomics/stock_splits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/stock_splits.py -------------------------------------------------------------------------------- /tradingeconomics/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/stream.py -------------------------------------------------------------------------------- /tradingeconomics/worldBank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tradingeconomics/tradingeconomics-python/HEAD/tradingeconomics/worldBank.py --------------------------------------------------------------------------------