臺南市班級男女生人數統計(含折抵)
- bs4: Beautiful Soup 4
- mechanizeh
- Jinja2
- percache
# apt-get install python-bs4
# apt-get install python-mechanize
# apt-get install python-jinja2
# pip install --upgrade percache
# vim /etc/nginx/sites-enabled/001-myweb
location /python {
include uwsgi_params;
uwsgi_modifier1 9;
uwsgi_pass 127.0.0.1:9001;
}
# vim /etc/uwsgi/apps-enabled/python.ini
[uwsgi]
plugins = cgi
socket = 127.0.0.1:9001
cgi = /python=/var/www/python
module = pyindex
cgi-allowed-ext = .py
cgi-helper = .py=python
- Author: HSIEH, Li-Yi
- All programs are released under the GPL.