客户端计算机中的Python Eve API访问

时间:2018-08-30 11:38:01

标签: python api eve

我想在客户端计算机中访问python eve的其余api。 这是我的代码,

MONGO_HOST = 'localhost'
MONGO_PORT = 27017
MONGO_USERNAME = ''
MONGO_PASSWORD = ''
MONGO_DBNAME = 'test'
RESOURCE_METHODS = ['GET', 'POST', 'DELETE']
cust = {
          'item_title': 'Custmer Detail',
          'cache_control': 'max-age=10,must-revalidate',
          'cache_expires': 10,
          'resource_methods': ['GET', 'POST'],
          'schema': {
                        "CUSTOMERID" : {    'type': 'string' },
                        "COMPANYNAME": {    'type': 'string' }
          }
       }
DOMAIN = {'Customers': cust}

我在本地计算机上获得了输出,但是我想知道如何配置主机和端口以访问客户端或另一台计算机上的此表。

1 个答案:

答案 0 :(得分:1)

这个问题已经asked and answered。引用一个答案:

  

向您的app.run()添加参数。默认情况下,它在本地主机上运行,​​将其更改为app.run(host= '0.0.0.0')以在您的计算机IP地址上运行。