No project description provided
Project description
Introduction
python script for generating C# files for Newtonsoft.Json deserialization from python enums and annotated classes.
Installation
- from pip
pip install cs_generator
- download package and run setup.py
python setup.py install
Usage
- Annotate classes that are to be converted to C#; should be annotated on class level.
- All used enum types will be converted (no annotation is needed)
- If reference keeping is used in deserialization, set ref_keeping to True
from enum import Enum
from typing import List
from cs_generator import CSGenerator
class Job(Enum):
Teachert = 0
Engineer = 1
Doctor = 2
class Person:
name: str
age: int
job: Job
hobbies: List[str]
def __init__(self, name, age, job, hobbies):
self.name = name
self.age = age
self.job = job
self.hobbies = hobbies
csg = CSGenerator(Person, ref_keeping=True)
csg.export('TestNamespace', dest_folder)
# or
p = Person('Jack', 33, Job.Teacher, ['Swimming', 'Video Games', 'Fishing'])
csg = CSGenerator(p, ref_keeping=True)
csg.export('TestNamespace', dest_folder)
output cs script
using Newtonsoft.Json;
namespace TestNamespace
{
public enum Job
{
Teacher = 0,
Engineer = 1,
Doctor = 2
}
}
using System.Collections.Generic;
using Newtonsoft.Json;
namespace TestNamesapce
{
public partial class Person
{
public readonly string name;
public readonly int age;
public readonly Job job;
public readonly IList<string> hobbies;
[JsonConstructor]
public Person(
string name,
int age,
Job job,
List<string> hobbies
)
{
this.name = name;
this.age = age;
this.job = job;
this.hobbies = hobbies;
}
}
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for cs_generator-1.0.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11760f83d2f8765eaa49829a137346c285884ddbb635feec25fc109d084b1adb |
|
MD5 | d947159df92c504868e39a618013d15b |
|
BLAKE2b-256 | ce872488667749af159fda3847a7a078c14ab2acf02c010936b90fa430e57efa |