Hello,
I have developped a Django Application, which allow me to access to my Odoo Database.
My Odoo database is installed in Google Cloud.
My Django application use the "odoorpc" library in Python to can access to my ODOO database.
I have run this Django Application from my localhost, but from the Google cloud doesn't work. this is my basic function to access to my ODOO :
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.shortcuts import render
from django.http import HttpResponse
import odoorpc
# The connection ...
odoo = odoorpc.ODOO('35.192.212.135', port=8069)
---> My programme stop in this level
Any help please ?