This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you want BooruSaver on 10.6 and GBBrowser Mac crashes on you. | |
Rightclick GBBrowser's .app file, then in this window go to Contents-> Resources-> Open BooruSaver.saver, then click install. | |
Place the code below into: ~/Library/Preferences/com.vladkorotnev.boorusaver.plist | |
Use either a plist editor or TextWrangler or Nano in terminal. | |
Change 1 under 'absurd' to 0 to allow loading absurdres full images (goes very high on RAM!). If 1, loads sample for absurdres instead of full. | |
Change safebooru.org under 'board' to any Gelbooru-based board without http:// | |
Change 4 under 'delay' to show each picture for more seconds. | |
Change tags under 'tags' to match your favourite search query :P |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# coding=utf8 | |
# do not touch the above or it will freak out | |
try: | |
from BeautifulSoup import BeautifulSoup | |
except: | |
print "REQUIRES BEAUTIFULSOUP!" | |
import urllib | |
import urllib2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from mod_python import apache | |
from BeautifulSoup import BeautifulSoup | |
import urllib | |
import subprocess | |
import random | |
import os,sys | |
import Image |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -- CONFIG ------ | |
isMacQL = 1 # mac quicklook for the lulz | |
debugLogging = 1 # logs | |
rootUrls=["http://gelbooru.com","http://vladkorotnev.dyndns.org:8081/art","http://safebooru.org/"] | |
# ---------------- | |
try: | |
from BeautifulSoup import BeautifulSoup | |
except: |
NewerOlder