This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I really want a service where you can enter in 2 wikipedia pages and | |
it will tell you how they relate. It'd be especially cool if someone | |
else made it, so I'm writing up how I think it might be done in | |
Python. | |
Due to the nature of the queries you want to do (how does x relate to | |
y), I think this should end up in a graph database. In this graph | |
database, every page is a node. Links between pages are directed edges | |
in the graph, annotated with the paragraph of text they're linked | |
from. |