Available via clojars
Current stable version: [easy-parse "1.4.3"]
A simple library to easy Document parsing.
(def myspec {:ALBUM_NAME #(zf/xml1-> %1 :RESPONSE :ALBUM :TITLE :DISPLAY zf/text)
:TRACKS [#(zf/xml-> %1 :RESPONSE :ALBUM :TRACK)
{:TRACK_NAME #(zf/xml1-> %1 :TITLE :DISPLAY zf/text)
:TRACK_NUM #(zf/xml1-> %1 :ORD zf/text)}]})
easy-parse artifacts are released to Clojars.
If you are using Maven, add the following repository definition to your pom.xml
:
<repository>
<id>clojars</id>
<url>http://clojars.org/repo</url>
</repository>
With Leiningen:
[easy-parse "1.4.3"]
With Maven:
<dependency>
<groupId>easy-parse</groupId>
<artifactId>easy-parse</artifactId>
<version>1.4.3</version>
</dependency>
MIT http://opensource.org/licenses/MIT
Copyright (C) 2013 Alan Busby
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close