Skip to content

Instantly share code, notes, and snippets.

View ChaitanyaBaweja's full-sized avatar

Chaitanya Baweja ChaitanyaBaweja

View GitHub Profile
virtualenv progress_env
source ./progress_env/bin/activate
pip3 install progress progressbar2 clint click tqdm
from time import sleep
from progress.spinner import MoonSpinner
with MoonSpinner('Processing…') as bar:
for i in range(100):
sleep(0.02)
bar.next()
from time import sleep
from progress.bar import Bar
with Bar('Loading', fill='@', suffix='%(percent).1f%% - %(eta)ds') as bar:
for i in range(100):
sleep(0.02)
bar.next()
from time import sleep
from progress.bar import Bar
with Bar('Processing...') as bar:
for i in range(100):
sleep(0.02)
bar.next()

To Do List

  • Write a Markdown Tutorial
    • Add jokes in it
    • Apologize for the stupid puns
  • Do laundry
First Column Second Column Third Column
Left-align Center-align Right-align
Item 1 Item 2 Item 3

I want to say **bold** without being bold.

Section 1


Section 2


Section 3


Section 4


this phrase is deleted.