From 3275bac8b4b8edc66d58541e32946fe2dd29732a Mon Sep 17 00:00:00 2001 From: Fbenas Date: Sun, 8 Nov 2020 15:50:38 +0000 Subject: Fix encoding issue, add .gitignore and readme --- .gitignore | 1 + README.md | 5 +++++ wikiquery | 4 ++-- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8eba6c8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +src/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..f813425 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Installation + +Run `pip install --user -r requirements.txt` + +This will get the requirements defined in requirements.txt installed in a sub directory /src diff --git a/wikiquery b/wikiquery index ecfd0aa..ffbd1c7 100755 --- a/wikiquery +++ b/wikiquery @@ -13,11 +13,11 @@ def stringify(o): if isinstance(o, list): output = [] for i, item in enumerate(o, 1): - output.append("%s: %s" % (i, item.encode("utf-8", "replace"))) + output.append("%s: %s" % (i, item)) return ' %s' % ', '.join(output) else: - return o.encode("utf-8", "replace") + return o; def display(o): print (stringify(o)) -- cgit v1.2.3