Jupyter

By bamr87

This is the Jupyter Notebook page

Estimated reading time: 4 minutes

Edit on Github
Table of Contents

here are some notes on Jupyter

print("Hello World")

Collection Index - notebooks

Default preview image
HTML to markdown web scraping

# install prerequisites %pip install markdownify %pip install requests %pip install pandas

Default preview image
Default preview image
Default preview image
Jupyter

here are some notes on Jupyter

Default preview image
Markdown to Script Converter

python def convert_md_to_bash(md_file_path, bash_file_path): with open(md_file_path, 'r') as md_file, open(bash_file_path, 'w') as bash_file: bas...