Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

notion-tqdm

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

notion-tqdm

Progress Bar displayed in Notion like tqdm for Python

  • 0.2.0
  • PyPI
  • Socket score

Maintainers
1

notion-tqdm

PyPI version MIT License

Progress Bar displayed in Notion like tqdm for Python using notion-py.

demo

notion-tqdm inherits from tqdm, so it can be run in the same way as tqdm.

Installation

pip install notion-tqdm

Usage

Preparation

  1. Get Notion's Token for reference here

  2. 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

# Configure
token_v2 = '<token_v2>'
table_url = '<table_url>'
notion_email = '<notion_email>' # For multi-account users
notion_tqdm.set_config(token_v2, table_url, email=notion_email, timezone='Asia/Tokyo')

# Run Iterate
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
# Nest tqdm
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.
# After this setting, the value will be added to the column by default.
# The `machine` column must be added to the table beforehand.
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:
        # ... some process ...
        # The `precision`, `highparam` column must be 
        # added to the table beforehand.
        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}')
image-20201127213525339

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クラスでも積極的に追わなくていいのかなと思いました

元々いろんな事やりたいっすとい

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc