组织ID: |
net.razorvine |
项目ID: |
serpent |
版本: |
1.11 |
最后修改时间: |
2018-08-03 16:03:05 |
包类型: |
jar |
标题: |
serpent |
描述: |
Serpent serializes an object tree into a Python ast.literal_eval() compatible literal expression. It is safe to send serpent data to other machines over the network for instance
(because only 'safe' literals are encoded).
There is also a deserializer or parse provided that turns such a literal expression back into the appropriate Java object tree.
It is an alternative to JSON to provide easy data integration between Java and Python. Serpent is more expressive as JSON (it supports more data types). |
相关URL: |
https://github.com/irmen/Serpent |
大小: |
39.22KB |
|
Maven引入代码: |
<dependency>
<groupId>net.razorvine</groupId>
<artifactId>serpent</artifactId>
<version>1.11</version>
</dependency>
|
Gradle引入代码: |
net.razorvine:serpent:1.11
|
下载Jar包: |
|
POM文件内容: |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>net.razorvine</groupId>
<artifactId>serpent</artifactId>
<version>1.11</version>
<packaging>jar</packaging>
<name>serpent</name>
<url>https://github.com/irmen/Serpent</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.4.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<description>Serpent serializes an object tree into a Python ast.literal_eval() compatible literal expression. It is safe to send serpent data to other machines over the network for instance
(because only 'safe' literals are encoded).
There is also a deserializer or parse provided that turns such a literal expression back into the appropriate Java object tree.
It is an alternative to JSON to provide easy data integration between Java and Python. Serpent is more expressive as JSON (it supports more data types).</description>
<scm>
<url>https://github.com/irmen/Serpent.git</url>
<connection>scm:git:https://github.com/irmen/Serpent.git</connection>
<developerConnection>scm:git:https://github.com/irmen/Serpent.git</developerConnection>
<tag>v1.11</tag>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/irmen/Serpent/issues</url>
</issueManagement>
<developers>
<developer>
<id>irmen</id>
<name>Irmen de Jong</name>
<email>irmen@razorvine.net</email>
<url>https://github.com/irmen</url>
</developer>
</developers>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
net.razorvine.serpent.ast.Ast.class
net.razorvine.serpent.ast.BigIntNode.class
net.razorvine.serpent.ast.BooleanNode.class
net.razorvine.serpent.ast.ComplexNumberNode.class
net.razorvine.serpent.ast.DictNode.class
net.razorvine.serpent.ast.DoubleNode.class
net.razorvine.serpent.ast.INode.class
net.razorvine.serpent.ast.INodeVisitor.class
net.razorvine.serpent.ast.IntegerNode.class
net.razorvine.serpent.ast.KeyValueNode.class
net.razorvine.serpent.ast.ListNode.class
net.razorvine.serpent.ast.LongNode.class
net.razorvine.serpent.ast.NoneNode.class
net.razorvine.serpent.ast.PrimitiveNode.class
net.razorvine.serpent.ast.SequenceNode.class
net.razorvine.serpent.ast.SetNode.class
net.razorvine.serpent.ast.StringNode.class
net.razorvine.serpent.ast.TupleNode.class
net.razorvine.serpent.ast.UnorderedSequenceNode.class
net.razorvine.serpent.ComplexNumber.class
net.razorvine.serpent.DebugVisitor.class
net.razorvine.serpent.IClassSerializer.class
net.razorvine.serpent.IDictToInstance.class
net.razorvine.serpent.LibraryVersion.class
net.razorvine.serpent.ObjectifyVisitor.class
net.razorvine.serpent.ParseException.class
net.razorvine.serpent.Parser.class
net.razorvine.serpent.SeekableStringReader$StringContext.class
net.razorvine.serpent.SeekableStringReader.class
net.razorvine.serpent.Serializer.class
META-INF/maven/net.razorvine/serpent/pom.xml
META-INF/maven/net.razorvine/serpent/pom.properties
|
依赖Jar: |
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
|