Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a basic semantic search in python

I want to write a basic semantic web crawler using Python, I know that semantic apps use RDF files, but what else? I have some Python RDF modules installed and I started learning how they work.

Could you introduce me to the technologies and techniques used in a semantic application?

like image 553
Lynob Avatar asked Aug 07 '11 18:08

Lynob


1 Answers

The next things you might want to learn are:

  • embedding samantic data in HTML - RDFa, microformats, microdata. Some stats: microformats and RDFa deployment across the Web via DAM.co.uk: Microformats and RDFa deployment across the Web
  • querying RDF data - SPARQL
  • most popular ontologies currently in use
  • list of available SPARQL endpoints

You can find some examples of SPARQL queries here. Another notable Q&A resource is semanticweb.com.

like image 75
Lev Khomich Avatar answered Sep 25 '22 17:09

Lev Khomich