This notebook will introduce you to data module.
In [1]:
from disciplines.data import data
print data.__doc__
Here are few ideas of what kind of functions we would like to develop here.
In [2]:
#data.listall() #describes available data
#data.update() #updates data by cheking into resources
#data.backup() #writes a snapshot o data
#data.urls() # lists all known data urls and what kind of information is there
#data.datasets() # lists all
#data.build_ontology() # build ontology out of data stored in sql.
#data.disciplines() #lists all disciplines
#data.persons() #lists all persons
#data.events() #lists all events
#data.learned_societies() #lists all learned societies
Further, what we will do here is do merging of different data
Here we will link data.
few ways of getting dta
Will be done with python tools
In [ ]: