コード例 #1
0
ファイル: test_nldn.py プロジェクト: yyqyu/pyIEM
def test_1_basic():
    """CLIBNA is a new diction"""
    np = parser(get_test_file('NLDN/example.bin', fponly=True))
    assert len(np.df.index) == 50
コード例 #2
0
ファイル: test_nldn.py プロジェクト: sportsbitenews/pyIEM
 def test_1_basic(self):
     """CLIBNA is a new diction"""
     np = parser(get_file('example.bin'))
     self.assertEquals(len(np.df.index), 50)
コード例 #3
0
ファイル: nldn_parser.py プロジェクト: xlia/pyWWA
def real_process(buf):
    """ The real processor of the raw data, fun! """
    np = parser(BytesIO(b"NLDN" + buf))
    DBPOOL.runInteraction(np.sql)
コード例 #4
0
def real_process(buf):
    """ The real processor of the raw data, fun! """
    np = parser(cStringIO.StringIO("NLDN" + buf))
    DBPOOL.runInteraction(np.sql)
コード例 #5
0
def test_sql(cursor):
    """Test that we can insert data."""
    np = parser(get_test_file("NLDN/example.bin", fponly=True))
    np.sql(cursor)
コード例 #6
0
 def test_1_basic(self):
     """CLIBNA is a new diction"""
     np = parser(get_file('example.bin'))
     self.assertEquals(len(np.df.index), 50)