mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-02 18:19:33 +01:00
3d97dc2c33
"Applet" is a much better name for the external command-line scripts and programs that can be loaded as PBot commands. They will no longer be confused with Perl modules. https://en.wikipedia.org/wiki/Applet
18 lines
479 B
Python
Vendored
18 lines
479 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.
|
|
|
|
# SPDX-FileCopyrightText: 2021 Pragmatic Software <pragma78@gmail.com>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
from wiktionaryparser import WiktionaryParser
|
|
import sys
|
|
import json
|
|
|
|
parser = WiktionaryParser()
|
|
entries = parser.fetch(sys.argv[1], sys.argv[2])
|
|
print(json.dumps(entries))
|