Ben
Ben
@tschlach and snippsats solution did not work?
@tschlach Yes, and if you look closely you see that read_table() is executed which is reading a text. @elyase I just created a clean venv and installed geotext via `pip...
@CurtLH have you done anything mentioned in this issue to fix the problem?
@CurtLH I see, thanks for the enlightenment :)
Modify the regex statement in geotext.py as you see fit and to your needs: in your example you could use: [A-ZÀ-Ú]+[a-zà-ú]+\s*(de|del|das)+[ \-]?(?:[a-u].)?(?:[A-ZÀ-Ú]+[a-zà-ú]+)* [example](regexr.com/3rir9) You can even lookup cities with multiple...
`from newspaper import fulltext` then use `fulltext(html, language)` with html as text and language as the 2 digit language code.
```python from newspaper import Article your_html = """ index.html Hello, world! """ article = Article("random_url") article.download(input_html=your_html) article = article.parse() ``` if you only want to get the fulltext of an...
> what is response.url @iwpnd ?? just some random url. it will not be used as you provide an `input_html` anyways.
I was showing you how to use an HTML, not providing you a valid HTML newspaper article.