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
# SWAMI KARUPPASWAMI THUNNAI | |
import requests | |
import time | |
from bs4 import BeautifulSoup | |
from selenium import webdriver | |
browser = webdriver.Chrome() | |
browser.get("https://www.github.com/login") |
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
{ | |
":laughing:" : ":-d", | |
":neutral_face:" : ":-|", | |
"stuck_out_tongue:" : ":-p", | |
":heart:" : "<3", | |
":simple_smile:" : ":-)", | |
":worried:" : ":-(", | |
":-1:" : "(n)", | |
":thumbsup:" : "(y)", | |
":wink:" : ";-)" |
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
# SWAMI KARUPPASWAMI THUNNAI | |
import urllib.request | |
import json | |
class Shorterner: | |
""" | |
This class is used to shorten the long urls | |
""" | |
__genericAccessToken = None |