File tree 9 files changed +199
-8
lines changed
9 files changed +199
-8
lines changed Original file line number Diff line number Diff line change
1
+ # Created by .ignore support plugin (hsz.mobi)
2
+ # ## Python template
3
+ # Byte-compiled / optimized / DLL files
4
+ __pycache__ /
5
+ * .py [cod ]
6
+ * $py.class
7
+
8
+ # C extensions
9
+ * .so
10
+
11
+ # Distribution / packaging
12
+ .Python
13
+ build /
14
+ develop-eggs /
15
+ dist /
16
+ downloads /
17
+ eggs /
18
+ .eggs /
19
+ lib /
20
+ lib64 /
21
+ parts /
22
+ sdist /
23
+ var /
24
+ wheels /
25
+ pip-wheel-metadata /
26
+ share /python-wheels /
27
+ * .egg-info /
28
+ .installed.cfg
29
+ * .egg
30
+ MANIFEST
31
+
32
+ # PyInstaller
33
+ # Usually these files are written by a python script from a template
34
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
35
+ * .manifest
36
+ * .spec
37
+
38
+ # Installer logs
39
+ pip-log.txt
40
+ pip-delete-this-directory.txt
41
+
42
+ # Unit test / coverage reports
43
+ htmlcov /
44
+ .tox /
45
+ .nox /
46
+ .coverage
47
+ .coverage. *
48
+ .cache
49
+ nosetests.xml
50
+ coverage.xml
51
+ * .cover
52
+ * .py,cover
53
+ .hypothesis /
54
+ .pytest_cache /
55
+
56
+ # Translations
57
+ * .mo
58
+ * .pot
59
+
60
+ # Django stuff:
61
+ * .log
62
+ local_settings.py
63
+ db.sqlite3
64
+ db.sqlite3-journal
65
+
66
+ # Flask stuff:
67
+ instance /
68
+ .webassets-cache
69
+
70
+ # Scrapy stuff:
71
+ .scrapy
72
+
73
+ # Sphinx documentation
74
+ docs /_build /
75
+
76
+ # PyBuilder
77
+ target /
78
+
79
+ # Jupyter Notebook
80
+ .ipynb_checkpoints
81
+
82
+ # IPython
83
+ profile_default /
84
+ ipython_config.py
85
+
86
+ # pyenv
87
+ .python-version
88
+
89
+ # pipenv
90
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
91
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
92
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
93
+ # install all needed dependencies.
94
+ # Pipfile.lock
95
+
96
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
97
+ __pypackages__ /
98
+
99
+ # Celery stuff
100
+ celerybeat-schedule
101
+ celerybeat.pid
102
+
103
+ # SageMath parsed files
104
+ * .sage.py
105
+
106
+ # Environments
107
+ .env
108
+ .venv
109
+ env /
110
+ venv /
111
+ ENV /
112
+ env.bak /
113
+ venv.bak /
114
+
115
+ # Spyder project settings
116
+ .spyderproject
117
+ .spyproject
118
+
119
+ # Rope project settings
120
+ .ropeproject
121
+
122
+ # mkdocs documentation
123
+ /site
124
+
125
+ # mypy
126
+ .mypy_cache /
127
+ .dmypy.json
128
+ dmypy.json
129
+
130
+ # Pyre type checker
131
+ .pyre /
Original file line number Diff line number Diff line change
1
+ FROM python:3.6
2
+ WORKDIR /app
3
+ COPY . .
4
+ RUN pip install -r requirements.txt
5
+ CMD ["supervisord" , "-c" , "supervisord.conf" ]
Original file line number Diff line number Diff line change 1
1
# ProxyPool
2
2
3
+ ![ ] ( https://img.shields.io/badge/python-3.6%2B-brightgreen )
4
+
5
+ Welcome to ProxyPool.
6
+
3
7
## Requirements
4
8
5
- * Docker
9
+ Below is a list of requirements for ProxyPool.
10
+
11
+ * Docker
12
+ * Docker-Compose
6
13
7
14
or
8
15
9
16
* Python: >=3.6
10
17
* Redis
11
- * Environment: Virtual Env
12
18
13
19
## Run with Docker
14
20
@@ -70,7 +76,9 @@ python3 run.py --processor tester
70
76
python3 run.py --processor server
71
77
```
72
78
73
- ### Usage
79
+ ## Usage
74
80
75
81
After running the ProxyPool, you can visit
76
- [ http://localhost:5555/random ] ( http://localhost:5555/ ) to access random proxy.
82
+ [ http://localhost:5555/random ] ( http://localhost:5555/ ) to access random proxy.
83
+
84
+ Just enjoy it.
Original file line number Diff line number Diff line change
1
+ version : ' 3'
2
+ services :
3
+ redis :
4
+ image : redis:alpine
5
+ container_name : redis
6
+ command : redis-server
7
+ ports :
8
+ - " 6379:6379"
9
+ restart : always
10
+ proxypool :
11
+ build : .
12
+ image : ' germey/proxypool'
13
+ container_name : proxypool
14
+ ports :
15
+ - " 5555:5555"
16
+ restart : always
17
+ environment :
18
+ REDIS_HOST : redis
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ def run_tester(self, cycle=CYCLE_TESTER):
23
23
"""
24
24
run tester
25
25
"""
26
+ if not ENABLE_TESTER :
27
+ logger .info ('tester not enabled, exit' )
28
+ return
26
29
tester = Tester ()
27
30
loop = 0
28
31
while True :
@@ -35,6 +38,9 @@ def run_getter(self, cycle=CYCLE_GETTER):
35
38
"""
36
39
run getter
37
40
"""
41
+ if not ENABLE_GETTER :
42
+ logger .info ('getter not enabled, exit' )
43
+ return
38
44
getter = Getter ()
39
45
loop = 0
40
46
while True :
@@ -47,6 +53,9 @@ def run_server(self):
47
53
"""
48
54
run server for api
49
55
"""
56
+ if not ENABLE_SERVER :
57
+ logger .info ('server not enabled, exit' )
58
+ return
50
59
app .run (host = API_HOST , port = API_PORT , threaded = API_THREADED )
51
60
52
61
def run (self ):
Original file line number Diff line number Diff line change 3
3
from environs import Env
4
4
from loguru import logger
5
5
6
+ from proxypool .utils .parse import parse_redis_connection_string
7
+
6
8
7
9
env = Env ()
8
10
env .read_env ()
29
31
# redis password, if no password, set it to None
30
32
REDIS_PASSWORD = env .str ('REDIS_PASSWORD' , None )
31
33
# redis connection string, like redis://[password]@host:port or rediss://[password]@host:port
32
- # REDIS_CONNECTION_STRING = env.str('REDIS_CONNECTION_STRING', None)
34
+ REDIS_CONNECTION_STRING = env .str ('REDIS_CONNECTION_STRING' , None )
33
35
34
- # if REDIS_CONNECTION_STRING:
35
- # REDIS_HOST, REDIS_PORT, REDIS_PASSWORD = parse_redis_connection_string(REDIS_CONNECTION_STRING)
36
+ if REDIS_CONNECTION_STRING :
37
+ REDIS_HOST , REDIS_PORT , REDIS_PASSWORD = parse_redis_connection_string (REDIS_CONNECTION_STRING )
36
38
37
39
# redis hash table key name
38
40
REDIS_KEY = env .str ('REDIS_KEY' , 'proxies:universal' )
Original file line number Diff line number Diff line change @@ -7,3 +7,5 @@ requests==2.22.0
7
7
loguru == 0.3.2
8
8
pyquery == 1.4.0
9
9
attr == 0.3.1
10
+ supervisor == 4.1.0
11
+ redis == 2.10.6
Original file line number Diff line number Diff line change 5
5
parser = argparse .ArgumentParser (description = 'ProxyPool' )
6
6
parser .add_argument ('--processor' , type = str , help = 'processor to run' )
7
7
args = parser .parse_args ()
8
- print ('args' , args )
9
8
10
9
if __name__ == '__main__' :
11
10
# if processor set, just run it
Original file line number Diff line number Diff line change
1
+ [supervisord]
2
+ nodaemon=true
3
+
4
+ [program:tester]
5
+ process_name=tester
6
+ command=python3 run.py --processor tester
7
+ directory=/app
8
+
9
+ [program:getter]
10
+ process_name=getter
11
+ command=python3 run.py --processor getter
12
+ directory=/app
13
+
14
+ [program:server]
15
+ process_name=server
16
+ command=python3 run.py --processor server
17
+ directory=/app
You can’t perform that action at this time.
0 commit comments