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

https://github.com/liddiard/gifdatabase

The internet's finest animated GIF search. (until Giphy came around... someone give me $150 million in venture capital?)
https://github.com/liddiard/gifdatabase

django gif postgresql python search-engine

Last synced: 2 months ago
JSON representation

The internet's finest animated GIF search. (until Giphy came around... someone give me $150 million in venture capital?)

Awesome Lists containing this project

README

          

#Colors
- primary: `#0cf`
- warning: `yellow`
- error: `#f88`

#Model Interactions
- Gif created: User += 1
- Gif deleted: User -= 2
- tag goes from unverified to verified: User += 1
+ if is not verified before and is verified after
- tag goes from verified to unverified: User -= 1
+ if tag is verified before and is not verified after
-tag goes from unverified to bad: User -= 1
+ if is not bad before and is bad now
- user stars Gif: Gif.stars += 1
- user unstars Gif: Gif.stars -= 1
- substitution proposal is accepted: User += 1