-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbored.py
45 lines (38 loc) · 1.73 KB
/
bored.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from bs4 import BeautifulSoup
import requests
import random
import re
import webbrowser
import sys
sys.path.append("..")
from asset.modules.OpenUrl.openurl import openweb
from asset.modules.playvideo.play import playthis
def boredomKiller():
options = ["youtube","fossbytes","moz"]
options = options[random.randint(0,len(options))]
if options == "youtube":
html = requests.get("https://www.youtube.com/feed/trending")
soup = BeautifulSoup(html.text,"html.parser")
finalResults = []
for link in soup.findAll('a', attrs={'href': re.compile("^/watch")}):
finalResults.append(link.get('href'))
uselink = "https://www.youtube.com"+finalResults[random.randint(0,len(finalResults))]
playthis(uselink)
elif options == "fossbytes":
html = requests.get("https://fossbytes.com/most-useful-websites-internet/")
soup = BeautifulSoup(html.text,"html.parser")
results = []
for link in soup.findAll('a', attrs={'href': re.compile("^http|https")}):
results.append(link.get('href'))
finalResults = [result for result in results if not re.search("fossbytes",result)]
uselink = finalResults[random.randint(0,len(finalResults)-1)]
webbrowser.open(uselink,new=2)
else:
html = requests.get("https://moz.com/top500")
soup = BeautifulSoup(html.text,"html.parser")
results = []
for link in soup.findAll('a', attrs={'href': re.compile("^http|https")}):
results.append(link.get('href'))
finalResults = [result for result in results if not re.search("moz",result)]
uselink = finalResults[random.randint(0,len(finalResults)-1)]
webbrowser.open(uselink,new=2)