mirror of
https://github.com/simon987/chan_feed.git
synced 2025-04-20 02:26:44 +00:00
9 lines
210 B
Python
9 lines
210 B
Python
from chan.json import JsonChanHelper
|
|
|
|
|
|
class JsonKunChanHelper(JsonChanHelper):
|
|
|
|
def image_url(self, board, tim, extension):
|
|
return "%s%s%s%s" % (self._image_url, self._image_path, tim, extension)
|
|
|