I made my life easier and want to share it with you. Now documents created in Google Docs are available offline and on all of my work computers.
I present to you the Python script that synchronizes the documents between the Google Docs service and the directory on the drive, which in my case is the Dropbox server storage directory.
First, the presence of the 'dropbox' folder in Google Docs (the FOLDER parameter) is checked, if it is absent, it is created. The list of documents in this folder is requested. Searches for documents (files with the extension .doc) in the specified directory (parameter BOX_PATH). Further, the Google docs documents found in the directory are downloaded from the service. Changed documents (those which do not equal the last update date) are uploaded / loaded accordingly. Documents missing in Google Docs are loaded into the service.
Known Issues
If you delete a document in the Google Docs interface, the next session it will still load into it. (I have not yet figured out how to handle this situation)
Only documents (".doc") are synchronized.
PS1
It would be absolutely wonderful if Dropbox had an API, then it would be possible to fasten this script as a plugin and everything would work on the machine, and not as it is now in manual or by cron.
PS2
The author is not responsible for the software provided. Use at your own risk.