One Hat Cyber Team
Your IP :
216.73.216.135
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
libsphinxclient
/
View File Name :
test2.py
# # $Id$ # from sphinxapi import * import sys docs = ['this is my test text to be highlighted','this is another test text to be highlighted'] words = 'test text' index = 'test1' opts = {'before_match':'<b>', 'after_match':'</b>', 'chunk_separator':' ... ', 'limit':400, 'around':15} cl = SphinxClient() res = cl.BuildExcerpts(docs, index, words, opts) if not res: print 'ERROR:', cl.GetLastError() else: n = 0 for entry in res: n += 1 print 'n=%d, res=%s' % (n, entry) # # $Id$ #