Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121622386
database_reader.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jul 12, 13:39
Size
1 KB
Mime Type
text/x-python
Expires
Mon, Jul 14, 13:39 (2 d)
Engine
blob
Format
Raw Data
Handle
27360728
Attached To
R2010 molecular_data_processing
database_reader.py
View Options
#!/usr/bin/env python
# -*- coding: utf-8 -*-
" module containing class databaseReader"
class
databaseReader
(
object
):
"""
class databaseReader: to implement will be able to read information stored in the local database
"""
# ------------------------------------------------------------------ #
# Constructors/Destructors #
# ------------------------------------------------------------------ #
def
__init__
(
self
,
URI
):
"""__init__: not implemented """
self
.
name_of_object_to_read
=
URI
def
__del__
(
self
):
"""__del__: not implemented """
pass
# ------------------------------------------------------------------ #
# Methods #
# ------------------------------------------------------------------ #
# public:
def
read
(
self
):
"""read: not implemented """
pass
##########################################################################
if
__name__
==
'__main__'
:
test
=
databaseReader
()
Event Timeline
Log In to Comment