Skip to content

Instantly share code, notes, and snippets.

View Th3redTea's full-sized avatar
💭
We shall never surreeeendaaah!

TheRedTea Th3redTea

💭
We shall never surreeeendaaah!
View GitHub Profile
@Th3redTea
Th3redTea / traing.py
Created April 3, 2017 10:49
start of the avito's scraper
#!/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
@Th3redTea
Th3redTea / movie_scraper.py
Last active March 27, 2017 21:56
add some useful comments
#!/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