SlackLog models

SlackLog models represent the ChangeLog.txt after parsing.

class slacklog.models.SlackLog[source]

Bases: object

Little more than a list of SlackLogEntry objects.

class slacklog.models.SlackLogEntry(timestamp, description, log)[source]

Bases: object

An entry in a SlackLog.

Consist of a timestamp in UTC, and a unicode description which may be empty.

Also contains a list of SlackLogPkg objects.

class slacklog.models.SlackLogPkg(pkg, description, entry)[source]

Bases: object

An entry in a SlackLogEntry.

Consists of a unicode package identifier and a unicode description.

Previous topic

API documentation

Next topic

SlackLog parsers

This Page