Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
DBF is divided into regions, and XML is all in one file (7+ gig uncompressed). I did loading from DBF because it's easier that way. data.nalog.ru/Public/Downloads/20190919/fias_dbf.rar
In DBF, each ADDROBJ table for one region weighs 50 meg, with house data - 4 times more, although in fact most of it is archival data.
I'm not sure at all that excel is capable of chewing this. Better some kind of database engine with indexing.
from dbfread import DBF
table = DBF("ADDROB77.DBF",encoding="cp866")
for row in table:
for i,coll in enumerate(table.field_names):
print("%d %s = %s"%(i,coll,row[coll]))
break#только первая строка для теста
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question