- Run in bash :
git config --global alias.cmp '!f() { git add -A && git commit -m "$@" && git push; }; f'
- Now, You can use
cmp
command :
git cmp "my commit"
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) |