<?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%3ASheet</id>
	<title>Python:Sheet - 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%3ASheet"/>
	<link rel="alternate" type="text/html" href="http://dbis-vl2.wikidata.dbis.rwth-aachen.de/index.php?title=Python:Sheet&amp;action=history"/>
	<updated>2026-05-26T09:21:45Z</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:Sheet&amp;diff=1981&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:Sheet&amp;diff=1981&amp;oldid=prev"/>
		<updated>2023-04-05T07:23:39Z</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 Sheet:&lt;br /&gt;
    &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
    I am a relevance level&lt;br /&gt;
    &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
    pageTitle:str&lt;br /&gt;
    gid:Optional[str] # the gid of this Sheet&lt;br /&gt;
    concept:Optional[str] # the concept this Sheet hold data for&lt;br /&gt;
    url:Optional[str] # the base url for the sheet&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 Sheet&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:Sheet]]&lt;br /&gt;
|mainlabel=pageTitle&lt;br /&gt;
|?Sheet gid = gid&lt;br /&gt;
|?Sheet concept = concept&lt;br /&gt;
|?Sheet url = url&lt;br /&gt;
| limit=200&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 Sheet from the given dict&lt;br /&gt;
        &lt;br /&gt;
        Args:&lt;br /&gt;
            data(dict): the dict to create the Sheet from&lt;br /&gt;
        &lt;br /&gt;
        Returns:&lt;br /&gt;
            Sheet: the freshly created Sheet&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        sheet=dacite.from_dict(data_class=cls,data=data)&lt;br /&gt;
        return sheet&lt;/div&gt;</summary>
		<author><name>Sysop</name></author>
	</entry>
</feed>