summaryrefslogtreecommitdiff
path: root/4chan_search/pullimgs.py
diff options
context:
space:
mode:
authorgrothedev <grothedev@gmail.com>2025-06-08 01:32:37 -0500
committergrothedev <grothedev@gmail.com>2025-06-08 01:32:37 -0500
commit82b5ea0eb32a68394ac33a0f8767acfd6ccb77b2 (patch)
tree2028096f568dd13912b39e5bb72ede2a2c18a00a /4chan_search/pullimgs.py
parentc104bdc43b18b3ba81ce57393f248dcc5066af85 (diff)
remove 4chan search
Diffstat (limited to '4chan_search/pullimgs.py')
-rwxr-xr-x4chan_search/pullimgs.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/4chan_search/pullimgs.py b/4chan_search/pullimgs.py
deleted file mode 100755
index af09c4c..0000000
--- a/4chan_search/pullimgs.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/python
-
-import json
-import requests
-import sqlite3
-import sys
-from wwwimgpull import *
-#####################################################################
-
-if (len(sys.argv) < 2):
- print('This program will download all of the images on a given 4chan thread. provide URL. ')
- print('you must provide a search word, or \"*\" for any word.')
- print('Usage: ./pullimgs.py <url>')
- sys.exit(0)
-
-url = sys.argv[1]
-for imgurl in pull4chImgs(url):
- print(imgurl)