Giter VIP home page Giter VIP logo

datadict's Introduction

DataDict

Treat dataclasses like dictionaries

v1.0.0 Python versions Tests Code style: black Interrogate

Installing DataDict

DataDict is available at PyPI. You can install it using Pip:

$ python -m pip install datadict

Using DataDict

You can use a DataDict dataclass as a drop-in replacement for dataclasses.dataclass in the standard library:

from datadict import dataclass

@dataclass(order=True)
class Point:
    x: int
    y: int

For instances of the new data class, you can access attributes using square brackets, similar to dictionary access:

>>> point = Point(1, 2)
>>> point
Point(x=1, y=2)

>>> point.x
1
>>> point["x"]
1

>>> point["y"] = 3
>>> point
Point(x=1, y=3)

You can also convert the dataclass instance to a proper dictionary:

>>> point.asdict()
{'x': 1, 'y': 3}

Installing From Source

You can always download the latest version of DataDict from GitHub. DataDict uses Flit as a build tool.

To install DataDict from the downloaded source, run Flit through pip:

$ python -m pip install .

If you want to change and play with the DataDict source code, you should install it in editable mode:

$ python -m pip install -w .[dev,test]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.