Package yum :: Module pkgtag_db :: Class PackageTagDB
[hide private]
[frames] | no frames]

Class PackageTagDB

source code


Instance Methods [hide private]
 
__init__(self, repoid, sqlite_file)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
_sql_exec(*args, **kwargs)
Exec SQL against an MD of the repo, return a cursor.
source code
 
search_tags(self, tag)
Search by tag name/glob Return dict of dict[packagename] = [stringmatched, stringmatched, ...]
source code
 
search_names(self, name)
Search by package name/glob.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, repoid, sqlite_file)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

_sql_exec(*args, **kwargs)

source code 

Exec SQL against an MD of the repo, return a cursor.

Decorators:
  • @catchSqliteException

search_names(self, name)

source code 

Search by package name/glob. Return dict of dict[packagename] = [tag1, tag2, tag3, tag4, ...]