Forum Archive

ebay sdk and lxml

polymerchm

I can install the ebaysdk but it wants lxml. Has anyone successfully installed lxml on pythonista?

JonB

From what I read of lxml, it is c python module. So, you won't be able to install it on ios, only c modules that work are those that came with pythonista.

polymerchm

its looking like I can get it to work using xml since it is only using xml.etree
Might be slow. Will let folks know.

JonB

Actually, you can try replacing References to lxml.etree with elementtree.ElementTree

For instance, in utils.py
from lxml import etree as ET
Becomes
from elementtree import ElementTree as ET

You need to fix the ref in response too