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/python3 | |
from bs4 import BeautifulSoup | |
from urllib.error import HTTPError | |
import requests | |
def creat_links(): | |
# swimming into the bewsite and grab every deals link |
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/python3 | |
# | |
# So this is a simple example of web sraping using requests and BeautifulSoup | |
# in this scripte I am trying to generate a list of movies with Arabic substitutes based on online.dramacafe.in website | |
# version = 0.1 | |
############################################################################## | |
from bs4 import BeautifulSoup | |
import requests |
NewerOlder