Graph database Analysis of the Steam Network
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.5 KiB

  1. # Steam Graph Analysis
  2. This is a project that I threw together during the weekend to play around with
  3. gremlin graph database. Currently this project scrapes the steam API for friends
  4. and their friends which can be used to generate a graph. This information is stored
  5. locally in a gremlin server and is then sent to the client via a web socket.
  6. ![Diagram](website/Diagram.svg)
  7. [Video Of Friends of Friends Graph](https://www.youtube.com/watch?v=DoDaHmyIPvQ)
  8. This project is in the VERY early stages of development and is far from finished.
  9. If you are lucky, you will find it live at [http://steam.jrtechs.net](http://steam.jrtechs.net).
  10. It is still being actively developed and does not have permanent hosting so there is a %60
  11. chance at any time that you will be able to access it.
  12. ![Graph](website/img/jrtechs2.png)
  13. # TODO
  14. * Include a steam name to steam id lookup
  15. * Dockerize this entire environment
  16. * Connect the gremlin/janus server to a HBase server for persistent storage
  17. * Make the graphs look better -- possibly switch from sigma.js to d3
  18. * Get the java web socket to work with ssh -- currently does not work with wss
  19. * Make more graphs to provide more insights
  20. * Friends with friends -- shows which of your friends are friends with each other
  21. * Most common friends friends -- will show you people you may know
  22. * Graph of a larger chunk of the steam community
  23. * ...
  24. * Write more documentation on how the system as a whole works.
  25. * Write blog post on what I learned during this project.