import ClientConstants as CC import ClientData import HydrusConstants as HC import os import wx def GetClientDefaultOptions(): options = {} options[ 'play_dumper_noises' ] = True options[ 'default_sort' ] = 0 options[ 'default_collect' ] = None options[ 'export_path' ] = None options[ 'hpos' ] = 400 options[ 'vpos' ] = 700 options[ 'exclude_deleted_files' ] = False options[ 'thumbnail_cache_size' ] = 25 * 1048576 options[ 'preview_cache_size' ] = 15 * 1048576 options[ 'fullscreen_cache_size' ] = 150 * 1048576 options[ 'thumbnail_dimensions' ] = [ 150, 125 ] options[ 'password' ] = None options[ 'num_autocomplete_chars' ] = 2 options[ 'gui_capitalisation' ] = False options[ 'default_gui_session' ] = 'just a blank page' options[ 'ac_timings' ] = ( 3, 500, 250 ) options[ 'thread_checker_timings' ] = ( 3, 1200 ) options[ 'idle_period' ] = 60 * 30 options[ 'maintenance_delete_orphans_period' ] = 86400 * 3 options[ 'maintenance_vacuum_period' ] = 86400 * 5 options[ 'fit_to_canvas' ] = False options[ 'trash_max_age' ] = 72 options[ 'trash_max_size' ] = 512 options[ 'remove_trashed_files' ] = False system_predicates = {} system_predicates[ 'age' ] = ( '<', 0, 0, 7, 0 ) system_predicates[ 'duration' ] = ( '>', 0 ) system_predicates[ 'height' ] = ( '=', 1080 ) system_predicates[ 'limit' ] = 600 system_predicates[ 'mime' ] = HC.IMAGES system_predicates[ 'num_tags' ] = ( '<', 4 ) system_predicates[ 'ratio' ] = ( '=', 16, 9 ) system_predicates[ 'size' ] = ( '<', 200, 1024 ) system_predicates[ 'width' ] = ( '=', 1920 ) system_predicates[ 'num_words' ] = ( '<', 30000 ) system_predicates[ 'num_pixels' ] = ( u'\u2248', 2, 1000000 ) system_predicates[ 'hamming_distance' ] = 5 options[ 'file_system_predicates' ] = system_predicates default_namespace_colours = {} default_namespace_colours[ 'system' ] = ( 153, 101, 21 ) default_namespace_colours[ 'creator' ] = ( 170, 0, 0 ) default_namespace_colours[ 'character' ] = ( 0, 170, 0 ) default_namespace_colours[ 'series' ] = ( 170, 0, 170 ) default_namespace_colours[ None ] = ( 114, 160, 193 ) default_namespace_colours[ '' ] = ( 0, 111, 250 ) options[ 'namespace_colours' ] = default_namespace_colours default_gui_colours = {} default_gui_colours[ 'thumb_background' ] = ( 255, 255, 255 ) default_gui_colours[ 'thumb_background_selected' ] = ( 217, 242, 255 ) # light blue default_gui_colours[ 'thumb_background_remote' ] = ( 32, 32, 36 ) # 50% Payne's Gray default_gui_colours[ 'thumb_background_remote_selected' ] = ( 64, 64, 72 ) # Payne's Gray default_gui_colours[ 'thumb_border' ] = ( 223, 227, 230 ) # light grey default_gui_colours[ 'thumb_border_selected' ] = ( 1, 17, 26 ) # dark grey default_gui_colours[ 'thumb_border_remote' ] = ( 248, 208, 204 ) # 25% Vermillion, 75% White default_gui_colours[ 'thumb_border_remote_selected' ] = ( 227, 66, 52 ) # Vermillion, lol default_gui_colours[ 'thumbgrid_background' ] = ( 255, 255, 255 ) default_gui_colours[ 'autocomplete_background' ] = ( 235, 248, 255 ) # very light blue default_gui_colours[ 'media_background' ] = ( 255, 255, 255 ) default_gui_colours[ 'media_text' ] = ( 0, 0, 0 ) default_gui_colours[ 'tags_box' ] = ( 255, 255, 255 ) options[ 'gui_colours' ] = default_gui_colours default_sort_by_choices = [] default_sort_by_choices.append( ( 'namespaces', [ 'series', 'creator', 'title', 'volume', 'chapter', 'page' ] ) ) default_sort_by_choices.append( ( 'namespaces', [ 'creator', 'series', 'title', 'volume', 'chapter', 'page' ] ) ) options[ 'sort_by' ] = default_sort_by_choices options[ 'show_all_tags_in_autocomplete' ] = True options[ 'default_advanced_tag_options' ] = {} shortcuts = {} shortcuts[ wx.ACCEL_NORMAL ] = {} shortcuts[ wx.ACCEL_CTRL ] = {} shortcuts[ wx.ACCEL_ALT ] = {} shortcuts[ wx.ACCEL_SHIFT ] = {} shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_F3 ] = 'manage_tags' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_F4 ] = 'manage_ratings' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_F5 ] = 'refresh' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_F7 ] = 'archive' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_F12 ] = 'filter' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_F9 ] = 'new_page' shortcuts[ wx.ACCEL_NORMAL ][ ord( 'F' ) ] = 'fullscreen_switch' shortcuts[ wx.ACCEL_SHIFT ][ wx.WXK_F7 ] = 'inbox' shortcuts[ wx.ACCEL_CTRL ][ ord( 'B' ) ] = 'frame_back' shortcuts[ wx.ACCEL_CTRL ][ ord( 'N' ) ] = 'frame_next' shortcuts[ wx.ACCEL_CTRL ][ ord( 'T' ) ] = 'new_page' shortcuts[ wx.ACCEL_CTRL ][ ord( 'W' ) ] = 'close_page' shortcuts[ wx.ACCEL_CTRL ][ ord( 'R' ) ] = 'show_hide_splitters' shortcuts[ wx.ACCEL_CTRL ][ ord( 'S' ) ] = 'set_search_focus' shortcuts[ wx.ACCEL_CTRL ][ ord( 'M' ) ] = 'set_media_focus' shortcuts[ wx.ACCEL_CTRL ][ ord( 'I' ) ] = 'synchronised_wait_switch' shortcuts[ wx.ACCEL_CTRL ][ ord( 'Z' ) ] = 'undo' shortcuts[ wx.ACCEL_CTRL ][ ord( 'Y' ) ] = 'redo' shortcuts[ wx.ACCEL_CTRL ][ ord( 'E' ) ] = 'open_externally' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_UP ] = 'previous' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_LEFT ] = 'previous' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_NUMPAD_UP ] = 'previous' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_NUMPAD_LEFT ] = 'previous' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_PAGEUP ] = 'previous' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_NUMPAD_PAGEUP ] = 'previous' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_DOWN ] = 'next' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_RIGHT ] = 'next' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_NUMPAD_DOWN ] = 'next' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_NUMPAD_RIGHT ] = 'next' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_PAGEDOWN ] = 'next' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_NUMPAD_PAGEDOWN ] = 'next' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_HOME ] = 'first' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_NUMPAD_HOME ] = 'first' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_END ] = 'last' shortcuts[ wx.ACCEL_NORMAL ][ wx.WXK_NUMPAD_END ] = 'last' shortcuts[ wx.ACCEL_SHIFT ][ wx.WXK_UP ] = 'pan_up' shortcuts[ wx.ACCEL_SHIFT ][ wx.WXK_DOWN ] = 'pan_down' shortcuts[ wx.ACCEL_SHIFT ][ wx.WXK_LEFT ] = 'pan_left' shortcuts[ wx.ACCEL_SHIFT ][ wx.WXK_RIGHT ] = 'pan_right' options[ 'proxy' ] = None options[ 'shortcuts' ] = shortcuts options[ 'confirm_client_exit' ] = False options[ 'default_tag_repository' ] = CC.LOCAL_TAG_SERVICE_KEY options[ 'default_tag_sort' ] = CC.SORT_BY_LEXICOGRAPHIC_ASC options[ 'pause_export_folders_sync' ] = False options[ 'pause_import_folders_sync' ] = False options[ 'pause_repo_sync' ] = False options[ 'pause_subs_sync' ] = False options[ 'processing_phase' ] = 0 client_size = {} client_size[ 'gui_fullscreen' ] = False client_size[ 'gui_maximised' ] = True client_size[ 'gui_restored_size' ] = [ 640, 480 ] client_size[ 'gui_restored_position' ] = [ 20, 20 ] client_size[ 'fs_fullscreen' ] = True client_size[ 'fs_maximised' ] = True client_size[ 'fs_restored_size' ] = [ 640, 480 ] client_size[ 'fs_restored_position' ] = [ 20, 20 ] options[ 'client_size' ] = client_size options[ 'local_port' ] = HC.DEFAULT_LOCAL_FILE_PORT return options def GetDefaultImportFileOptions(): options = wx.GetApp().GetOptions() result = {} result[ 'auto_archive' ] = False result[ 'exclude_deleted_files' ] = options[ 'exclude_deleted_files' ] result[ 'min_size' ] = None result[ 'min_resolution' ] = None return result def GetDefaultBoorus(): boorus = {} name = 'gelbooru' search_url = 'http://gelbooru.com/index.php?page=post&s=list&tags=%tags%&pid=%index%' search_separator = '+' advance_by_page_num = False thumb_classname = 'thumb' image_id = None image_data = 'Original image' tag_classnames_to_namespaces = { 'tag-type-general' : '', 'tag-type-character' : 'character', 'tag-type-copyright' : 'series', 'tag-type-artist' : 'creator' } boorus[ 'gelbooru' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) name = 'safebooru' search_url = 'http://safebooru.org/index.php?page=post&s=list&tags=%tags%&pid=%index%' search_separator = '+' advance_by_page_num = False thumb_classname = 'thumb' image_id = None image_data = 'Original image' tag_classnames_to_namespaces = { 'tag-type-general' : '', 'tag-type-character' : 'character', 'tag-type-copyright' : 'series', 'tag-type-artist' : 'creator' } boorus[ 'safebooru' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) name = 'e621' search_url = 'https://e621.net/post/index/%index%/%tags%' search_separator = '%20' advance_by_page_num = True thumb_classname = 'thumb' image_id = None image_data = 'Download' tag_classnames_to_namespaces = { 'tag-type-general' : '', 'tag-type-character' : 'character', 'tag-type-copyright' : 'series', 'tag-type-artist' : 'creator', 'tag-type-species' : 'species' } boorus[ 'e621' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) name = 'rule34@paheal' search_url = 'http://rule34.paheal.net/post/list/%tags%/%index%' search_separator = '%20' advance_by_page_num = True thumb_classname = 'thumb' image_id = 'main_image' image_data = None tag_classnames_to_namespaces = { 'tag_name' : '' } boorus[ 'rule34@paheal' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) name = 'danbooru' search_url = 'http://danbooru.donmai.us/posts?page=%index%&tags=%tags%' search_separator = '%20' advance_by_page_num = True thumb_classname = 'post-preview' image_id = 'image' image_data = None tag_classnames_to_namespaces = { 'category-0' : '', 'category-4' : 'character', 'category-3' : 'series', 'category-1' : 'creator' } boorus[ 'danbooru' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) name = 'mishimmie' search_url = 'http://shimmie.katawa-shoujo.com/post/list/%tags%/%index%' search_separator = '%20' advance_by_page_num = True thumb_classname = 'thumb' image_id = 'main_image' image_data = None tag_classnames_to_namespaces = { 'tag_name' : '' } boorus[ 'mishimmie' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) name = 'rule34@booru.org' search_url = 'http://rule34.xxx/index.php?page=post&s=list&tags=%tags%&pid=%index%' search_separator = '%20' advance_by_page_num = False thumb_classname = 'thumb' image_id = None image_data = 'Original image' tag_classnames_to_namespaces = { 'tag-type-general' : '' } boorus[ 'rule34@booru.org' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) name = 'furry@booru.org' search_url = 'http://furry.booru.org/index.php?page=post&s=list&tags=%tags%&pid=%index%' search_separator = '+' advance_by_page_num = False thumb_classname = 'thumb' image_id = None image_data = 'Original image' tag_classnames_to_namespaces = { 'tag-type-general' : '', 'tag-type-character' : 'character', 'tag-type-copyright' : 'series', 'tag-type-artist' : 'creator' } boorus[ 'furry@booru.org' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) name = 'xbooru' search_url = 'http://xbooru.com/index.php?page=post&s=list&tags=%tags%&pid=%index%' search_separator = '+' advance_by_page_num = False thumb_classname = 'thumb' image_id = None image_data = 'Original image' tag_classnames_to_namespaces = { 'tag-type-general' : '', 'tag-type-character' : 'character', 'tag-type-copyright' : 'series', 'tag-type-artist' : 'creator' } boorus[ 'xbooru' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) name = 'konachan' search_url = 'http://konachan.com/post?page=%index%&tags=%tags%' search_separator = '+' advance_by_page_num = True thumb_classname = 'thumb' image_id = None image_data = 'View larger version' tag_classnames_to_namespaces = { 'tag-type-general' : '', 'tag-type-character' : 'character', 'tag-type-copyright' : 'series', 'tag-type-artist' : 'creator' } boorus[ 'konachan' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) name = 'yande.re' search_url = 'http://yande.re/post?page=%index%&tags=%tags%' search_separator = '+' advance_by_page_num = True thumb_classname = 'thumb' image_id = None image_data = 'View larger version' tag_classnames_to_namespaces = { 'tag-type-general' : '', 'tag-type-character' : 'character', 'tag-type-copyright' : 'series', 'tag-type-artist' : 'creator' } boorus[ 'yande.re' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) name = 'tbib' search_url = 'http://tbib.org/index.php?page=post&s=list&tags=%tags%&pid=%index%' search_separator = '+' advance_by_page_num = False thumb_classname = 'thumb' image_id = None image_data = 'Original image' tag_classnames_to_namespaces = { 'tag-type-general' : '', 'tag-type-character' : 'character', 'tag-type-copyright' : 'series', 'tag-type-artist' : 'creator' } boorus[ 'tbib' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) name = 'sankaku chan' search_url = 'https://chan.sankakucomplex.com/?tags=%tags%&page=%index%' search_separator = '+' advance_by_page_num = True thumb_classname = 'thumb' image_id = 'highres' image_data = None tag_classnames_to_namespaces = { 'tag-type-general' : '', 'tag-type-character' : 'character', 'tag-type-copyright' : 'series', 'tag-type-artist' : 'creator' } boorus[ 'sankaku chan' ] = ClientData.Booru( name, search_url, search_separator, advance_by_page_num, thumb_classname, image_id, image_data, tag_classnames_to_namespaces ) return boorus def GetDefaultImageboards(): imageboards = [] fourchan_common_form_fields = [] fourchan_common_form_fields.append( ( 'resto', CC.FIELD_THREAD_ID, 'thread_id', True ) ) fourchan_common_form_fields.append( ( 'email', CC.FIELD_TEXT, '', True ) ) fourchan_common_form_fields.append( ( 'pwd', CC.FIELD_PASSWORD, '', True ) ) fourchan_common_form_fields.append( ( 'recaptcha_response_field', CC.FIELD_VERIFICATION_RECAPTCHA, '6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc', True ) ) fourchan_common_form_fields.append( ( 'com', CC.FIELD_COMMENT, '', True ) ) fourchan_common_form_fields.append( ( 'upfile', CC.FIELD_FILE, '', True ) ) fourchan_common_form_fields.append( ( 'mode', CC.FIELD_TEXT, 'regist', False ) ) fourchan_typical_form_fields = list( fourchan_common_form_fields ) fourchan_typical_form_fields.insert( 1, ( 'name', CC.FIELD_TEXT, '', True ) ) fourchan_typical_form_fields.insert( 3, ( 'sub', CC.FIELD_TEXT, '', True ) ) fourchan_anon_form_fields = list( fourchan_common_form_fields ) fourchan_anon_form_fields.insert( 1, ( 'name', CC.FIELD_TEXT, '', False ) ) fourchan_anon_form_fields.insert( 3, ( 'sub', CC.FIELD_TEXT, '', False ) ) fourchan_spoiler_form_fields = list( fourchan_typical_form_fields ) fourchan_spoiler_form_fields.append( ( 'spoiler/on', CC.FIELD_CHECKBOX, 'False', True ) ) GJP = [ HC.IMAGE_GIF, HC.IMAGE_PNG, HC.IMAGE_JPEG ] fourchan_typical_restrictions = { CC.RESTRICTION_MAX_FILE_SIZE : 3145728, CC.RESTRICTION_ALLOWED_MIMES : GJP } fourchan_imageboards = [] fourchan_imageboards.append( ClientData.Imageboard( '/3/', 'https://sys.4chan.org/3/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/a/', 'https://sys.4chan.org/a/post', 75, fourchan_spoiler_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/adv/', 'https://sys.4chan.org/adv/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/an/', 'https://sys.4chan.org/an/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/asp/', 'https://sys.4chan.org/asp/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/b/', 'https://sys.4chan.org/b/post', 75, fourchan_anon_form_fields, { CC.RESTRICTION_MAX_FILE_SIZE : 2097152, CC.RESTRICTION_ALLOWED_MIMES : GJP } ) ) fourchan_imageboards.append( ClientData.Imageboard( '/c/', 'https://sys.4chan.org/c/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/cgl/', 'https://sys.4chan.org/cgl/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/ck/', 'https://sys.4chan.org/ck/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/cm/', 'https://sys.4chan.org/cm/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/co/', 'https://sys.4chan.org/co/post', 75, fourchan_spoiler_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/d/', 'https://sys.4chan.org/d/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/diy/', 'https://sys.4chan.org/diy/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/e/', 'https://sys.4chan.org/e/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/fa/', 'https://sys.4chan.org/fa/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/fit/', 'https://sys.4chan.org/fit/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/g/', 'https://sys.4chan.org/g/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/gd/', 'https://sys.4chan.org/gd/post', 75, fourchan_typical_form_fields, { CC.RESTRICTION_MAX_FILE_SIZE : 8388608, CC.RESTRICTION_ALLOWED_MIMES : [ HC.IMAGE_GIF, HC.IMAGE_PNG, HC.IMAGE_JPEG, HC.APPLICATION_PDF ] } ) ) fourchan_imageboards.append( ClientData.Imageboard( '/gif/', 'https://sys.4chan.org/gif/post', 75, fourchan_typical_form_fields, { CC.RESTRICTION_MAX_FILE_SIZE : 4194304, CC.RESTRICTION_ALLOWED_MIMES : [ HC.IMAGE_GIF ] } ) ) fourchan_imageboards.append( ClientData.Imageboard( '/h/', 'https://sys.4chan.org/h/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/hc/', 'https://sys.4chan.org/hc/post', 75, fourchan_typical_form_fields, { CC.RESTRICTION_MAX_FILE_SIZE : 8388608, CC.RESTRICTION_ALLOWED_MIMES : GJP } ) ) fourchan_imageboards.append( ClientData.Imageboard( '/hm/', 'https://sys.4chan.org/hm/post', 75, fourchan_typical_form_fields, { CC.RESTRICTION_MAX_FILE_SIZE : 8388608, CC.RESTRICTION_ALLOWED_MIMES : GJP } ) ) fourchan_imageboards.append( ClientData.Imageboard( '/hr/', 'https://sys.4chan.org/hr/post', 75, fourchan_typical_form_fields, { CC.RESTRICTION_MAX_FILE_SIZE : 8388608, CC.RESTRICTION_ALLOWED_MIMES : GJP, CC.RESTRICTION_MIN_RESOLUTION : ( 700, 700 ), CC.RESTRICTION_MAX_RESOLUTION : ( 10000, 10000 ) } ) ) fourchan_imageboards.append( ClientData.Imageboard( '/int/', 'https://sys.4chan.org/int/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/jp/', 'https://sys.4chan.org/jp/post', 75, fourchan_spoiler_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/k/', 'https://sys.4chan.org/k/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/lgbt/', 'https://sys.4chan.org/lgbt/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/lit/', 'https://sys.4chan.org/lit/post', 75, fourchan_spoiler_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/m/', 'https://sys.4chan.org/m/post', 75, fourchan_spoiler_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/mlp/', 'https://sys.4chan.org/mlp/post', 75, fourchan_spoiler_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/mu/', 'https://sys.4chan.org/mu/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/n/', 'https://sys.4chan.org/n/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/o/', 'https://sys.4chan.org/o/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/p/', 'https://sys.4chan.org/p/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/po/', 'https://sys.4chan.org/po/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/pol/', 'https://sys.4chan.org/pol/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/r9k/', 'https://sys.4chan.org/r9k/post', 75, fourchan_spoiler_form_fields, { CC.RESTRICTION_MAX_FILE_SIZE : 2097152, CC.RESTRICTION_ALLOWED_MIMES : GJP } ) ) fourchan_imageboards.append( ClientData.Imageboard( '/s/', 'https://sys.4chan.org/s/post', 75, fourchan_typical_form_fields, { CC.RESTRICTION_MAX_FILE_SIZE : 8388608, CC.RESTRICTION_ALLOWED_MIMES : GJP } ) ) fourchan_imageboards.append( ClientData.Imageboard( '/sci/', 'https://sys.4chan.org/sci/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/soc/', 'https://sys.4chan.org/soc/post', 75, fourchan_anon_form_fields, { CC.RESTRICTION_MAX_FILE_SIZE : 2097152, CC.RESTRICTION_ALLOWED_MIMES : GJP } ) ) fourchan_imageboards.append( ClientData.Imageboard( '/sp/', 'https://sys.4chan.org/sp/post', 75, fourchan_typical_form_fields, { CC.RESTRICTION_MAX_FILE_SIZE : 4194304, CC.RESTRICTION_ALLOWED_MIMES : GJP } ) ) fourchan_imageboards.append( ClientData.Imageboard( '/tg/', 'https://sys.4chan.org/tg/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/toy/', 'https://sys.4chan.org/toy/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/trv/', 'https://sys.4chan.org/trv/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/tv/', 'https://sys.4chan.org/tv/post', 75, fourchan_spoiler_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/u/', 'https://sys.4chan.org/u/post', 75, fourchan_spoiler_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/v/', 'https://sys.4chan.org/v/post', 75, fourchan_spoiler_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/vg/', 'https://sys.4chan.org/vg/post', 75, fourchan_spoiler_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/vr/', 'https://sys.4chan.org/vr/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/w/', 'https://sys.4chan.org/w/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/wg/', 'https://sys.4chan.org/wg/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/wsg/', 'https://sys.4chan.org/wsg/post', 75, fourchan_typical_form_fields, { CC.RESTRICTION_MAX_FILE_SIZE : 4194304, CC.RESTRICTION_ALLOWED_MIMES : [ HC.IMAGE_GIF ] } ) ) fourchan_imageboards.append( ClientData.Imageboard( '/x/', 'https://sys.4chan.org/x/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/y/', 'https://sys.4chan.org/y/post', 75, fourchan_typical_form_fields, fourchan_typical_restrictions ) ) fourchan_imageboards.append( ClientData.Imageboard( '/vp/', 'https://sys.4chan.org/vp/post', 75, fourchan_spoiler_form_fields, fourchan_typical_restrictions ) ) imageboards.append( ( '4chan', fourchan_imageboards ) ) return imageboards