Returns a list of authors for a given collection.
Every collection has an identifier (e.g. ubuntu-community) that we use to refer to the group of accomplishments that form that collection.
This function returns all authors (without duplicates) for the collection passed to it.
NEEDSTESTING
>>> obj.get_collection_authors("ubuntu-community")
["Tom Araya", "Nicko McBrain", "James Hetfield", . . .]
Returns a list of categories for a given collection.
Every collection has an identifier (e.g. ubuntu-community) that we use to refer to the group of accomplishments that form that collection.
This function returns all categories (without duplicates) for the collection passed to it.
>>> obj.get_collection_categories("ubuntu-community")
["Launchpad", "Ask Ubuntu", "Development", . . .]
Returns whether the collection exists or not on the disk.
Every collection has an identifier (e.g. ubuntu-community) that we use to refer to the group of accomplishments that form that collection.
This function returns a boolean value of whether the collection exists on the current installation.
NEEDSTESTING
>>> obj.get_collection_exists("ubuntu-community")
True
Returns the name of the current collection.
Every collection has an identifier (e.g. ubuntu-community) that we use to refer to the group of accomplishments that form that collection.
This function returns the name of the current collection.
NEEDSTESTING
>>> obj.get_collection_authors("ubuntu-community")
["Tom Araya", "Nicko McBrain", "James Hetfield", . . .]