Giter VIP home page Giter VIP logo

flask-odoowebservice's Introduction

flask-odoowebservice

requirements

  • flask
  • flask-jwt-extended

install

python setup.py install

or

pip install flask-odoowebservice

config

ODOO_URL - default: http://localhost
ODOO_PORT - default: 8069
ODOO_DB - default: odoo8db

more config

example

from flask import Flask
from flask_odoowebservice.odooResources import OdooListResource,OdooRetrieveResource,\
OdooDeleteResource, OdooAttributes, webClient, OdooAuth

app = Flask(__name__)
app.config.from_object('config.Developement')

webClient.init_app(app)

class Odoo(OdooListResource):
    pass

class OdooRetrieve(OdooRetrieveResource):
    pass

class OdooDelete(OdooDeleteResource):
    pass

class Attributes(OdooAttributes):
    pass

webClient.add_resource(Odoo,'/<module>/')
webClient.add_resource(OdooRetrieve,'/<module>/<int:pk>/')
webClient.add_resource(OdooDelete,'/delete/<module>/<int:pk>/')
webClient.add_resource(Attributes,'/<module>/attributes/')
webClient.add_resource(OdooAuth,'/auth/')

app.run('0.0.0.0',port=8000)

you can also use the webservice directly

from flask import Flask,jsonify
from flask_odoowebservice.webService import OdooWebServiceClient

app = Flask(__name__)

odoo_client = OdooWebServiceClient(app)

@app.route('/')
def index():
    uid = odoo_client.get_uid('yourusername','yourpassword')
    return jsonify(uid=uid),200

app.run('localhost',port=8000)

flask-odoowebservice's People

Contributors

franciscocarbonell avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.