Open Source Developers Conf 2015
Script to parse Conference Schedule.
In [6]:
    
import requests
import bs4
    
In [ ]:
    
    
In [9]:
    
reqconf = requests.get('https://2015.osdc.com.au/schedule/')
    
In [10]:
    
bsre = bs4.BeautifulSoup(reqconf.text)
    
    
In [13]:
    
spre = bsre.findAll('span')
    
In [18]:
    
listalk = list()
    
In [ ]:
    
    
In [19]:
    
for spr in spre:
    print (spr.text)
    listalk.append(spr.text)
    
    
In [22]:
    
lisfix =listalk[1:]
    
In [35]:
    
firzlis = list()
    
In [ ]:
    
    
In [36]:
    
for li in lisfix:
    lireps = li.replace('  ', '')
    liqwe = lireps.replace('\n', '')
    firzlis.append(liqwe)
    
In [ ]:
    
    
In [ ]:
    
    
In [39]:
    
for firz in firzlis:
    print (firz)
    
    
In [ ]:
    
    
In [ ]:
    
    
In [ ]:
    
    
In [ ]:
    
    
In [ ]:
    
    
In [ ]:
    
    
In [ ]:
    
    
In [ ]:
    
    
In [ ]:
    
    
In [ ]:
    
    
In [ ]:
    
    
In [ ]: