├── .gitignore ├── README.md ├── local_booru.py └── localbooru ├── __init__.py ├── data ├── db │ └── .keep ├── static │ ├── complete.js │ ├── counter │ │ ├── 0.gif │ │ ├── 1.gif │ │ ├── 2.gif │ │ ├── 3.gif │ │ ├── 4.gif │ │ ├── 5.gif │ │ ├── 6.gif │ │ ├── 7.gif │ │ ├── 8.gif │ │ └── 9.gif │ ├── counter_animated │ │ ├── 0.gif │ │ ├── 1.gif │ │ ├── 2.gif │ │ ├── 3.gif │ │ ├── 4.gif │ │ ├── 5.gif │ │ ├── 6.gif │ │ ├── 7.gif │ │ ├── 8.gif │ │ └── 9.gif │ ├── default.css │ └── icons │ │ ├── exclamation-small.png │ │ ├── favicon.png │ │ └── question-small-white.png └── tags │ └── .keep ├── settings.py ├── templates ├── base.html ├── frontpage.html ├── list.html ├── tagbase.html └── view.html ├── tools ├── __init__.py ├── common.py ├── db.py ├── settings.py └── tumbler.py └── web ├── __init__.py ├── complete.py ├── ls.py ├── root.py ├── templates.py ├── thumb.py └── view.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.sqlite3 3 | localbooru/data/images 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/README.md -------------------------------------------------------------------------------- /local_booru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/local_booru.py -------------------------------------------------------------------------------- /localbooru/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.1" 2 | -------------------------------------------------------------------------------- /localbooru/data/db/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localbooru/data/static/complete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/complete.js -------------------------------------------------------------------------------- /localbooru/data/static/counter/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter/0.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter/1.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter/2.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter/3.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter/4.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter/5.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter/6.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter/7.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter/8.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter/9.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter_animated/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter_animated/0.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter_animated/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter_animated/1.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter_animated/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter_animated/2.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter_animated/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter_animated/3.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter_animated/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter_animated/4.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter_animated/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter_animated/5.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter_animated/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter_animated/6.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter_animated/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter_animated/7.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter_animated/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter_animated/8.gif -------------------------------------------------------------------------------- /localbooru/data/static/counter_animated/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/counter_animated/9.gif -------------------------------------------------------------------------------- /localbooru/data/static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/default.css -------------------------------------------------------------------------------- /localbooru/data/static/icons/exclamation-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/icons/exclamation-small.png -------------------------------------------------------------------------------- /localbooru/data/static/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/icons/favicon.png -------------------------------------------------------------------------------- /localbooru/data/static/icons/question-small-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/data/static/icons/question-small-white.png -------------------------------------------------------------------------------- /localbooru/data/tags/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localbooru/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/settings.py -------------------------------------------------------------------------------- /localbooru/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/templates/base.html -------------------------------------------------------------------------------- /localbooru/templates/frontpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/templates/frontpage.html -------------------------------------------------------------------------------- /localbooru/templates/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/templates/list.html -------------------------------------------------------------------------------- /localbooru/templates/tagbase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/templates/tagbase.html -------------------------------------------------------------------------------- /localbooru/templates/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/templates/view.html -------------------------------------------------------------------------------- /localbooru/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /localbooru/tools/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/tools/common.py -------------------------------------------------------------------------------- /localbooru/tools/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/tools/db.py -------------------------------------------------------------------------------- /localbooru/tools/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/tools/settings.py -------------------------------------------------------------------------------- /localbooru/tools/tumbler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/tools/tumbler.py -------------------------------------------------------------------------------- /localbooru/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/web/__init__.py -------------------------------------------------------------------------------- /localbooru/web/complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/web/complete.py -------------------------------------------------------------------------------- /localbooru/web/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/web/ls.py -------------------------------------------------------------------------------- /localbooru/web/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/web/root.py -------------------------------------------------------------------------------- /localbooru/web/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/web/templates.py -------------------------------------------------------------------------------- /localbooru/web/thumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/web/thumb.py -------------------------------------------------------------------------------- /localbooru/web/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loadletter/grabber-viewer/HEAD/localbooru/web/view.py --------------------------------------------------------------------------------