You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/anaconda/envs/scipdfparser/lib/python3.9/site-packages/bs4/builder/init.py:545: XMLParsedAsHTMLWarning: It looks like you're parsing an XML document using an HTML parser. If this really is an HTML document (maybe it's XHTML?), you can ignore or filter this warning. If it's XML, you should know that using an XML parser will be more reliable. To parse this document as XML, make sure you have the lxml package installed, and pass the keyword argument features="xml" into the BeautifulSoup constructor.
I'm running scipdf in a conda environment with Python 3.9.16. Here the installed packages:
I also have the same problem. I think it is caused by the updated bs4. It doesn't matter and I guess this warning will not influence the process. and I try to change the features to xml, which will throw errors. you can filter the warning by this way. import warnings;from bs4.builder import XMLParsedAsHTMLWarning;warnings.filterwarnings('ignore', category=XMLParsedAsHTMLWarning)
I'm running the demo code, referencing a specific grobid url:
I'm getting the following error:
I'm running scipdf in a conda environment with Python 3.9.16. Here the installed packages:
The text was updated successfully, but these errors were encountered: