An open API service indexing awesome lists of open source software.

https://github.com/gil9red/lenta_of_played_games


https://github.com/gil9red/lenta_of_played_games

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# lenta_of_played_games

## Screenshots:

| ![screenshots/1.jpg](screenshots/1.jpg) | ![screenshots/2.jpg](screenshots/2.jpg) |
| --- | --- |

### Known Issues:
* https://github.com/sigmavirus24/github3.py/issues/1019

* Fix: in `\Lib\site-packages\github3\gists\history.py` replace:
```
self.additions = self.change_status["additions"]
self.deletions = self.change_status["deletions"]
self.total = self.change_status["total"]
```
on:
```
self.additions = self.change_status.get("additions")
self.deletions = self.change_status.get("deletions")
self.total = self.change_status.get("total")
```