<?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%3APresentation</id>
	<title>Python:Presentation - 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%3APresentation"/>
	<link rel="alternate" type="text/html" href="http://dbis-vl2.wikidata.dbis.rwth-aachen.de/index.php?title=Python:Presentation&amp;action=history"/>
	<updated>2026-06-07T07:49:04Z</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:Presentation&amp;diff=2011&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:Presentation&amp;diff=2011&amp;oldid=prev"/>
		<updated>2023-04-05T07:23:56Z</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 Presentation:&lt;br /&gt;
    &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
    a presentation of a lecture&lt;br /&gt;
    &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
    pageTitle:str&lt;br /&gt;
    key:Optional[str] # The key of the Presentation&lt;br /&gt;
    num:Optional[str] # The number of the Presentation&lt;br /&gt;
    name:Optional[str] # The name of the Presentation&lt;br /&gt;
    ppt_file:Optional[str] # The powert point file name of the Presentation&lt;br /&gt;
    sciebo:Optional[str] # The sciebo link suffix of this Presentation&lt;br /&gt;
    gitlab:Optional[str] # The gitlab url of the Presentation&lt;br /&gt;
    moodle:Optional[str] # The moodle pdf annotator page id of the Presentation&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 Presentation&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:Presentation]]&lt;br /&gt;
|mainlabel=pageTitle&lt;br /&gt;
|?Presentation key = key&lt;br /&gt;
|?Presentation num = num&lt;br /&gt;
|?Presentation name = name&lt;br /&gt;
|?Presentation ppt_file = ppt_file&lt;br /&gt;
|?Presentation sciebo = sciebo&lt;br /&gt;
|?Presentation gitlab = gitlab&lt;br /&gt;
|?Presentation moodle = moodle&lt;br /&gt;
| limit=200&lt;br /&gt;
|sort=Presentation num&lt;br /&gt;
|order=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 Presentation from the given dict&lt;br /&gt;
        &lt;br /&gt;
        Args:&lt;br /&gt;
            data(dict): the dict to create the Presentation from&lt;br /&gt;
        &lt;br /&gt;
        Returns:&lt;br /&gt;
            Presentation: the freshly created Presentation&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        presentation=dacite.from_dict(data_class=cls,data=data)&lt;br /&gt;
        return presentation&lt;/div&gt;</summary>
		<author><name>Sysop</name></author>
	</entry>
</feed>