Giter VIP home page Giter VIP logo

Comments (4)

cjw296 avatar cjw296 commented on June 10, 2024

Curious: how do you created circular references in data you're looking to serialize?

from orjson.

DavidBuchanan314 avatar DavidBuchanan314 commented on June 10, 2024

Creating circular references is trivial

import orjson

foo = []
foo.append(foo)

print(orjson.dumps(foo))  # TypeError: Recursion limit reached

This behavior is exactly what I'd expect.

But what does it mean to "support" circular references? What would you expect the successful serialisation of recursive data to look like?

from orjson.

Mario1159 avatar Mario1159 commented on June 10, 2024

There are several possible approaches, here are some examples.

from orjson.

DavidBuchanan314 avatar DavidBuchanan314 commented on June 10, 2024

here you go:

# https://github.com/sindresorhus/decircular but for python

def decircular(obj, path=[], path_seen={}):
	if id(obj) in path_seen:
		return f"[Circular *{'.'.join(map(str, path_seen[id(obj)]))}]"
	match obj:
		case list():
			return [
				decircular(item, path + [i], path_seen | {id(obj): path})
				for i, item in enumerate(obj)
			]
		case dict():
			return {
				k: decircular(v, path + [k], path_seen | {id(obj): path})
				for k, v in obj.items()
			}
		case _:
			return obj

if __name__ == "__main__":
	obj = {
		"a": 1,
		"b": [
			123,
			{ "c": 2 }
		]
	}

	obj["b"][1]["d"] = obj["b"][1] # Creates a circular reference

	print(decircular(obj))
	# {'a': 1, 'b': [123, {'c': 2, 'd': '[Circular *b.1]'}]}

from orjson.

Related Issues (20)

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.