<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://dbis-vl2.wikidata.dbis.rwth-aachen.de/index.php?action=history&amp;feed=atom&amp;title=Python%3ALearningGoal</id>
	<title>Python:LearningGoal - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://dbis-vl2.wikidata.dbis.rwth-aachen.de/index.php?action=history&amp;feed=atom&amp;title=Python%3ALearningGoal"/>
	<link rel="alternate" type="text/html" href="http://dbis-vl2.wikidata.dbis.rwth-aachen.de/index.php?title=Python:LearningGoal&amp;action=history"/>
	<updated>2026-07-24T23:32:18Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.1</generator>
	<entry>
		<id>http://dbis-vl2.wikidata.dbis.rwth-aachen.de/index.php?title=Python:LearningGoal&amp;diff=1939&amp;oldid=prev</id>
		<title>Sysop: modified through wikirestore by Sysop</title>
		<link rel="alternate" type="text/html" href="http://dbis-vl2.wikidata.dbis.rwth-aachen.de/index.php?title=Python:LearningGoal&amp;diff=1939&amp;oldid=prev"/>
		<updated>2023-04-05T07:23:14Z</updated>

		<summary type="html">&lt;p&gt;modified through wikirestore by Sysop&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;from dataclasses import dataclass&lt;br /&gt;
from typing import Optional&lt;br /&gt;
import dacite&lt;br /&gt;
@dataclass&lt;br /&gt;
class LearningGoal:&lt;br /&gt;
    &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
    a LearningGoal of a lecture&lt;br /&gt;
    &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
    pageTitle:str&lt;br /&gt;
    key:Optional[str] # The local key of the LearningGoal&lt;br /&gt;
    qKey:Optional[str] # The fully qualifing key of the LearningGoal&lt;br /&gt;
    id:Optional[str] # The hierachical id of the LearningGoal e.g. 1.1.1&lt;br /&gt;
    chapter:Optional[str] # The chapter of the LearningGoal&lt;br /&gt;
    chapterKey:Optional[str] # The key of the chapter of the LearningGoal&lt;br /&gt;
    subChapter:Optional[str] # The subChapter of the LearningGoal&lt;br /&gt;
    subChapterKey:Optional[str] # The key of the subChapter of the LearningGoal&lt;br /&gt;
    relevance:Optional[str] # The relevance of the LearningGoal&lt;br /&gt;
    keywords:Optional[str] # keywords the learningGoal references&lt;br /&gt;
    since:Optional[str] # The year since when this learningGoal is active&lt;br /&gt;
    until:Optional[str] # The year until this learningGoal was active&lt;br /&gt;
&lt;br /&gt;
    @classmethod&lt;br /&gt;
    def askQuery(cls):&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        get the ask Query for LearningGoal&lt;br /&gt;
        &lt;br /&gt;
        Returns:&lt;br /&gt;
            str: the mediawiki markup for the ask query&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        ask=&amp;quot;&amp;quot;&amp;quot;{{#ask: [[Concept:LearningGoal]]&lt;br /&gt;
|mainlabel=pageTitle&lt;br /&gt;
|?LearningGoal key = key&lt;br /&gt;
|?LearningGoal qKey = qKey&lt;br /&gt;
|?LearningGoal id = id&lt;br /&gt;
|?LearningGoal chapter = chapter&lt;br /&gt;
|?LearningGoal chapterKey = chapterKey&lt;br /&gt;
|?LearningGoal subChapter = subChapter&lt;br /&gt;
|?LearningGoal subChapterKey = subChapterKey&lt;br /&gt;
|?LearningGoal relevance = relevance&lt;br /&gt;
|?LearningGoal keywords = keywords&lt;br /&gt;
|?LearningGoal since = since&lt;br /&gt;
|?LearningGoal until = until&lt;br /&gt;
| limit=200&lt;br /&gt;
|sort=LearningGoal chapter,LearningGoal subChapter&lt;br /&gt;
|order=ascending,ascending&lt;br /&gt;
}}&amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        return ask&lt;br /&gt;
        &lt;br /&gt;
    @classmethod&lt;br /&gt;
    def fromDict(cls,data:dict):&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        create a LearningGoal from the given dict&lt;br /&gt;
        &lt;br /&gt;
        Args:&lt;br /&gt;
            data(dict): the dict to create the LearningGoal from&lt;br /&gt;
        &lt;br /&gt;
        Returns:&lt;br /&gt;
            LearningGoal: the freshly created LearningGoal&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        learninggoal=dacite.from_dict(data_class=cls,data=data)&lt;br /&gt;
        return learninggoal&lt;/div&gt;</summary>
		<author><name>Sysop</name></author>
	</entry>
</feed>