├── .gitignore ├── .gitmodules ├── .pyup.yml ├── README.md ├── config.py ├── db_migrate.py ├── flags.py ├── logSetup.py ├── main_scrape.py ├── main_web.py ├── manage ├── __init__.py ├── __main__.py ├── cli_utils.py ├── db_manage.py ├── name_importer.py └── scrape_manage.py ├── migrations ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ ├── 46e1cef59e06_fix_pixiv_urls_for_new_format.py │ ├── 80b62107850a_add_kv_store_table.py │ ├── 8e7013c7db9b_.py │ ├── 916e4599f92d_.py │ ├── 9a7aef735c43_add_artist_enable_column.py │ ├── b7e0935213d5_fix_stupid_file_naming_issue.py │ ├── d46cdc5c01d2_add_cannot_view_enum_type.py │ ├── df882e0d4494_re_scrape_pixiv_since_manga_item_.py │ └── fe4327de1b92_.py ├── no_venv_run_scrape.sh ├── no_venv_run_web.sh ├── plugins.py ├── requirements.txt ├── run_scrape.sh ├── run_web.sh ├── settings.base.py ├── test-ul-eh.py ├── util ├── __init__.py └── unclassify.py ├── xascraper ├── __init__.py ├── database.py ├── database_calls.py ├── database_models.py ├── log_base.py ├── modules │ ├── __init__.py │ ├── artstation │ │ ├── __init__.py │ │ └── asScrape.py │ ├── ay │ │ ├── __init__.py │ │ └── ayScrape.py │ ├── da │ │ ├── __init__.py │ │ └── daScrape.py │ ├── exceptions.py │ ├── fa │ │ ├── __init__.py │ │ └── faScrape.py │ ├── hf │ │ ├── __init__.py │ │ └── hfScrape.py │ ├── ib │ │ ├── __init__.py │ │ └── ibScrape.py │ ├── kemono │ │ ├── __init__.py │ │ └── kemonoScrape.py │ ├── module_base.py │ ├── ng │ │ ├── __init__.py │ │ └── ngScrape.py │ ├── patreon │ │ ├── __init__.py │ │ ├── patreonBase.py │ │ ├── patreonFeed.py │ │ └── patreonScrape.py │ ├── px │ │ ├── __init__.py │ │ ├── pixiv_auth.py │ │ └── pxScrape.py │ ├── rpc_base.py │ ├── scraper_base.py │ ├── sf │ │ ├── __init__.py │ │ └── sfScrape.py │ ├── tumblr │ │ ├── __init__.py │ │ └── tumblrScrape.py │ ├── twit │ │ ├── __init__.py │ │ ├── twitScrape.py │ │ └── vendored_twitter_scrape.py │ ├── wy │ │ ├── __init__.py │ │ └── wyScrape.py │ └── yiff_party │ │ ├── __init__.py │ │ ├── local_exec.py │ │ ├── serialize.py │ │ ├── yiff_remote.py │ │ └── yiff_scrape.py ├── static │ ├── config.json │ ├── css │ │ └── style.css │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── icons.png │ │ ├── loading-bar.gif │ │ └── loading.gif │ ├── js │ │ ├── autogrow.js │ │ ├── bootstrap-number-input.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── editable.js │ │ ├── jquery-latest.js │ │ ├── jquery-latest.min.js │ │ ├── jquery.contextMenu.js │ │ ├── jquery.datetimepicker.js │ │ ├── jquery.infinitescroll.js │ │ ├── jquery.ui.position.js │ │ ├── npm.js │ │ └── popupViewer.js │ └── loading.gif ├── status_monitor.py ├── templates │ ├── 404.html │ ├── 500.html │ ├── __base.html │ ├── _block_flash.html │ ├── _block_nav.html │ ├── _block_paginate.html │ ├── _block_releases.html │ ├── _macros.html │ ├── error.html │ ├── fa-manual-login.html │ ├── index.html │ ├── single_artist_view.html │ └── watched-names-editor.html └── views │ ├── __init__.py │ ├── api_view.py │ ├── fa_manual_login.py │ ├── main_views.py │ └── name_view.py └── yp_run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pyup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/.pyup.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/config.py -------------------------------------------------------------------------------- /db_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/db_migrate.py -------------------------------------------------------------------------------- /flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/flags.py -------------------------------------------------------------------------------- /logSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/logSetup.py -------------------------------------------------------------------------------- /main_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/main_scrape.py -------------------------------------------------------------------------------- /main_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/main_web.py -------------------------------------------------------------------------------- /manage/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /manage/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/manage/__main__.py -------------------------------------------------------------------------------- /manage/cli_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/manage/cli_utils.py -------------------------------------------------------------------------------- /manage/db_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/manage/db_manage.py -------------------------------------------------------------------------------- /manage/name_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/manage/name_importer.py -------------------------------------------------------------------------------- /manage/scrape_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/manage/scrape_manage.py -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/46e1cef59e06_fix_pixiv_urls_for_new_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/migrations/versions/46e1cef59e06_fix_pixiv_urls_for_new_format.py -------------------------------------------------------------------------------- /migrations/versions/80b62107850a_add_kv_store_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/migrations/versions/80b62107850a_add_kv_store_table.py -------------------------------------------------------------------------------- /migrations/versions/8e7013c7db9b_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/migrations/versions/8e7013c7db9b_.py -------------------------------------------------------------------------------- /migrations/versions/916e4599f92d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/migrations/versions/916e4599f92d_.py -------------------------------------------------------------------------------- /migrations/versions/9a7aef735c43_add_artist_enable_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/migrations/versions/9a7aef735c43_add_artist_enable_column.py -------------------------------------------------------------------------------- /migrations/versions/b7e0935213d5_fix_stupid_file_naming_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/migrations/versions/b7e0935213d5_fix_stupid_file_naming_issue.py -------------------------------------------------------------------------------- /migrations/versions/d46cdc5c01d2_add_cannot_view_enum_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/migrations/versions/d46cdc5c01d2_add_cannot_view_enum_type.py -------------------------------------------------------------------------------- /migrations/versions/df882e0d4494_re_scrape_pixiv_since_manga_item_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/migrations/versions/df882e0d4494_re_scrape_pixiv_since_manga_item_.py -------------------------------------------------------------------------------- /migrations/versions/fe4327de1b92_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/migrations/versions/fe4327de1b92_.py -------------------------------------------------------------------------------- /no_venv_run_scrape.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/no_venv_run_scrape.sh -------------------------------------------------------------------------------- /no_venv_run_web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/no_venv_run_web.sh -------------------------------------------------------------------------------- /plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/plugins.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_scrape.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/run_scrape.sh -------------------------------------------------------------------------------- /run_web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/run_web.sh -------------------------------------------------------------------------------- /settings.base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/settings.base.py -------------------------------------------------------------------------------- /test-ul-eh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/test-ul-eh.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/util/__init__.py -------------------------------------------------------------------------------- /util/unclassify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/util/unclassify.py -------------------------------------------------------------------------------- /xascraper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/__init__.py -------------------------------------------------------------------------------- /xascraper/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/database.py -------------------------------------------------------------------------------- /xascraper/database_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/database_calls.py -------------------------------------------------------------------------------- /xascraper/database_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/database_models.py -------------------------------------------------------------------------------- /xascraper/log_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/log_base.py -------------------------------------------------------------------------------- /xascraper/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/artstation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/artstation/asScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/artstation/asScrape.py -------------------------------------------------------------------------------- /xascraper/modules/ay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/ay/ayScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/ay/ayScrape.py -------------------------------------------------------------------------------- /xascraper/modules/da/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/da/daScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/da/daScrape.py -------------------------------------------------------------------------------- /xascraper/modules/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/exceptions.py -------------------------------------------------------------------------------- /xascraper/modules/fa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/fa/faScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/fa/faScrape.py -------------------------------------------------------------------------------- /xascraper/modules/hf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/hf/hfScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/hf/hfScrape.py -------------------------------------------------------------------------------- /xascraper/modules/ib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/ib/ibScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/ib/ibScrape.py -------------------------------------------------------------------------------- /xascraper/modules/kemono/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/kemono/kemonoScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/kemono/kemonoScrape.py -------------------------------------------------------------------------------- /xascraper/modules/module_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/module_base.py -------------------------------------------------------------------------------- /xascraper/modules/ng/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/ng/ngScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/ng/ngScrape.py -------------------------------------------------------------------------------- /xascraper/modules/patreon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/patreon/patreonBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/patreon/patreonBase.py -------------------------------------------------------------------------------- /xascraper/modules/patreon/patreonFeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/patreon/patreonFeed.py -------------------------------------------------------------------------------- /xascraper/modules/patreon/patreonScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/patreon/patreonScrape.py -------------------------------------------------------------------------------- /xascraper/modules/px/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/px/pixiv_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/px/pixiv_auth.py -------------------------------------------------------------------------------- /xascraper/modules/px/pxScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/px/pxScrape.py -------------------------------------------------------------------------------- /xascraper/modules/rpc_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/rpc_base.py -------------------------------------------------------------------------------- /xascraper/modules/scraper_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/scraper_base.py -------------------------------------------------------------------------------- /xascraper/modules/sf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/sf/sfScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/sf/sfScrape.py -------------------------------------------------------------------------------- /xascraper/modules/tumblr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/tumblr/tumblrScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/tumblr/tumblrScrape.py -------------------------------------------------------------------------------- /xascraper/modules/twit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/twit/twitScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/twit/twitScrape.py -------------------------------------------------------------------------------- /xascraper/modules/twit/vendored_twitter_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/twit/vendored_twitter_scrape.py -------------------------------------------------------------------------------- /xascraper/modules/wy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/wy/wyScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/wy/wyScrape.py -------------------------------------------------------------------------------- /xascraper/modules/yiff_party/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xascraper/modules/yiff_party/local_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/yiff_party/local_exec.py -------------------------------------------------------------------------------- /xascraper/modules/yiff_party/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/yiff_party/serialize.py -------------------------------------------------------------------------------- /xascraper/modules/yiff_party/yiff_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/yiff_party/yiff_remote.py -------------------------------------------------------------------------------- /xascraper/modules/yiff_party/yiff_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/modules/yiff_party/yiff_scrape.py -------------------------------------------------------------------------------- /xascraper/static/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/config.json -------------------------------------------------------------------------------- /xascraper/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/css/style.css -------------------------------------------------------------------------------- /xascraper/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/favicon.ico -------------------------------------------------------------------------------- /xascraper/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /xascraper/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /xascraper/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /xascraper/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /xascraper/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /xascraper/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /xascraper/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /xascraper/static/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/img/icons.png -------------------------------------------------------------------------------- /xascraper/static/img/loading-bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/img/loading-bar.gif -------------------------------------------------------------------------------- /xascraper/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/img/loading.gif -------------------------------------------------------------------------------- /xascraper/static/js/autogrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/autogrow.js -------------------------------------------------------------------------------- /xascraper/static/js/bootstrap-number-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/bootstrap-number-input.js -------------------------------------------------------------------------------- /xascraper/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/bootstrap.js -------------------------------------------------------------------------------- /xascraper/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /xascraper/static/js/editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/editable.js -------------------------------------------------------------------------------- /xascraper/static/js/jquery-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/jquery-latest.js -------------------------------------------------------------------------------- /xascraper/static/js/jquery-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/jquery-latest.min.js -------------------------------------------------------------------------------- /xascraper/static/js/jquery.contextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/jquery.contextMenu.js -------------------------------------------------------------------------------- /xascraper/static/js/jquery.datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/jquery.datetimepicker.js -------------------------------------------------------------------------------- /xascraper/static/js/jquery.infinitescroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/jquery.infinitescroll.js -------------------------------------------------------------------------------- /xascraper/static/js/jquery.ui.position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/jquery.ui.position.js -------------------------------------------------------------------------------- /xascraper/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/npm.js -------------------------------------------------------------------------------- /xascraper/static/js/popupViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/js/popupViewer.js -------------------------------------------------------------------------------- /xascraper/static/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/static/loading.gif -------------------------------------------------------------------------------- /xascraper/status_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/status_monitor.py -------------------------------------------------------------------------------- /xascraper/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/404.html -------------------------------------------------------------------------------- /xascraper/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/500.html -------------------------------------------------------------------------------- /xascraper/templates/__base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/__base.html -------------------------------------------------------------------------------- /xascraper/templates/_block_flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/_block_flash.html -------------------------------------------------------------------------------- /xascraper/templates/_block_nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/_block_nav.html -------------------------------------------------------------------------------- /xascraper/templates/_block_paginate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/_block_paginate.html -------------------------------------------------------------------------------- /xascraper/templates/_block_releases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/_block_releases.html -------------------------------------------------------------------------------- /xascraper/templates/_macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/_macros.html -------------------------------------------------------------------------------- /xascraper/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/error.html -------------------------------------------------------------------------------- /xascraper/templates/fa-manual-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/fa-manual-login.html -------------------------------------------------------------------------------- /xascraper/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/index.html -------------------------------------------------------------------------------- /xascraper/templates/single_artist_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/single_artist_view.html -------------------------------------------------------------------------------- /xascraper/templates/watched-names-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/templates/watched-names-editor.html -------------------------------------------------------------------------------- /xascraper/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/views/__init__.py -------------------------------------------------------------------------------- /xascraper/views/api_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/views/api_view.py -------------------------------------------------------------------------------- /xascraper/views/fa_manual_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/views/fa_manual_login.py -------------------------------------------------------------------------------- /xascraper/views/main_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/views/main_views.py -------------------------------------------------------------------------------- /xascraper/views/name_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/xascraper/views/name_view.py -------------------------------------------------------------------------------- /yp_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fake-name/xA-Scraper/HEAD/yp_run.sh --------------------------------------------------------------------------------