Spaces:
Running
Running
File size: 239 Bytes
56a1b20 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import requests
import json
import os
import glob
from requests_html import HTMLSession
session = HTMLSession()
r = session.get('http://abdulhaseeb.live/')
r.html.render()
r.html.search('Python 2 will retire in only {months} months!')
|