notefinder (version 0.9, 2008/03/25)
index
/home/gforgx/notefinder/notefinder.py

# -*- coding: utf-8 -*-
#
#       Copyright (C) 2008 GFORGX <gforgx@gmail.com>
#
#       This program is free software; you can redistribute it and/or modify
#       it under the terms of the GNU General Public License as published by
#       the Free Software Foundation; either version 2 of the License, or
#       (at your option) any later version.
#       
#       This program is distributed in the hope that it will be useful,
#       but WITHOUT ANY WARRANTY; without even the implied warranty of
#       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#       GNU General Public License for more details.
#       
#       You should have received a copy of the GNU General Public License
#       along with this program; if not, write to the Free Software
#       Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
#       MA 02110-1301, USA.Built on Wed Dec 19 19:43:57 2007.

 
Modules
       
os
string

 
Classes
       
Date
Note
Search
Tag
Text

 
class Date
     Methods defined here:
__init__(self, date)
create(self)
getNotes(self)
getNumber(self)
remove(self)

 
class Note
     Methods defined here:
__init__(self, name)
getDate(self)
Returns creation date of selected note
getKeywords(self)
Returns list containing 5 most commonly used words in text
getPath(self)
Returns file path for selected note
getTags(self)
Returns tags applied to selected note
getText(self)
remove(self)
Removes note and date/tag dirs if empty
tag(self, tags)
Applies user given tags to note
write(self, text)
Writes some text to note

 
class Search
     Methods defined here:
__init__(self, date, tag, text)
getNotes(self)
getNumber(self)

 
class Tag
     Methods defined here:
__init__(self, tag)
create(self)
getNotes(self)
getNumber(self)
remove(self)

 
class Text
     Methods defined here:
__init__(self, text)
getNotes(self)
getNumber(self)

 
Functions
       
localtime(...)
localtime([seconds]) -> (tm_year,tm_mon,tm_day,tm_hour,tm_min,tm_sec,tm_wday,tm_yday,tm_isdst)
 
Convert seconds since the Epoch to a time tuple expressing local time.
When 'seconds' is not passed in, convert the current time instead.

 
Data
        __author__ = 'GFORGX (gforgx@gmail.com)'
__copyright__ = 'Copyright 2008, GFORGX'
__date__ = '2008/03/25'
__license__ = 'GPL'
__version__ = '0.9'
path = '/home/gforgx/Notes/Date'
tag_path = '/home/gforgx/Notes/Tag'
today = '2008-3-25'

 
Author
        GFORGX (gforgx@gmail.com)