extractnet
extractnet copied to clipboard
A fork of Dragnet that also extract author, headline, date, keywords from context, as well as built in metadata extraction all in one package
When try to import extractnet library, on debian 11 with python 3.8 (fastapi docker image) I'm having this error ``` File "/usr/local/lib/python3.8/site-packages/extractnet/__init__.py", line 1, in from extractnet.pipeline import Extractor File...
``` raw_html = requests.get('https://vk.com/neurosciencenews').text results = Extractor().extract(raw_html) ``` It does not return almost anything. Why it can be? It works great with other sites. Also, I would like to know...
is possible a few steps to fine tuning and add more entities to the model? Thanks
Using python3.10 and got importError ``` Traceback (most recent call last): File "/home/midstream/git/peduncle/test.py", line 1, in from extractnet import Extractor File "/home/midstream/.local/lib/python3.10/site-packages/extractnet/__init__.py", line 1, in from extractnet.pipeline import Extractor File...
Hi, I got this error while trying to run extractor: Code: ```python import requests from extractnet import Extractor raw_html = requests.get('https://apnews.com/article/6e58b5742b36e3de53298cf73fbfdf48').text results = Extractor().extract(raw_html) for key, value in results.items(): print(key)...
```shell $ pip3 install extractnet Collecting extractnet Using cached extractnet-2.0.7.tar.gz (1.8 MB) Preparing metadata (setup.py) ... done Requirement already satisfied: cchardet>=2.1.7 in c:\users\aligulec\.platformio\penv\lib\site-packages (from extractnet) (2.1.7) Requirement already satisfied: beautifulsoup4==4.9.3...
### Description I'm getting an error when I try to import `extractnet` using the basic example code from the readme: **ImportError: cannot import name 'Extractor' from partially initialized module 'extractnet'**....
anyone able to make this work today inside a simple aws lamba? too big to be in a zip, lots of issues with installing dependancies and legacy packages clashes, anyone...
`pip install extractnet` failed for me because setup.py requires cython installed. I downloaded and pre-installed requirements.txt and then `pip install extractnet` failed because of an error with cython. I saw...