Python初心者です。
どこで躓いているのかわからず、ご指導いただければと思います。
Python3系でWebフレームワークのbottleを利用してWEBアプリケーションの開発をしています。
やりたいことは以下の通りです。
bratをWEBアプリケーションに組み込んで、SQLiteに格納したデータを取得して表示したい。
エラーメッセージ
Traceback (most recent call last):
File "/Users/Username/nlp/py3env/lib/python3.7/site-packages/bottle.py", line 862, in _handle
return route.call(**args)
File "/Users/Username/nlp/py3env/lib/python3.7/site-packages/bottle.py", line 1742, in wrapper
rv = callback(*a, **ka)
File "src/sample_06_08.py", line 23, in get
row = datastore.get(doc_id, fl=['content'])
File "/Users/Username/nlp/src/sqlitedatastore.py", line 40, in get
for key, value in zip(fl, row_ls):
TypeError: zip argument #2 must support iteration
該当のソースコード
sqlitedatastore.py
def get(doc_id, fl):
row_ls = conn.execute(
'SELECT {} FROM docs WHERE id = ?'.format(','.join(fl)),
(doc_id,)).fetchone()
row_dict = {}
for key, value in zip(fl, row_ls):
row_dict[key] = value
return row_dict
# sample_06_08.py @bottle.get('/get') def get(): doc_id = bottle.request.params.id names = bottle.request.params.names.split() row = datastore.get(doc_id, fl=['content']) text = row['content'] text = re.sub(r'[。!]', '\n', text) data = { 'collection': { 'entity_types': [], }, 'annotation': { 'text': text, 'entities': [], 'relations': [], }, } mapping = {} for name in names: annos = datastore.get_annotation(doc_id, name) for i, anno in enumerate(annos): data['collection']['entity_types'].append({ 'type': name, 'bgColor': '#7fa2ff', 'borderColor': 'darken' }) Ti = 'T{0:d}'.format(len(data['annotation']['entities']) + 1) data['annotation']['entities'].append([ Ti, name, [[anno['begin'], anno['end']]] ]) mapping[(name, i)] = Ti for name in names: annos = datastore.get_annotation(doc_id, name) for i, anno in enumerate(annos): if 'link' not in anno: continue name_linked, i_linked = anno['link'] if (name, i) not in mapping or (name_linked, i_linked) not in mapping: continue data['annotation']['relations'].append([ 'R{0:d}'.format(len(data['annotation']['relations']) + 1), 'arg', [['src', mapping[(name, i)]], ['tgt', mapping[(name_linked, i_linked)]]] ]) return json.dumps(data, ensure_ascii=False) ### 試したこと ターミナルから[sample_06_08.py]を実行。 指定したlocalhostにアクセス。 結果:データが表示されず、エラーが帰ってくる。 ### 補足情報(FW/ツールのバージョンなど) sqlitedatastore.pyのget関数は他のプログラムにも組み込んであり、実行可能 そのため今回の場合のみエラーが生じる。 おそらくサーバー側のポートの問題であるが何番に変更すればよいかわからない。
あなたの回答
tips
プレビュー