Skip to content

Instantly share code, notes, and snippets.

View notpratheek's full-sized avatar
🙃

Pratheek notpratheek

🙃
  • /dev/null
  • 22:37 (UTC +05:30)
View GitHub Profile
@notpratheek
notpratheek / i3.conf
Created July 14, 2017 04:12 — forked from diyan/i3.conf
i3 tiling window manager configuration
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout somewhen, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see http://i3wm.org/docs/userguide.html for a complete reference!
@notpratheek
notpratheek / Parsing HTML in Python
Created June 15, 2017 01:03 — forked from Gunio/Parsing HTML in Python
Parsing HTML in Python with LXML
import requests
import lxml
from lxml import html
r = requests.get('http://gun.io')
tree = lxml.html.fromstring(r.content)
elements = tree.get_element_by_id('frontsubtext')
for el in elements:
print el.text_content()