From 3ff5b90380f1af7b817cdfd24f9d9a738b1e1256 Mon Sep 17 00:00:00 2001 From: firedotguy <158167689+firedotguy@users.noreply.github.com> Date: Tue, 10 Feb 2026 12:13:47 +0300 Subject: [PATCH] docs: update banner updare example --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 309d491..2106185 100644 --- a/README.md +++ b/README.md @@ -46,10 +46,9 @@ while True: ```python from itd import ITDClient -c = ITDClient(None, '...') +c = ITDClient(None, 'Ваши cookies') -id = c.upload_file('любое-имя.png', open('реальное-имя-файла.png', 'rb'))['id'] -c.update_profile(banner_id=id) +c.update_banner('имя-файла.png') print('баннер обновлен') ```