Changes between Version 20 and Version 21 of Justext


Ignore:
Timestamp:
11/16/23 16:26:45 (6 months ago)
Author:
admin
Comment:

links updated, https

Legend:

Unmodified
Added
Removed
Modified
  • Justext

    v20 v21  
    77{{{
    88#!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>
    1010|
    1111<a class="lnk" href="/wiki/Justext/Cite">Cite</a>
    1212|
    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>
    1414}}}
    1515
     
    23232. Download, extract, install:
    2424{{{
    25 wget http://corpus.tools/raw-attachment/wiki/Downloads/justext-4.3.tar.gz
     25wget https://corpus.tools/raw-attachment/wiki/Downloads/justext-4.3.tar.gz
    2626tar xzvf justext-4.3.tar.gz
    2727cd justext-4.3/
     
    3131=== Legacy installation (using distutils, deprecated) ===
    3232{{{
    33 wget http://corpus.tools/raw-attachment/wiki/Downloads/justext-4.2.5.tar.gz
     33wget https://corpus.tools/raw-attachment/wiki/Downloads/justext-4.2.5.tar.gz
    3434tar xzvf justext-4.2.5.tar.gz
    3535cd justext-4.2.5/
     
    3939== Quick start ==
    4040{{{
    41 wget -O page.html http://planet.python.org/
     41wget -O page.html https://planetpython.org/
    4242justext -s English page.html > cleaned-page.txt
    4343}}}
     
    5252import justext
    5353import requests
    54 page = requests.get('http://planet.python.org/').text.encode('utf-8')
     54page = requests.get('https://planetpython.org/').text.encode('utf-8')
    5555
    5656paragraphs = justext.justext(page, justext.get_stoplist('English'))
     
    6262
    6363== Online demo ==
    64 [http://nlp.fi.muni.cz/projects/justext/]
     64[https://nlp.fi.muni.cz/projects/justext/]
    6565
    6666== 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].
     67This 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].
    6868
    6969
    7070== Licence ==
    71 Justext is licensed under the [http://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License]
     71Justext is licensed under the [https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License]