Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iraycd/django-flickr-explorer
Built an app when i'm bored.
https://github.com/iraycd/django-flickr-explorer
Last synced: 22 days ago
JSON representation
Built an app when i'm bored.
- Host: GitHub
- URL: https://github.com/iraycd/django-flickr-explorer
- Owner: iraycd
- Created: 2013-04-30T20:15:11.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-04-30T20:44:13.000Z (over 11 years ago)
- Last Synced: 2024-10-15T22:53:22.534Z (2 months ago)
- Size: 105 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Django flickr explorer
======================This app was developed just for fun.
What this app do?
-----------------
Get all the popular images from flickr explorer section. Using Flickr API.
API is pretty simple to understand.Installation and Setup:
-----------------------```sh
git clone https://github.com/iraycd/django-flickr-explorer.git
cd django-flickr-explorer
python manage.py syncdb
python manage.py runserver
```- Change the api_key at /apps/flick/views.py to your api_key
- Change the per_page default is set to '50' the max is '500'How does it work?
-----------------
- To get images go to "/get"
- You can see the details using django admin.
- You can view the images on the home page.Worst thing i have done during the design?
------------------------------------------
- Din't use thumbnails.
- Getting the Original images.(Even if the image is 7MB+ it will be loaded)
- Din't compress the image.
- Din't write proper code for getting different image sizes.
- Din't maintain a base.html.
- Din't keep the api_key in settings.py