当前位置: 首页>>代码示例>>Python>>正文


Python lajistore_service.LajiStoreAPI类代码示例

本文整理汇总了Python中papukaaniApp.services.lajistore_service.LajiStoreAPI的典型用法代码示例。如果您正苦于以下问题:Python LajiStoreAPI类的具体用法?Python LajiStoreAPI怎么用?Python LajiStoreAPI使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了LajiStoreAPI类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: find

def find(**kwargs):

    if 'deviceID' in kwargs:
        kwargs['deviceID'] = '"' + _URL + _DEVICE_PATH + "/" + kwargs['deviceID'] + '"'
    if 'individualID' in kwargs:
        kwargs['individualID'] = '"' + _URL + _INDIVIDUAL_PATH + "/" + kwargs['individualID'] + '"'

    attachments = LajiStoreAPI.get_all_deviceindividual(**kwargs)
    devices = LajiStoreAPI.get_all_devices()
    deviceIDs = set([d["id"] for d in devices])
    individuals = LajiStoreAPI.get_all_individuals()
    individualIDs = set()

    for i in individuals:
        # soft removed?
        if not i["deleted"]:
            individualIDs.add(i["id"])

    valid = []

    for attachment in attachments:
        if "removed" not in attachment:
            attachment["removed"] = None
        # really removed?
        if attachment['deviceID'] in deviceIDs and attachment['individualID'] in individualIDs:
            valid.append(attachment)
    return valid
开发者ID:Team-Papukaani,项目名称:papukaani,代码行数:27,代码来源:DeviceIndividual.py

示例2: update

    def update(self):
        '''
        Saves changes to the object to the corresponding LajiStore entry.
        '''

        self.dateEdited = current_time_as_lajistore_timestamp()
        dict = self.to_dict()
        LajiStoreAPI.update_document(**dict)  # to_dict() puts all arguments here
开发者ID:Team-Papukaani,项目名称:papukaani,代码行数:8,代码来源:document.py

示例3: testGetAll

    def testGetAll(self):
        response = LajiStoreAPI.get_all_documents()
        self.assertGreaterEqual(len(response), 0)

        response = LajiStoreAPI.get_all_devices()
        self.assertGreaterEqual(len(response), 0)

        response = LajiStoreAPI.get_all_individuals()
        self.assertGreaterEqual(len(response), 0)
开发者ID:Team-Papukaani,项目名称:papukaani,代码行数:9,代码来源:testLajiStoreAPI.py

示例4: testSingleArgumentQueries

    def testSingleArgumentQueries(self):
        response = LajiStoreAPI.get_all_devices(deviceManufacturerID="ABCD1234567")
        self.assertGreaterEqual(len(response), 0)

        response = LajiStoreAPI.get_all_documents(deviceID="ABCDTESTTEST")
        self.assertGreaterEqual(len(response), 0)

        response = LajiStoreAPI.get_all_individuals(deleted=True)
        self.assertGreaterEqual(len(response), 0)

        response = LajiStoreAPI.get_all_documents(deviceID="NOTFOUND")
        self.assertEqual(len(response), 0)
开发者ID:Team-Papukaani,项目名称:papukaani,代码行数:12,代码来源:testLajiStoreAPI.py

示例5: testLajiStoreIndividual

    def testLajiStoreIndividual(self):
        response = LajiStoreAPI.post_individual(**self.individual)
        self.assertEquals(True, "id" in response)

        response = LajiStoreAPI.get_individual(response["id"])
        self.assertEquals(True, "id" in response)

        self.individual["id"] = response["id"]
        response = LajiStoreAPI.update_individual(**self.individual)
        self.assertEquals(True, "id" in response)

        response = LajiStoreAPI.delete_individual(response["id"])
        self.assertEquals(204, response.status_code)
开发者ID:leftees,项目名称:papukaani,代码行数:13,代码来源:testLajiStoreAPI.py

示例6: testLajiStoreNews

    def testLajiStoreNews(self):
        response = LajiStoreAPI.post_news(**self.news)
        self.assertEquals(True, "id" in response)

        response = LajiStoreAPI.get_news(response["id"])
        self.assertEquals(True, "id" in response)

        self.news["id"] = response["id"]
        response = LajiStoreAPI.update_news(**self.news)
        self.assertEquals(True, "id" in response)

        response = LajiStoreAPI.delete_news(response["id"])
        self.assertEquals(204, response.status_code)
开发者ID:Team-Papukaani,项目名称:papukaani,代码行数:13,代码来源:testLajiStoreAPI.py

