Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions PKG-INFO

This file was deleted.

7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,13 @@ Another example that will generate XHTML from wiki-text styled lines (possibly n

The column on right side assigns transformations to patterns. `drop`, `join`, and `liftValue` are builtin. `styledSpan` is a custom transformation. `'@'` denotes a recursive pattern.

Installation
------------

```
pip install -e git+https://github.com/peter17/pijnu#egg=pijnu
```

Practical use
-------------

Expand Down
2 changes: 1 addition & 1 deletion pijnu/library/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,5 +295,5 @@ def writeFile(filename, text):
''' Write -- or overwrite -- text into file.
-- No error if file exists '''
f = open(filename, 'w')
f.write(text)
f.write(text.decode('utf-8'))
f.close()
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
scripts=[],
description="text parsing & processing tool",
long_description=long_description,
install_requires=['py3compat', 'importlib'],
install_requires=['py3compat'],
classifiers=[
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Development Status :: 4 - Beta',
Expand Down