本文整理汇总了Python中product.Product.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python Product.__init__方法的具体用法?Python Product.__init__怎么用?Python Product.__init__使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类product.Product
的用法示例。
在下文中一共展示了Product.__init__方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from product import Product [as 别名]
# 或者: from product.Product import __init__ [as 别名]
def __init__(self, path):
global netCdfReady
Product.__init__(self, path)
print " init class netCDF_Product"
self.netCdfReady=netCDFloaded
self.type=Product.TYPE_NETCDF
self.dataset=None
示例2: __init__
# 需要导入模块: from product import Product [as 别名]
# 或者: from product.Product import __init__ [as 别名]
def __init__(self, path):
Product.__init__(self, path)
print " init class Directory_Product"
self.type=Product.TYPE_DIR
示例3: __init__
# 需要导入模块: from product import Product [as 别名]
# 或者: from product.Product import __init__ [as 别名]
def __init__(self, raw_product):
Product.__init__(self, raw_product)
bib_info = raw_product.get('biblio', {})
self._parse_bib_info(bib_info)
示例4: __init__
# 需要导入模块: from product import Product [as 别名]
# 或者: from product.Product import __init__ [as 别名]
def __init__(self, name="unknown", manufacture="unknown", productnum=0, price=0.0, medium="unknown"):
Product.__init__(self, name, manufacture, productnum, price)
self.__medium = medium
示例5: __init__
# 需要导入模块: from product import Product [as 别名]
# 或者: from product.Product import __init__ [as 别名]
def __init__(self, raw_product):
Product.__init__(self, raw_product)
示例6: __init__
# 需要导入模块: from product import Product [as 别名]
# 或者: from product.Product import __init__ [as 别名]
def __init__(self, name="unknown", manufacture="unknown", productnum=0, price=0.0, weight=0.0):
Product.__init__(self, name, manufacture, productnum, price)
self.__weight = weight
示例7: __init__
# 需要导入模块: from product import Product [as 别名]
# 或者: from product.Product import __init__ [as 别名]
def __init__(self, name, stock_price, final_price, diskspace, ram):
Product.__init__(self, name, stock_price, final_price)
self.diskspace = diskspace
self.ram = ram
示例8: __init__
# 需要导入模块: from product import Product [as 别名]
# 或者: from product.Product import __init__ [as 别名]
def __init__(self, name, stock_price, final_price,
display_size, mega_pixels):
Product.__init__(self, name, stock_price, final_price)
self.display_size = display_size
self.final_price = final_price