Skip to main content

A tiny library to help you to convert classes to DTO and vice versa.

Project description

DuckMapper

A tiny library to help you to convert classes to DTO and vice versa.

Usage

Using the default function

class testClass():
    def __init__(self):
        self.id = None
        self.gender =None
        self.github = None
        self.name = None
        self.password = None
        self.phone_number = None
class testDTO:
    def __init__(self):
        self.name = None
        self.github = None
        self.telephone = None
x = testClass()
x.name = "Lucas"
x.phone_number = 99999999
x.github = "https://github.com/lucascz37"
result = convertTo(source=x, target=testDTO, default=10)

obs: fields not mapped will receive the value passed on the default param

using decorator

With the same two classes created before with decorator you can specify fields that dont have the same name. My suggestion it's that you can create a class that have functions with the decorator that convert all your project's DTO to classes and the other way around.

@mapBy(fields={"telephone": "phone_number"})
def convertTestClasstoTestDTO():
    pass


teste = convertTestClasstoTestDTO(source=x, target=testDTO, default=100)

obs: the fields dict should be like this: {"target_field1": "source_field1", "target_field2": "source_field2"...}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

DuckMapper-1.0.1.tar.gz (3.1 kB view details)

Uploaded Source

File details

Details for the file DuckMapper-1.0.1.tar.gz.

File metadata

  • Download URL: DuckMapper-1.0.1.tar.gz
  • Upload date:
  • Size: 3.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.5

File hashes

Hashes for DuckMapper-1.0.1.tar.gz
Algorithm Hash digest
SHA256 62fc4d07fb1c8f1b32c988be7527c9f96ca725ddddda8d744701cd7630c19d39
MD5 8d85fa599bfe9592247a22f2ab8448f1
BLAKE2b-256 cf5c9b462588f8ced07deab904b9f9d7fada51db125ecc2a3a60617f15b59710

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page