Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matachi/steam-survey-stats
Plotting Linux's path to domination on Steam
https://github.com/matachi/steam-survey-stats
Last synced: 5 days ago
JSON representation
Plotting Linux's path to domination on Steam
- Host: GitHub
- URL: https://github.com/matachi/steam-survey-stats
- Owner: matachi
- License: gpl-3.0
- Created: 2013-08-21T14:46:27.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-26T21:07:38.000Z (almost 11 years ago)
- Last Synced: 2023-03-14T14:05:22.821Z (over 1 year ago)
- Language: Python
- Size: 285 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Steam Survey Stats
==================License: [GNU GPL version 3 or later](LICENSE)
Charts
------Checkout the charts at
[matachi.github.io/steam-survey-stats](http://matachi.github.io/steam-survey-stats/)Setup
-----1. `virtualenv env`
2. `source env/bin/activate`
3. `pip install beautifulsoup4`Add current Steam survey stats
------------------------------To update the database and the csv file with the latest/current Steam survey
data from
[http://store.steampowered.com/hwsurvey](http://store.steampowered.com/hwsurvey),
run:1. `source env/bin/activate`
2. `./update_stats.py`Add stats from previous Steam survey
------------------------------------Edit and add rows to the SQLite 3 database [raw_stats.db](raw_stats.db) more or
less easily with [Sqliteman](http://sqliteman.com/). Install it on Arch Linux
with `sudo pacman -S sqliteman`. Data from previous Steam surveys can be found
in articles from doing some searches on the net.To update the csv file without retrieving the current stats from the hwsurvey
page, comment out the line `insert_stats_into_database(stats)` in
[update_stats.py](update_stats.py).Libraries
---------* [Beautiful Soup 4](http://www.crummy.com/software/BeautifulSoup/) licensed
under the [MIT
License](http://bazaar.launchpad.net/~leonardr/beautifulsoup/bs4/view/head:/COPYING.txt)
* [Data-Driven Documents](http://d3js.org/) licensed under the [Modified BSD
License](https://github.com/mbostock/d3/blob/master/LICENSE)