Основные макроэкономические показатели города Москвы

Основные макроэкономические показатели города Москвы

Характеристики

Код mainmacroeconomicindicators
Набор данных Основные макроэкономические показатели города Москвы
Объём 10 записей, 16.1 kB
Поля с индексами ReportingPeriod, GrossRegionalProductVolume, GrossRegionalProductDiff, GrossRegionalProductIndex, IndustrialProductionVolume, IndustrialProductionIndex, VolumeofworksperformedbykindofeconomicactivityConstruction, VolumeofworksperformedbykindofeconomicactivityConstructionDiff, Enterthetotalareaofresidentialbuildings, EnterthetotalareaofresidentialbuildingsDiff, InvestmentsInFixedAssets, InvestmentsInFixedAssetsDiff, RetailTradeTurnover, RetailTradeTurnoverDiff, VolumeOfPaidServicesToPopulation, VolumeOfPaidServicesToPopulationDiff, ConsumerPriceIndexAverage, ConsumerPriceIndexDiffToDecember, AverageMonthlyNominalWage, AverageMonthlyNominalWageDiff, RealWages, PerCapitaIncomes, PerCapitaIncomesDiff, RealDisposableIncomeOfPopulation, EconomicallyActivePopulation, NumberOfRegisteredUnemployed, ShareOfRegisteredUnemployed, PopulationAnnualAverage, Births, Births1000Inhabitants, NumberOfDeadMan, NumberOfDeaths1000Inhabitants, NaturalIncreaseOfPopulation, NaturalIncreaseOfPopulationPer1000, DataSource, ExtraInfo, global_id
Дата последнего обновления 2021-10-23 07:47:31.971000

Экспорт данных

Выгрузка в форматах jsonl csv parquet

Доступ

Для некоммерческого использования

Открытое API (не требует ключа доступа)

Для коммерческого использования

Общедоступное API (требуется ключ доступа)

Пример кода (Python3)

import requests
import json

HOSTNAME = "api.crftr.net"
query = {"ReportingPeriod": "Укажите значение для фильтра"}

result = requests.get(
    "https://%s/open/rawapi/v3/datamos/mainmacroeconomicindicators?where=%s"
    % (HOSTNAME, str(query).replace("'", '"'))
).json()
if "_meta" in result.keys() and result["_meta"]["total"] > 0:
    print(json.dumps(result["_items"][0], indent=4, ensure_ascii=False))