Чуть подробнее и на Хабре:
https://habr.com/ru/articles/991462/
@vban_diary · 238 subscribers
Разное о Visual Basic for Application (VBA)
The short link opens the channel straight in the Telegram app — not in a browser tab.
tg.me/go/vban_diaryIs this your channel? Add @tgme as admin — and see how many people click your links. Get the stats →
Channel created September 3, 2022per Telegram
We have been tracking it since August 22, 2026
In all that time the channel has changed neither its name, nor its @username, nor its avatar.
We show only what we have seen ourselves.
class Person:
id: str = Column("Номер сотрудника")
fullname: str = Column("ф.+и.+о.+", regexp=True)
age: int = Column(lambda n: n.startswith("Возраст"), validator=lambda v: v.isnumeric(), skip_invalid_row=True)
persons = xlea.autoread("persons.xlsx", schema=Person)
for p in person:
print(p.id, p.fullname, p.age)
print(p.asdict())
pip install xlea, btw🌚