Jupyter

By bamr87

This is the Jupyter Notebook page

Estimated reading time: 1 minutes

Edit on Github
Table of Contents

here are some notes on Jupyter

print("Hello World")

Collection Index - notebooks

page preview image
HTML to markdown web scraping

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

page preview image
Jupyter Notebook to Markdown Converter

```python prerequisites

page preview image
page preview image
Jupyter

here are some notes on Jupyter

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