Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# -*- coding: utf-8 -*- 

2""" 

3@file 

4@brief Defines a streming dataframe. 

5""" 

6 

7 

8class StreamingInefficientException(Exception): 

9 """ 

10 Kind of operations doable with a :epkg:`pandas:DataFrame` 

11 but which should not be done in streaming mode. 

12 """ 

13 

14 def __init__(self, meth): 

15 """ 

16 This method is inefficient in streaming mode 

17 and not implemented. 

18 

19 :param meth: inefficient method 

20 """ 

21 Exception.__init__( 

22 self, "{0} should not be done in streaming mode.".format(meth))