$ sudo apt-get install cifs-utils
$ sudo mkdir /mnt/CIFSMOUNT
$ uname -r
Syntax: cat <filename> | jq -c '.[] | select( .<key> | contains("<value>"))'
Example: To get json record having _id equal 611
cat my.json | jq -c '.[] | select( ._id | contains(611))'
Remember: if JSON value has no double quotes (eg. for numeric) to do not supply in filter i.e. in contains(611)
Please explore the tutorial below as it has the indepth explaination:
Reference https://stackoverflow.com/questions/21236824/unresolved-reference-issue-in-pycharm
I have my custom modules on custom_addons
folder which are not referencing to odoo imports in PyCharm
custom_addons/my_module/my_model.py
...
from odoo import models, fields, api, _, exceptions
...