Skip to content

Instantly share code, notes, and snippets.

@akaihola
Created November 22, 2011 08:36
Show Gist options
  • Save akaihola/1385193 to your computer and use it in GitHub Desktop.
Save akaihola/1385193 to your computer and use it in GitHub Desktop.
py-dom-xpath-lxml-compat
*.pyc
/bin
/include
/lib
/quasilxml.egg-info

quasilxml -- an lxml API compatible pure-python XML library

The goal of this library is to provide some API compatibility with the lxml library using pure Python only.

The original motivation for creating this library was to try out a largish Django project in PyPy 1.7. Unfortunately some parts of the project depended heavily on the XPath functionality in lxml. The easiest work-around was to use the pure Python py-dom-xpath library and build a compatibility layer on top of it.

Status

Currently the library doesn't implement any real functionality but only provides some empty modules and dummy classes to prevent import failures in the Django project on PyPy.

Beginnings for really bare-bones implementations of the Element class and the fromstring function are provided.

class Cleaner(object):
pass
import sys
import quasilxml
def register():
sys.modules['lxml'] = quasilxml
from xml.dom import minidom
import xpath
class Element(object):
def __init__(self, dom):
self.dom = dom
def xpath(self,
_path,
namespaces=None, extensions=None, smart_strings=True,
**_variables):
return xpath.find(_path, self.dom)
class ParserError(Exception):
pass
def fromstring(text, parser=None, base_url=None):
return Element(minidom.parseString(text, parser=parser))
from setuptools import setup
setup(
name = 'quasilxml',
version = '0.01',
packages = ['quasilxml'],
author = 'Antti Kaihola',
author_email = '[email protected]',
description = ('lxml compatibility layer for py-dom-xpath'),
url = 'https://gist.github.com/1385193',
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: XML')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment