pynlg is a pure python re-implementation of SimpleNLG-EnFr, a java library enabling french and english text surface realisation, based on SimpleNLG.
For more information about what SimpleNLG and SimpleNLG-EnFr, have a look at their documentation:
SimpleNLG-EnFr (in french)
pynlg supports Python2.7 and 3.5. Python 3.3 and 3.4 should work, but are untested.
Examples
Definition of a nominal sentence, with a feminine noun
from pynlg.lexicon.fr import FrenchLexicon
from pynlg.lexicon.feature.category import NOUN, ADJECTIVE, DETERMINER
from pynlg.lexicon.feature.gender import FEMININE
from pynlg import make_noun_phrase
lex = FrenchLexicon()
un = lex.first(u'un', category=DETERMINER)
maison = lex.first(u'maison', category=NOUN)
maison = maison.inflex(gender=FEMININE)
beau = lex.first(u'beau', category=ADJECTIVE)
perdu = lex.first(u'perdu', category=ADJECTIVE)
phrase = make_noun_phrase(lexicon=lex, specifier=un, noun=maison, modifiers=[beau, perdu])
syntaxically_realised_phrase = phrase.realise()
morphologically_realised_phrase = syntaxically_realised_phrase.realise_morphology()
morphologically_realised_phrase.components
[<StringElement {realisation=une, category=DETERMINER}>,
<StringElement {realisation=belle, category=ADJECTIVE}>,
<StringElement {realisation=maison, category=CANNED_TEXT}>,
<StringElement {realisation=perdue, category=ADJECTIVE}>]
Supported languages
For now, the following languages are supported:
french (in process)
english (in process)
How can I contribute?
First, clone the repository, and create a new local branch. Once the new feature is implemented (or the bug is fixed) and everything is tested properly, push your work and create a pull request.
Note: you should run the tests beforehand, and make sure they pass:
$ tox
How do I add support for a new language?
TODO
License
The MIT License (MIT)
Copyright (c) 2015 Mapado
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pynlg-0.1.1.tar.gz.
File metadata
- Download URL: pynlg-0.1.1.tar.gz
- Upload date:
- Size: 49.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9237c293aa46d120dafeba02b5d5adc57371a489d545b7f077de5a360a45a14
|
|
| MD5 |
1ad54a2a4075414b27206bd33eb5ad78
|
|
| BLAKE2b-256 |
de9b38111392e7d3223d4ad6defe661a3d1afbbd85615efd0fd71f1e995dfece
|
File details
Details for the file pynlg-0.1.1-py2-none-any.whl.
File metadata
- Download URL: pynlg-0.1.1-py2-none-any.whl
- Upload date:
- Size: 67.0 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
444968e80f0457af473288f5842b9073a0bbbd41ca1686385a4dd65b2301e25f
|
|
| MD5 |
0de4ce77d7acdc55fe6a255bd6abff5e
|
|
| BLAKE2b-256 |
a05bf261ef9fda0366d631a11c482511daab9b2b38545cfafd192b05056e7c0c
|