Skip to content

Instantly share code, notes, and snippets.

@gtback
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gtback/402b0e1167471cecb9ea to your computer and use it in GitHub Desktop.
Save gtback/402b0e1167471cecb9ea to your computer and use it in GitHub Desktop.
Check LXML Versions
#!/usr/bin/env python
from lxml import etree
print "lxml.etree: ", etree.LXML_VERSION
print "libxml used: ", etree.LIBXML_VERSION
print "libxml compiled: ", etree.LIBXML_COMPILED_VERSION
print "libxslt used: ", etree.LIBXSLT_VERSION
print "libxslt compiled: ", etree.LIBXSLT_COMPILED_VERSION
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment