sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
| import requests | |
| from bs4 import BeautifulSoup | |
| import sys | |
| def get_content(url): | |
| r = requests.get(url) | |
| r.raise_for_status() | |
| return r.text |
| import json | |
| import uuid | |
| from pathlib import Path | |
| from urllib.parse import urlparse | |
| from datetime import datetime | |
| import html2text | |
| import requests | |
| from bs4 import BeautifulSoup |