Добавлено простое WSGI (Bottle)
This commit is contained in:
parent
63f7827e26
commit
e249be24a2
@ -1,4 +1,3 @@
|
|||||||
import logging
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
@ -6,4 +5,3 @@ reload(sys)
|
|||||||
cwd = os.getcwd()
|
cwd = os.getcwd()
|
||||||
sys.path.append(cwd)
|
sys.path.append(cwd)
|
||||||
sys.setdefaultencoding("utf-8")
|
sys.setdefaultencoding("utf-8")
|
||||||
logging.basicConfig(format='%(asctime)s %(message)s', level=logging.INFO)
|
|
||||||
|
@ -14,7 +14,7 @@ class SphinxSearch:
|
|||||||
def __init__(self, db):
|
def __init__(self, db):
|
||||||
self.delta_len = 2
|
self.delta_len = 2
|
||||||
|
|
||||||
self.rating_limit_soft = 0.4
|
self.rating_limit_soft = 0.6
|
||||||
self.rating_limit_soft_count = 6
|
self.rating_limit_soft_count = 6
|
||||||
self.word_length_soft = 3
|
self.word_length_soft = 3
|
||||||
|
|
||||||
@ -22,7 +22,7 @@ class SphinxSearch:
|
|||||||
self.rating_limit_hard_count = 3
|
self.rating_limit_hard_count = 3
|
||||||
|
|
||||||
self.default_rating_delta = 2
|
self.default_rating_delta = 2
|
||||||
self.regression_coef = 0.04
|
self.regression_coef = 0.01
|
||||||
|
|
||||||
self.db = db
|
self.db = db
|
||||||
self.client_sugg = sphinxapi.SphinxClient()
|
self.client_sugg = sphinxapi.SphinxClient()
|
||||||
|
33
aore/phias.py
Normal file
33
aore/phias.py
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import json
|
||||||
|
import logging
|
||||||
|
|
||||||
|
from bottle import Bottle
|
||||||
|
|
||||||
|
from aore.fias.fiasfactory import FiasFactory
|
||||||
|
|
||||||
|
logging.basicConfig(format='%(asctime)s %(message)s', level=logging.INFO)
|
||||||
|
app = Bottle()
|
||||||
|
fias_factory = FiasFactory()
|
||||||
|
|
||||||
|
|
||||||
|
@app.route('/expand/<aoid:re:[\w]{8}(-[\w]{4}){3}-[\w]{12}>')
|
||||||
|
def expand(aoid):
|
||||||
|
return json.dumps(fias_factory.expand(aoid))
|
||||||
|
|
||||||
|
|
||||||
|
@app.route('/normalize/<aoid:re:[\w]{8}(-[\w]{4}){3}-[\w]{12}>')
|
||||||
|
def normalize(aoid):
|
||||||
|
return json.dumps(fias_factory.normalize(aoid))
|
||||||
|
|
||||||
|
|
||||||
|
@app.route('/find/<text>')
|
||||||
|
@app.route('/find/<text>/<strong>')
|
||||||
|
def find(text, strong=False):
|
||||||
|
strong = (strong == "strong")
|
||||||
|
return json.dumps(fias_factory.find(text, strong))
|
||||||
|
|
||||||
|
|
||||||
|
@app.error(404)
|
||||||
|
def error404(error):
|
||||||
|
return json.dumps(dict(error="Page not found"))
|
13
manage.py
13
manage.py
@ -1,5 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
import json
|
import json
|
||||||
|
import logging
|
||||||
import optparse
|
import optparse
|
||||||
|
|
||||||
from aore.fias.fiasfactory import FiasFactory
|
from aore.fias.fiasfactory import FiasFactory
|
||||||
@ -7,6 +8,8 @@ from aore.miscutils.sphinx import SphinxHelper
|
|||||||
from aore.updater.soapreceiver import SoapReceiver
|
from aore.updater.soapreceiver import SoapReceiver
|
||||||
from aore.updater.updater import Updater
|
from aore.updater.updater import Updater
|
||||||
|
|
||||||
|
logging.basicConfig(format='%(asctime)s %(message)s', level=logging.INFO)
|
||||||
|
|
||||||
|
|
||||||
def print_fias_versions():
|
def print_fias_versions():
|
||||||
imp = SoapReceiver()
|
imp = SoapReceiver()
|
||||||
@ -86,8 +89,6 @@ def main():
|
|||||||
help="Path to Sphinx indexer binary. Required for '--sphinx-configure'")
|
help="Path to Sphinx indexer binary. Required for '--sphinx-configure'")
|
||||||
p.add_option('--output-conf', '-o',
|
p.add_option('--output-conf', '-o',
|
||||||
help="Output config filename. Required for '--sphinx-configure'")
|
help="Output config filename. Required for '--sphinx-configure'")
|
||||||
p.add_option('--test', '-t', action="store_true", dest="test",
|
|
||||||
help="Test")
|
|
||||||
|
|
||||||
options, arguments = p.parse_args()
|
options, arguments = p.parse_args()
|
||||||
|
|
||||||
@ -116,13 +117,5 @@ def main():
|
|||||||
sphinxh = SphinxHelper()
|
sphinxh = SphinxHelper()
|
||||||
sphinxh.configure_indexer(options.indexer_path, options.output_conf)
|
sphinxh.configure_indexer(options.indexer_path, options.output_conf)
|
||||||
|
|
||||||
# 4 Debug purposes..
|
|
||||||
if options.test:
|
|
||||||
sph = FiasFactory()
|
|
||||||
print json.dumps(sph.normalize("463ce8e4-928b-45cc-be76-46c2494632b6"))
|
|
||||||
print json.dumps(sph.expand("463ce8e4-928b-45cc-be76-46c2494632b6"))
|
|
||||||
print json.dumps(sph.find('ул кемровая пасраул алтай майминский р-н'))
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
@ -1,15 +1,8 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
import os
|
from aore import phias
|
||||||
import sys
|
|
||||||
|
|
||||||
# append current dir to module path
|
application = phias.app
|
||||||
reload(sys)
|
|
||||||
cwd = os.path.dirname(os.path.abspath(__file__))
|
|
||||||
sys.path.append(cwd)
|
|
||||||
sys.setdefaultencoding("utf-8")
|
|
||||||
# sys.path.append('/home/i/interc7j/.local/lib/python2.7/site-packages')
|
|
||||||
|
|
||||||
from aore import aore
|
if __name__ == '__main__':
|
||||||
|
application.run(host='localhost', port=55001, debug=True)
|
||||||
application = aore.app
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user