Breaking change "cf" in v3.4.0: clarification needed #11195
-
Hi all, I have a quick question regarding the changelog item
"Python API" means that this concerns code written within the Python framework (e.g. custom scripts and reports as well as plugins) and not the restful API (where custom fields can be accessed via e. g. And all Python API code (e.g. Reports) that use I'm terribly sorry for the stupid questions, I'm not a native speaker and have only recently started coding Reports (loving it, BTW, the source code of NetBox is easy to read and it's fun to explore things in nbshell). |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Correct. Here's an example: >>> site = Site.objects.first()
>>> site.cf['date1']
datetime.date(2022, 12, 13)
Correct. No changes have been made to the serialized data stored in the database. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your quick reply, Jeremy, it's highly appreciated. That answers my question. |
Beta Was this translation helpful? Give feedback.
Correct. Here's an example:
Correct. No changes have been made to the serialized data stored in the database.