Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hamishivi/shrec
A recommendation website for your steam backlog
https://github.com/hamishivi/shrec
collaborative-filtering flask steam website
Last synced: about 1 month ago
JSON representation
A recommendation website for your steam backlog
- Host: GitHub
- URL: https://github.com/hamishivi/shrec
- Owner: hamishivi
- Created: 2017-08-19T03:31:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T00:41:48.000Z (about 2 years ago)
- Last Synced: 2024-04-13T09:13:25.823Z (9 months ago)
- Topics: collaborative-filtering, flask, steam, website
- Language: Python
- Homepage: http://shrec.me
- Size: 91.8 KB
- Stars: 2
- Watchers: 6
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# shrec
Get Shreced## Setting up dev environment
Requirements:
- `virtualenv````sh
virtualenv .env
source .env/bin/activate
pip install -r requirements.txt
```There should be a `config.py` file in the root folder of the project. You can use the following template to create it.
```
STEAM_API_KEY = "1234"
IGDB_API_KEY = "5678"
```## Running the server
```
./run.py
```