notion-tqdm
Progress Bar displayed in Notion like tqdm for Python using notion-py
.
notion-tqdm
inherits from tqdm, so it can be run in the same way as tqdm.
Installation
pip install notion-tqdm
Usage
Preparation
-
Get Notion's Token for reference here
-
Duplicate this page in your own workspace and get the table link.
(Note that it is a table link, not a page link.)
QuickStart
from notion_tqdm import notion_tqdm
from time import sleep
token_v2 = '<token_v2>'
table_url = '<table_url>'
notion_email = '<notion_email>'
notion_tqdm.set_config(token_v2, table_url, email=notion_email, timezone='Asia/Tokyo')
for i in notion_tqdm(range(100), desc='Processing'):
sleep(1)
print(i)
A row representing the progress should be added to the table as shown below.
Example: Running with the Other tqdm
from tqdm.auto import tqdm as tqdm_auto
from time import sleep
tqdm = lambda *args, **kwags: tqdm_auto(notion_tqdm(*args, **kwags))
for i in tqdm(range(100)):
sleep(1)
print(i)
Example: Set Custom Property
Set the common parameters before the iterative process.
notion_tqdm.set_common_props(machine='Jupyter1')
Set the dynamic parameters during the iterative process.
with notion_tqdm(range(50), desc='process') as pbar:
for i in pbar:
pbar.update_props(precision=precision, highparam=highparam)
Example: Add text to a page in table row.
with notion_tqdm(range(500), desc='add text test') as pbar:
for i in pbar:
sleep(1)
pbar.add_text(f'text: {i}')
Example: Timeline View
With Notion's timeline view, you can visualize the execution time of the progress.
Devlop
test
pytest -sv --token_v2 ${{ TOKEN_V2 }} --table_url ${{ TABLE_URL }} --notion_email ${{ NOTION_EMAIL }}
docker build -t notion_tqdm_pytest .
docker run --rm notion_tqdm_pytest pytest -sv --token_v2 680db0e4a89e5f635034110db34cd05f19829070f58e38fedbd362061bfb5ec45a7a8af308e003e3970c166e4c4b8b088eca84a1db027d9a0183780f4396b927da1af88d6a7a577ba702ae6902dc --table_url https://www.notion.so/syunyo/485de72f369e4a268c88649586954a0b?v=3eb3f42f6b3843799cfc36f627461daa --notion_email syunyooo@gmail.com
僕も同じ感じです
・極としてはマルチモーダルに移行していくので、学生が今後NLPしかやりたくないというスタンスであれば基本追わなくてよさそう
・一方で野村さんや吉本さんなど、プロダクトからAILabに行く人は結構いる認識で、そのパターンの人達が当初どういうスタンスで入ってきていたのかは気になってます
なるほどです!吉本さん売り込みもしてたんですね笑
プロダクト→AILab のパターンが減るのではと少し懸念してたんですけど、事例的に問題なさそうなので、XXだけやりたい思考の人はSクラスでも積極的に追わなくていいのかなと思いました
元々いろんな事やりたいっすとい