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?)
- Host: GitHub
- URL: https://github.com/liddiard/gifdatabase
- Owner: liddiard
- License: other
- Created: 2013-10-02T19:47:54.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2017-03-26T23:43:30.000Z (over 9 years ago)
- Last Synced: 2025-03-28T11:17:00.912Z (over 1 year ago)
- Topics: django, gif, postgresql, python, search-engine
- Language: Python
- Homepage: http://gifdatabase.com
- Size: 841 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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