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


Python FrenchTransaction.investments方法代码示例

本文整理汇总了Python中weboob.tools.capabilities.bank.transactions.FrenchTransaction.investments方法的典型用法代码示例。如果您正苦于以下问题:Python FrenchTransaction.investments方法的具体用法?Python FrenchTransaction.investments怎么用?Python FrenchTransaction.investments使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在weboob.tools.capabilities.bank.transactions.FrenchTransaction的用法示例。


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

示例1: get_operations

# 需要导入模块: from weboob.tools.capabilities.bank.transactions import FrenchTransaction [as 别名]
# 或者: from weboob.tools.capabilities.bank.transactions.FrenchTransaction import investments [as 别名]
    def get_operations(self):
        for tr in self.document.xpath('//div[@class="block no-hd"]//table[@class="list"]/tbody/tr'):
            tds = tr.xpath('./td')

            date = self.parser.tocleanstring(tds[0])
            label = self.parser.tocleanstring(tds[1])
            amount = self.parser.tocleanstring(tds[2])

            operation = FrenchTransaction()
            operation.parse(date=date, raw=label)
            operation.set_amount(amount)

            if tds[0].xpath('./a'):
                operation.investments = self.get_investments(tds[0].xpath('./a')[0].attrib['href']) or NotAvailable

            yield operation
开发者ID:ffourcot,项目名称:weboob,代码行数:18,代码来源:lifeinsurance_history.py


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