This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# lru cache implementation | |
# as params (can) require number of elements to keep in cache | |
# as requirement input data for effective caching should be hashable and comparable ie. able to be used as dict key | |
# 1. build in cache | |
from functools import lru_cache | |
# 2. OrderedDict | |
from collections import OrderedDict | |
from functools import wraps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name_be": "Брыч Леанід Рыгоравіч", | |
"name_ru": "Брич Леонид Григорьевич", | |
"no": 1, | |
"no_name_be": "Брэсцкая-Заходняя акруга № 1", | |
"no_name_ru": "Брестский-Западный округ № 1", | |
"comment_be": "старшыня Пастаяннай камісіі па эканамічнай палітыцы", | |
"comment_ru": "председатель Постоянной комиссии по экономической политике" | |
}, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"state": "Минск", | |
"region": "Советский", | |
"no": 1, | |
"area": [ | |
{ | |
"type": "addr", | |
"stat": "улица", | |
"name": "Л.Е.Маневича", |
NewerOlder