Changes between Version 20 and Version 21 of Justext
- Timestamp:
- 11/16/23 16:26:45 (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Justext
v20 v21 7 7 {{{ 8 8 #!html 9 <a class="lnk" href="http ://is.muni.cz/th/45523/fi_d/phdthesis.pdf">Paper</a>9 <a class="lnk" href="https://is.muni.cz/th/45523/fi_d/phdthesis.pdf">Paper</a> 10 10 | 11 11 <a class="lnk" href="/wiki/Justext/Cite">Cite</a> 12 12 | 13 <a class="lnk" href="http ://opensource.org/licenses/BSD-3-Clause">Licence</a>13 <a class="lnk" href="https://opensource.org/licenses/BSD-3-Clause">Licence</a> 14 14 }}} 15 15 … … 23 23 2. Download, extract, install: 24 24 {{{ 25 wget http ://corpus.tools/raw-attachment/wiki/Downloads/justext-4.3.tar.gz25 wget https://corpus.tools/raw-attachment/wiki/Downloads/justext-4.3.tar.gz 26 26 tar xzvf justext-4.3.tar.gz 27 27 cd justext-4.3/ … … 31 31 === Legacy installation (using distutils, deprecated) === 32 32 {{{ 33 wget http ://corpus.tools/raw-attachment/wiki/Downloads/justext-4.2.5.tar.gz33 wget https://corpus.tools/raw-attachment/wiki/Downloads/justext-4.2.5.tar.gz 34 34 tar xzvf justext-4.2.5.tar.gz 35 35 cd justext-4.2.5/ … … 39 39 == Quick start == 40 40 {{{ 41 wget -O page.html http ://planet.python.org/41 wget -O page.html https://planetpython.org/ 42 42 justext -s English page.html > cleaned-page.txt 43 43 }}} … … 52 52 import justext 53 53 import requests 54 page = requests.get('http ://planet.python.org/').text.encode('utf-8')54 page = requests.get('https://planetpython.org/').text.encode('utf-8') 55 55 56 56 paragraphs = justext.justext(page, justext.get_stoplist('English')) … … 62 62 63 63 == Online demo == 64 [http ://nlp.fi.muni.cz/projects/justext/]64 [https://nlp.fi.muni.cz/projects/justext/] 65 65 66 66 == Acknowledgements == 67 This software has been developed at the [http ://nlp.fi.muni.cz/en/nlpc Natural Language Processing Centre] of [http://www.muni.cz/ Masaryk University in Brno] with financial support from [http://presemt.eu PRESEMT] and [http://www.sketchengine.co.uk Lexical Computing Ltd.] It also relates to Jan Pomikálek's [http://is.muni.cz/th/45523/fi_d/phdthesis.pdf PhD research].67 This software has been developed at the [https://nlp.fi.muni.cz/en/nlpc Natural Language Processing Centre] of [https://www.muni.cz/ Masaryk University in Brno] with financial support from [https://presemt.eu PRESEMT] and [https://www.sketchengine.eu Lexical Computing Ltd.] It also relates to Jan Pomikálek's [https://is.muni.cz/th/45523/fi_d/phdthesis.pdf PhD research]. 68 68 69 69 70 70 == Licence == 71 Justext is licensed under the [http ://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License]71 Justext is licensed under the [https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License]