ack
sed
dig
- Arch :
sudo pacman -S ack bind
- Ubuntu :
sudo apt install dnsutils ack sed
from playwright.sync_api import sync_playwright | |
UdemyCourse = "https://www.udemy.com/course/" | |
courseLable = input("Enter the course URL label: ") | |
with sync_playwright() as playwright: | |
browser = playwright.chromium.launch(headless=True) | |
context = browser.new_context() | |
page = context.new_page() | |
page.goto(UdemyCourse + courseLable) |