Razorvine.Serpent.NetCore
1.18.0
Install-Package Razorvine.Serpent.NetCore -Version 1.18.0
dotnet add package Razorvine.Serpent.NetCore --version 1.18.0
<PackageReference Include="Razorvine.Serpent.NetCore" Version="1.18.0" />
paket add Razorvine.Serpent.NetCore --version 1.18.0
#r "nuget: Razorvine.Serpent.NetCore, 1.18.0"
// Install Razorvine.Serpent.NetCore as a Cake Addin
#addin nuget:?package=Razorvine.Serpent.NetCore&version=1.18.0
// Install Razorvine.Serpent.NetCore as a Cake Tool
#tool nuget:?package=Razorvine.Serpent.NetCore&version=1.18.0
Serpent Python literal expression serialization.
Serpent provides Python ast.literal_eval() compatible object tree serialization.
It serializes an object tree into bytes that can be transferred to Python and
decoded there (using ast.literal_eval()). It can ofcourse also deserialize
such a Python expression itself, back into the equivalent .NET datatypes.
More info for the Python version is on Pypi: https://pypi.python.org/pypi/serpent
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
-
.NETCoreApp 2.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Razorvine.Serpent.NetCore:
Package | Downloads |
---|---|
Razorvine.Pyrolite.NetCore
Thin client-side communication library to connect to Python applications, using the Pyro protocol. Also includes Pickle/Unpickle. More info about Pyro: http://pythonhosted.org/Pyro4/ |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.18.0 | 1,224 | 7/27/2017 |
CRITICAL FIX: rewrote serialization and parsing of strings containing chars above 255, this didn't work. Now mimics python's repr(str) form as closely as possible.
Added Serializer.MaximumLevel to avoid too deep recursion resulting in stack overflow errors.
Serializer.MaximumLevel decreased to 500.