Skip to main content

remapping dict

Project description

dictremapper is remapping dict library

  • ordered (important)

  • support inheritance (of mapper)

  • support nested structure

  • (excludes option of each layer)

simple example

import requests
import json
from dictremapper import Remapper, Path


class SummaryRemapper(Remapper):
    fullname = Path("full_name")
    url = Path("html_url")
    description = Path("description")

url = "https://api.github.com/repos/podhmo/dictremapper"
data = requests.get(url).json()
data = SummaryRemapper()(data)
print(json.dumps(data, indent=2))

output

{
  "fullname": "podhmo/dictremapper",
  "url": "https://github.com/podhmo/dictremapper",
  "description": "remapping dict"
}

support inheritance (of mapper)

from dictremapper import Remapper, Path


class URLRemapper(Remapper):
    url = Path("html_url")


class DescriptionRemapper(Remapper):
    fullname = Path("full_name")
    description = Path("description")


class SummaryRemapper(URLRemapper, DescriptionRemapper):
    star = Path("stargazers_count")

url = "https://api.github.com/repos/podhmo/dictremapper"
data = requests.get(url).json()
remapped = SummaryRemapper()(data)
print(json.dumps(remapped, indent=2))

output

{
  "url": "https://github.com/podhmo/dictremapper",
  "fullname": "podhmo/dictremapper",
  "description": "remapping dict",
  "star": 0
}

If you want to change order. ChangeOrder is helpful, maybe.

from dictremapper import ChangeOrder


class SummaryRemapper2(URLRemapper, DescriptionRemapper):
    url = ChangeOrder(URLRemapper.url)
    description = ChangeOrder(DescriptionRemapper.description)
    star = Path("stargazers_count")

remapped = SummaryRemapper2()(data)
print(json.dumps(remapped, indent=2))

output

{
  "fullname": "podhmo/dictremapper",
  "url": "https://github.com/podhmo/dictremapper",
  "description": "remapping dict",
  "star": 0
}

support nested structure

class MyMapper3(Remapper):
    body = Path("body", callback=MyMapper())
    children = Path("children", callback=MyMapper2(many=True))

excludes option of each layer

 class MyMapper3(Remapper):
     body = Path("body", callback=MyMapper())
     children = Path("children", callback=MyMapper2(many=True, excludes=["object.name", "object.age", "id"]))

MyMapper3(excludes=["children.object.description", "body"])(d)

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

dictremapper-0.0.2.tar.gz (3.7 kB view details)

Uploaded Source

File details

Details for the file dictremapper-0.0.2.tar.gz.

File metadata

  • Download URL: dictremapper-0.0.2.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for dictremapper-0.0.2.tar.gz
Algorithm Hash digest
SHA256 abed7ae70a003244d45fd67b477aa83424086d71d6730b44ad975c32c9bf6124
MD5 879fb90d0d956be6dc342be6c69803f8
BLAKE2b-256 05f0b9710c6c852b7b75f270598c92d3178dc7cc1c756ec07ccefce9276453c6

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