示例7: testLajiStoreDevice

    def testLajiStoreDevice(self):
        response = LajiStoreAPI.post_device(**self.device)
        self.assertEquals(True, "id" in response)

        response = LajiStoreAPI.get_device(response["id"])
        self.assertEquals(True, "id" in response)

        self.device["id"] = response["id"]
        response = LajiStoreAPI.update_device(**self.device)
        self.assertEquals(True, "id" in response)

        response = LajiStoreAPI.delete_device(response["id"])
        self.assertEquals(204, response.status_code)
开发者ID:Team-Papukaani,项目名称:papukaani,代码行数:13,代码来源:testLajiStoreAPI.py

示例8: testSingleArgumentQueries

    def testSingleArgumentQueries(self):

        response = LajiStoreAPI.get_all_devices(deviceId="ABCD1234567")
        self.assertGreaterEqual(len(response), 0)

        response = LajiStoreAPI.get_all_documents(documentId="ABCDTESTTEST")
        self.assertGreaterEqual(len(response), 0)

        response = LajiStoreAPI.get_all_individuals(individualId="INDIVIDUALABCD")
        self.assertGreaterEqual(len(response), 0)

        response = LajiStoreAPI.get_all_documents(documentId="NOTFOUND")
        self.assertEqual(len(response), 0)
开发者ID:leftees,项目名称:papukaani,代码行数:13,代码来源:testLajiStoreAPI.py

示例9: testAddQuery

    def testAddQuery(self):
        q = LajiStoreAPI._add_query(arg1="test")
        self.assertEquals(q, "?q=arg1:test")
        self.assertTrue(" AND " not in q)

        q = LajiStoreAPI._add_query(arg1="test", arg2="value")
        self.assertTrue("arg1:test" in q)
        self.assertTrue("arg2:value" in q)
        self.assertTrue(" AND " in q)

        q = LajiStoreAPI._add_query(arg1="test", arg2="value", arg3=2)
        self.assertTrue("arg1:test" in q)
        self.assertTrue("arg2:value" in q)
        self.assertTrue("arg3:2" in q)
        self.assertTrue(" AND " in q)
开发者ID:Team-Papukaani,项目名称:papukaani,代码行数:15,代码来源:testLajiStoreAPI.py

示例10: _get_many

def _get_many(**kwargs):
    data = LajiStoreAPI.get_all_individuals(**kwargs)
    individuals = []
    for individual in data:  # creates a list of individuals to return

        individuals.append(Individual(**individual))
    return individuals
开发者ID:leftees,项目名称:papukaani,代码行数:7,代码来源:individual.py

示例11: get

def get(id):
    '''
    Gets a device from LajiStore
    :param id: The LajiStore ID of the individual
    :return: A Individual object
    '''
    individual = LajiStoreAPI.get_individual(id)
    return Individual(**individual)
开发者ID:Team-Papukaani,项目名称:papukaani,代码行数:8,代码来源:individual.py

示例12: get

def get(id):
    '''
    Gets a device from LajiStore
    :param id: The LajiStore ID of the device
    :return: A Device object
    '''
    device = LajiStoreAPI.get_device(id)
    return Device(**device)
开发者ID:leftees,项目名称:papukaani,代码行数:8,代码来源:device.py

示例13: create

def create(deviceId, deviceType, deviceManufacturer, createdAt, lastModifiedAt, facts):
    '''
    Creates a device instance in LajiStore and a corresponding Device object
    :return: A Device object
    '''
    device = LajiStoreAPI.post_device(deviceId, deviceType, deviceManufacturer, createdAt, lastModifiedAt,
                                     facts)
    return Device(**device)
开发者ID:leftees,项目名称:papukaani,代码行数:8,代码来源:device.py

示例14: get

def get(id):
    '''
    Gets a document from LajiStore
    :param id: The LajiStore ID of the document
    :return: A Document object
    '''
    document = LajiStoreAPI.get_document(id)
    return Document(**document)
开发者ID:leftees,项目名称:papukaani,代码行数:8,代码来源:document.py

示例15: create

def create(individualId, taxon):
    '''
    Creates an individual instance in LajiStore and a corresponding Indiviual object
    :param id: The LajiStore ID of the object
    :param taxon: The LajiStore taxon of the object
    :return: An Individual object
    '''
    individual = LajiStoreAPI.post_individual(individualId, taxon)
    return Individual(**individual)
开发者ID:leftees,项目名称:papukaani,代码行数:9,代码来源:individual.py


注:本文中的papukaaniApp.services.lajistore_service.LajiStoreAPI类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。