Trees | Indices | Help |
|
---|
|
declarative_base() --+ | Sample
Submitted files details.
|
|||
|
|||
|
|||
|
|||
|
|
|||
__tablename__ = "samples"
|
|||
id = Column(Integer(), primary_key= True)
|
|||
file_size = Column(Integer(), nullable= False)
|
|||
file_type = Column(Text(), nullable= False)
|
|||
md5 = Column(String(32), nullable= False)
|
|||
crc32 = Column(String(8), nullable= False)
|
|||
sha1 = Column(String(40), nullable= False)
|
|||
sha256 = Column(String(64), nullable= False)
|
|||
sha512 = Column(String(128), nullable= False)
|
|||
ssdeep = Column(String(255), nullable= True)
|
|||
__table_args__ = Index("hash_index", "md5", "crc32", "sha1", "
|
|
Converts object to dict.
|
Converts object to JSON.
|
|
__table_args__
|
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Nov 4 23:21:58 2016 | http://epydoc.sourceforge.net |