IzunaDevs / nsfw_dl

Python 3 package for downloading images.
MIT License
4 stars 4 forks source link

Consider replacement of lxml with xml stlib module. #10

Closed AraHaan closed 1 year ago

AraHaan commented 1 year ago

When users on Windows try to install this package on Python 3.11 they end up getting an install failure due to the fact that lxml fails to install because it lacks a wheel for Python 3.11. Because of this, we should consider the possibility of replacing it entirely.

AraHaan commented 1 year ago

Looks like the only way this might be possible would be to remove the bs4 dependency and directly process the html and xml via a processing function. Or just remove the use of bs4 for xml processing.

AraHaan commented 1 year ago

And this is complete.