python binding for parsley
Go to file
kyle 3ca3732cbc empty 2009-02-24 23:38:05 +00:00
python after memory leak code review 2009-01-06 21:49:49 -08:00
ruby fixed string length bug 2009-02-19 00:28:54 -08:00
test empty 2009-02-24 23:38:05 +00:00
.gitignore include y.tab.h 2009-02-23 16:52:34 -08:00
AUTHORS
ChangeLog
INSTALL
INTRO
Makefile.am Merge branch 'master' of git@github.com:fizx/dexter 2009-02-24 14:25:01 -08:00
Makefile.in handle typoed functions, etc with internal error message 2009-02-23 16:09:48 -08:00
NEWS
OUTLINE misc 2009-01-18 22:50:23 -08:00
PAPER progress 2009-01-15 16:13:11 -08:00
Portfile
Portfile.in
README.C-LANG thread safety fixes 2009-01-06 20:03:52 -08:00
README.markdown markdown anchor 2009-01-15 15:00:52 -08:00
TODO removed dex_error cruft 2009-01-06 17:25:59 -08:00
VERSION
aclocal.m4 added bisect to Makefile 2009-02-23 14:19:48 -08:00
bootstrap.sh
config.guess
config.status added bisect to Makefile 2009-02-23 14:19:48 -08:00
config.sub
configure added bisect to Makefile 2009-02-23 14:19:48 -08:00
configure.ac
depcomp
dex_mem.c fix pointer type in dex_mem 2009-02-24 14:53:05 -08:00
dex_mem.h fix header 2009-02-24 14:24:16 -08:00
dexter.c fix NPE on empty dex 2009-02-24 15:35:04 -08:00
dexter.h fixed pruning of empty strings 2009-02-23 16:09:48 -08:00
dexter_main.c handle typoed functions, etc with internal error message 2009-02-23 16:09:48 -08:00
dexterc_main.c removed dex_error cruft 2009-01-06 17:25:59 -08:00
functions.c
functions.h
install-sh
kstring.c moving memory handling around, partial work on vex 2009-01-06 13:14:37 -08:00
kstring.h
libtool fix pointer type in dex_mem 2009-02-24 14:53:05 -08:00
ltmain.sh local ltmain.sh 2009-02-23 16:50:00 -08:00
missing
obstack.c
obstack.h
parser.y added css attribute extension 2009-02-19 16:24:00 -08:00
printbuf.c
printbuf.h moving memory handling around, partial work on vex 2009-01-06 13:14:37 -08:00
regexp.c
scanner.l
util.c optional key support 2009-01-06 16:38:31 -08:00
util.h rm vex 2009-01-06 14:47:37 -08:00
xml2json.c
xml2json.h
y.tab.h include y.tab.h 2009-02-23 16:52:34 -08:00
ylwrap

README.markdown

Overview 

Dexter is a simple language for data-extraction from XML-like documents (including HTML). Dexter is:

  1. Blazing fast -- Typical HTML parses are sub-50ms.
  2. Easy to write and understand -- Dexter uses your current knowledge of JSON, CSS, and XPath.
  3. Powerful. Dexter can understand full XPath, including standard and user-defined functions.

Examples

A simple script, or "dex", looks like this:

{
  "title": "h1",
  "links(a)": [
    {
      "text": ".",
      "href": "@href"
    }
  ]
}

This returns JSON or XML output with the same structure. Applying this dex to http://www.yelp.com/biz/amnesia-san-francisco yields either:

{
  "title": "Amnesia",
  "links": [
    {
      "href": "\/",
      "text": "Yelp"
    },
    {
      "href": "\/",
      "text": "Welcome"
    },
    {
      "href": "\/signup?return_url=%2Fuser_details",
      "text": " About Me"
    },
    .....
  ]
}

or equivalently:

<dexter:root>
  <title>Amnesia</title>
  <links>
    <dexter:group>
      <href>/</href>
      <text>Yelp</text>
    </dexter:group>
    <dexter:group>
      <href>/</href>
      <text>Welcome</text>
    </dexter:group>
    <dexter:group>
      <href>/signup?return_url=%2Fuser_details</href>
      <text> About Me</text>
    </dexter:group>
    .....
  </links>
</dexter:root>      

This dex could also have been expressed as:

{
  "title": "h1",
  "links(a)": [
    {
      "text": ".",
      "href": "@href"
    }
  ]
}

The "a" in links(a) is a "key selector" -- an explicit grouping (with scope) for the array. You can use any XPath 1.0 or CSS3 expression as a value or a key selector. Dexter will try to be smart, and figure out which you are using. You can use CSS selectors inside XPath functions -- "substring-after(h1>a, ':')" is a valid expression.

Variables

You can use $foo to access the value of the key "foo" in the current scope (i.e. nested curly brace depth). Also available are $parent.foo, $parent.parent.foo, $root.foo, $root.foo.bar, etc.

Custom Functions

You can write custom functions in XSLT (I'd like to also support C and JavaScript). They look like:

<func:function name="user:excited">
   <xsl:param name="input" />
   <func:result select="concat($input, '!!!!!!!')" />
</func:function>

If you run:

{
  "title": "user:excited(h1)",
}

on the Yelp page, you'll get:

{
  "title": "Amnesia!!!!!!!",
}