This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| from selenium import webdriver | |
| from selenium.webdriver.chrome.service import Service | |
| from selenium.webdriver.common.by import By | |
| from selenium.webdriver.chrome.options import Options | |
| from bs4 import BeautifulSoup | |
| import time | |
| import os | |
| Visited_pages = set() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================ | |
| # PowerShell Profile - Colorful & Informative | |
| # ============================================ | |
| # --- INSTALL THESE ONCE (if not already) --- | |
| # Install-Module -Name Terminal-Icons -Repository PSGallery -Force | |
| # Install-Module -Name PSReadLine -Force -SkipPublisherCheck | |
| # winget install JanDeDobbeleer.OhMyPosh -s winget | |
| # ============================= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| 📄 Markdown to DOCX Converter — FAST Optimized Version | |
| Times New Roman, 12pt — Handles large files in seconds. | |
| """ | |
| import re | |
| from pathlib import Path | |
| import argparse |
OlderNewer