mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-20 02:49:49 +01:00
24 lines
616 B
Python
Vendored
24 lines
616 B
Python
Vendored
# File: wiktionary.py
|
|
#
|
|
# Purpose: Parses Wiktionary pages into JSON and dumps it to STDOUT.
|
|
#
|
|
# This was written for wiktionary.pl since Wiktionary::Parser in CPAN
|
|
# seems to be broken and abandoned.
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
from wiktionaryparser import WiktionaryParser
|
|
import sys
|
|
import json
|
|
|
|
word=sys.argv[1]
|
|
language=sys.argv[2]
|
|
|
|
parser = WiktionaryParser()
|
|
|
|
entries = parser.fetch(word, language=language)
|
|
|
|
print(json.dumps(entries))
|