Особенности эмиссии государственных и муниципальных ценных бумаг
Особенности эмиссии государственных ценных и муниципальных ценных бумаг
Характеристики
Код |
issuesecurities |
Набор данных |
Особенности эмиссии государственных и муниципальных ценных бумаг |
Объём |
121 записей, 1.9 MB |
Поля с индексами |
nominalcost, totalnum, typeissue, codetypeissue, orderplace, codeorder, docattachmentecb.filetype, genconditecb.peculexecoblig, genconditecb.codeur, genconditecb.codeform, couponincomeecb.numcoupperiod, couponincomeecb.durperiod, informationset.budgetcycle, informationset.codeclassification, informationset.adsencereason, informationset.noinform, npaecb.registrnum, npaecb.npakind |
Дата последнего обновления |
|
import requests
import json
HOSTNAME = "api.crftr.net"
query = {"nominalcost": "Укажите значение для фильтра"}
result = requests.get(
"https://%s/open/rawapi/v3/budgetgovru/issuesecurities?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))