本文整理汇总了Python中pyinstruments.curvestore.models.CurveDB.delete方法的典型用法代码示例。如果您正苦于以下问题:Python CurveDB.delete方法的具体用法?Python CurveDB.delete怎么用?Python CurveDB.delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyinstruments.curvestore.models.CurveDB
的用法示例。
在下文中一共展示了CurveDB.delete方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_import_export_with_childs
# 需要导入模块: from pyinstruments.curvestore.models import CurveDB [as 别名]
# 或者: from pyinstruments.curvestore.models.CurveDB import delete [as 别名]
def test_import_export_with_childs(self):
from pyinstruments import CurveDB
c = CurveDB()
s = pandas.Series([1,2,1])
c.set_data(s)
c.name = 'to_be_exported'
c.save()
c2 = CurveDB()
s2 = pandas.Series([1,3,1])
c2.set_data(s2)
c2.name = 'to_be_exported_child'
c2.move(c)
queryset = CurveDB.objects.filter(id__in=[c.id, c2.id])
from pyinstruments.curvestore.export import export_zip, import_zip
export_zip(queryset, osp.dirname(__file__) + '/tests/temp_files/' +\
'test_export1.zip')
c.delete()
import_zip(osp.dirname(__file__) + '/tests/temp_files/' + \
'test_export1.zip')
q = CurveDB.objects.filter_param('name', value='to_be_exported_child')
self.assertEqual(q.count(), 1)
self.assertLess((q[0].data - s2).abs().max(), 0.001)
示例2: test_delete
# 需要导入模块: from pyinstruments.curvestore.models import CurveDB [as 别名]
# 或者: from pyinstruments.curvestore.models.CurveDB import delete [as 别名]
def test_delete(self):
from curve import Curve
curve = CurveDB()
curve.set_data(pandas.Series([1,4,6]))
curve.params["dummy"] = 24.5
for j in range(100):
curve.params['coucou' + str(j)] = j
curve.save()
tic = time.time()
curve.delete()
print_and_log("time for deleting one curve: ", time.time() - tic)