Parsing Api FreeBase Google data data using C #

I want to find a free google Api database. I want to get the total amount of data. For example, all identifiers of songs or films. I downloaded gds data files. I wonder what would be the best solution to parse the file and get the data I need. I am using .net C #.

+1
source share
1 answer

There are several .NET libraries that can read the RDF dump format:

Data dumps are also formatted as tab-delimited values, so you can use any CSV parser to parse each line as a triple.

Make sure you read the developer docs about how data dumps are printed. In principle, each line forms a triple in which there is a subject, predicate and object. To get all the data about the films, you will look for triples with a predicate starting with / film /.

+1
source

All Articles