When I try to save a dict with the character '.' in the PyMongo key throws an error (InvaildName), however I see (on the Mongodb website) that the keys may have. in them. Why does pymongo not allow me to save these documents? Is there a problem with them and with Mongo?
James
Where you see an example of documents with "." in the key name? They are not valid in MongoDB (hence the limitation of PyMongo).
We believe that we use dot notation in queries for access within embedded documents.
You can use the dot in updates and find, but not in save / insert.
Source: https://habr.com/ru/post/1307833/More articles:JQuery - How to change the parent of an element from H1 to P? - jquerySet Position UIBarButtonItem Programmatically - iphoneEclipse Word / Line Counting Tool - eclipseCreating an Android application from ant via Hudson - chicken and egg problem - androidHow to change an element (e.g. h1 -> h2) using jQuery / plain old javascript? - javascriptKeyboard input for playing Java - javaHow to check if IIS 6 Management Compatibility has been installed? - c #Streaming with commons-exec? - javaIs there a way to stop the output of a UIViewController from the UINavigationController stack when the backBarButtonItem inverse is used? - iphonecommons-exec: freezes when I call executor.execute (commandLine); - javaAll Articles