Razorvine.Serpent.NetCore
1.18.0
dotnet add package Razorvine.Serpent.NetCore --version 1.18.0
NuGet\Install-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 Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.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,744 | 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.