https://w.wiki/EXLz
Friday, 20 June 2025
Saturday, 10 February 2024
Adding category using PAWD
First
let us collect the wikipedia articles that has no category of people who died in 2023 using sparql
Sample : Link
Second:
Extract the title using MS Excel
Third
Paste the article title in PAWS as given below
------------
import pywikibot
def add_category_to_article(page_title, category):
site = pywikibot.Site('ml', 'wikipedia') # Malayalam Wikipedia
page = pywikibot.Page(site, page_title)
# Check if the page exists
if not page.exists():
print(f"Page '{page_title}' does not exist.")
return
# Check if the page already has the category
if category in page.categories():
print(f"Page '{page_title}' already has the category '{category}'.")
return
# Add the category to the page
page.text += f"\n[[വർഗ്ഗം:{category}]]"
page.save(f"കാറ്റഗറി ചേർക്കുന്നു '{category}' ")
def main():
articles = [
"എസ്ഥേർ_ഈല്ലം",
"ദരൂഷ്_മെഹ്റൂജി"
]
category = "2023-ൽ മരിച്ചവർ"
for article in articles:
add_category_to_article(article, category)
if __name__ == "__main__":
main()
Fourth
Run the python file.
NB: Note, there should not be comma after the last title in python and recheck the category name properly.
It is based on wikidata statement: Date of death.
Wednesday, 29 March 2023
Commons Query
To Get file names that are not available in your languae
Codes
SELECT ?file ?title ?captionEn ?captionMl ?img_
WITH
{
SELECT ?file ?title
WHERE
{
SERVICE wikibase:mwapi
{
bd:serviceParam wikibase:api "Search" .
bd:serviceParam wikibase:endpoint "commons.wikimedia.org" .
bd:serviceParam mwapi:srsearch "deepcategory:\"Otto von Bismarck by year\" prefix:File:" .
bd:serviceParam mwapi:srlimit "max" .
?title wikibase:apiOutput mwapi:title .
?pageid wikibase:apiOutput "@pageid" .
}
BIND (URI(CONCAT('https://commons.wikimedia.org/entity/M', ?pageid)) AS ?file)
}
} AS %get_files
WHERE
{
INCLUDE %get_files
# ?file wdt:P180 ?depicts ?img_.
# service <https://query.wikidata.org/sparql> {
# OPTIONAL {?depicts rdfs:label ?depicts_label FILTER (lang(?depicts_label) = 'en') }
# }
OPTIONAL { ?file rdfs:label ?captionEn FILTER (lang(?captionEn) = 'en') }
OPTIONAL { ?file rdfs:label ?captionMl FILTER (lang(?captionMl) = 'ml') }
optional {
?item wdt:P18 ?img_ .
}
bind (if(bound(?img_),
?img_,
<http://commons.wikimedia.org/wiki/Special:FilePath/File:Profile_avatar_placeholder_large.png>) as ?image)
} order by desc(?date)
Tuesday, 10 January 2023
Items that do not have labels in ml
https://w.wiki/6D4n
Wednesday, 31 August 2022
Wednesday, 17 August 2022
UAE Archeological sites that do not have located territory
#UAE Archelogical sites that do not lave located territory
SELECT ?item ?itemLabel
WHERE
{
?item wdt:P361 wd:Q3962347. # Archelogical sites
MINUS {
?item p:P131 ?statement1.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # Helps get the label in your language, if not, then en language
}}
Thursday, 21 July 2022
Sunday, 5 June 2022
Sunday, 1 August 2021
Missing description for chess players
https://w.wiki/3mYD
missing Labels in wikimedia category
https://w.wiki/3n6m
SELECT ?item ?len { ?item wdt:P31 wd:Q4167836. ?item rdfs:label ?len. FILTER(LANG(?len)="en") FILTER NOT EXISTS { ?item rdfs:label ?lml. FILTER(LANG(?lml)="ml") } } LIMIT 100
Items with less than 11 statements in ml wiki
https://w.wiki/3$bP
Thursday, 19 December 2019
SPARQL query to find out all female scientists with no Arabic but an English article
SELECT DISTINCT ?item ?entitle ?enarticle WHERE {
?item wdt:P31 wd:Q5;
wdt:P106/wdt:P279* wd:Q901;
wdt:P21 wd:Q6581072.
MINUS {
?ararticle schema:about ?item;
schema:isPartOf <https://ar.wikipedia.org/>.
}
?enarticle schema:about ?item;
schema:name ?entitle;
schema:isPartOf <https://en.wikipedia.org/>.
}
Courtesy - Lucas Werkmeister
Tuesday, 1 October 2019
Missing descriptions in ml districts
Located in the administrative territorial entity - p131
Malappuram district (Q1030918)
Wednesday, 31 July 2019
SPARQL query to finding wikidata items Which does not have descriptions
-
#no description
SELECT ?item ?itemLabel ?itemLabel_ml
WHERE
{
?item wdt:P106 wd:Q11900058 .
optional {?item rdfs:label ?itemLabel_ml . filter(lang(?itemLabel_ml)="ml")}
filter not exists {?item schema:description ?itemDesc_ml . filter(lang(?itemDesc_ml)="ml")}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
- by - Tagishsimon (talk)
#no description
SELECT ?item ?itemLabel ?itemLabel_ml
WHERE
{
?item wdt:P106 wd:Q11900058 .
optional {?item rdfs:label ?itemLabel_ml . filter(lang(?itemLabel_ml)="ml")}
filter not exists {?item schema:description ?itemDesc_ml . filter(lang(?itemDesc_ml)="ml")}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
My SPARQL query to finding wikidata items Which does not have labels
#no label SELECT ?item ?itemLabel ?itemDesc_ml WHERE { ?item wdt:P106 wd:Q11900058 . filter not exists {?item rdfs:label ?itemLabel_ml . filter(lang(?itemLabel_ml)="ml")} optional {?item schema:description ?itemDesc_ml . filter(lang(?itemDesc_ml)="ml")} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
To try this
Prepared Credit for Tagishsimon
Who is he ?
About me in media
Popular Posts
-
Traditional teaching engages some students but not all . Kagan is a revolutionary approach to teaching that actively engages e...
-
Subject coordinators have crucial role in academic development of every institution. Usually their post comes under Head of the Departme...
-
Exciting Experience at the World School Summit! I had an amazing time at the hashtag # World_School_Summit at Deira International Schoo...
-
As we celebrate the 53rd UAE National Day, I'm reminded of the country's remarkable spirit of inclusivity and tolerance. The UAE i...
-
Happy to share my experience attending the 3-day WikiLib Conference in Mexico City, Mexico! This enriching event brought together librarians...
-
Tell us about your involvement in your home wiki or the broader Wikimedia movement. What have you built or contributed to in order to im...
-
Today I had 3 more new students in my class. Somebody had retest. Thats why they came to new class late.So again explained , What is schoo...
-
World Environment Day (WED) is celebrated each year on June 5. Like Earth Day, it's a day to learn about the environment, partic...
-
Date & Time: Sunday, May 4, from 2:00 - 4:00 pm EEST Facilitators: debt & siebrand Venue: Palandoken Ballroom == Relevant links == P...
-
Trainer : Dr. Thomas Abraham Class Audio is available here Part- I Part -2 Celebration of Diversity TCI Workshop Foun...
Labels
- #distancelearning
- #InThisTogetherDubai
- 10M
- 10N
- 2017-18
- 2024
- 21st C teaching
- 9M
- 9P
- 9Q
- Academic Activities
- Acadmic thoughts
- Activities
- Activity Oriented Class
- AEP
- AI
- AI Education
- Applications
- April
- Article
- Assessment
- Awards
- Begaviour
- Beginning of Academic year
- Big ideas
- blooms
- Bots
- Bus stops
- California
- Career
- CBSE
- ChatGpt
- Child Centred
- class 10
- class 9
- Class Dojo
- Class note book
- Class Observation
- Class Party
- Classroom
- co-curricular activities
- codes
- college
- Comments
- Corona
- CPD
- Creative Works
- Demo
- Democracy
- Department activities
- differentiated learning
- Distance learning
- DM
- Dr Thomas Abraham
- Dubai
- duty
- editing
- Education World
- educational
- Educational Reform
- Educational technology
- EduConference
- EduWiki2023
- emails
- Environment
- expectation
- experiences
- feedback
- Felicitation
- First day
- football
- Free
- general instruction
- Geography
- GLAM
- Grade 10
- Grade 9
- Group Discussion
- habitat
- Hackathon
- History Class
- HOD Meeting
- html
- ICT in Education
- iis
- initiatives
- Instructions to teachers
- interactive notes
- Istanbul
- Items
- java
- Jigsaw
- Leadership
- Lecture notes
- Lesson Plan
- Library
- Making Thinking Visible
- malayalamwiki
- mcq
- Meetings
- Mexico
- Movement Strategy
- MSCS
- Nationalday
- Nature
- New ideas
- New methods of Teaching
- No Article in Ar/ml
- no descriptions
- No labels
- notes
- Oman
- online class
- Online Quiz
- Open Street Map
- OSM
- Outside
- Partcicipation
- Paws
- PDP
- Pedagogy
- Photos
- Planning
- Plenaries
- Politics
- PPT Files
- Practical Solutions
- Preparations
- Presentation
- proactive
- professional development
- Published
- Python
- pywiki
- queries
- questionpapers
- Questions
- quizizz.com
- Regents
- Report Cards
- resources
- Review
- revision
- samples
- Sanjeev Kumar
- Scheduled messages
- School Development
- School Election
- School Life
- Schools
- Science
- SDP
- seminar
- September
- SIBF
- Sirajnews Daily
- Social Science
- SODs
- sophox.org
- SPARQL
- speech
- Strategies
- Subject Coordinators
- summer vacation assignment
- Sunitha
- Tagishsimon
- taxonomy
- TCI
- teachers
- Teachers licence
- Teaching Training
- team building
- Texas
- Thought on School Future
- Thrissure
- time management
- Tips
- TLS
- tools
- Training
- UAE
- UAE National day
- uae schools
- UAEWiki
- unit plan
- upload
- Vacation
- Video Tutorials
- Websites
- WikiArabia
- wikicommons query
- Wikidata
- Wikidatacon
- WikiLib
- Wikimedia
- Wikipedia
- wikisource
- Wings Activity
- wokrloads
- worksheets
- Workshops
- world cup
- World Environment Day
- World School Summit
- Year Plan
- Zoom
Blog Archive
About
Featured Posts
Featured Posts
Featured Posts
Pages
recent posts
Flickr Images
Like us on Facebook
Blogroll
Advertise
Pages - Menu
Popular Posts
-
Traditional teaching engages some students but not all . Kagan is a revolutionary approach to teaching that actively engages e...
-
Subject coordinators have crucial role in academic development of every institution. Usually their post comes under Head of the Departme...
-
Exciting Experience at the World School Summit! I had an amazing time at the hashtag # World_School_Summit at Deira International Schoo...
-
As we celebrate the 53rd UAE National Day, I'm reminded of the country's remarkable spirit of inclusivity and tolerance. The UAE i...
-
Happy to share my experience attending the 3-day WikiLib Conference in Mexico City, Mexico! This enriching event brought together librarians...
-
Tell us about your involvement in your home wiki or the broader Wikimedia movement. What have you built or contributed to in order to im...
-
Today I had 3 more new students in my class. Somebody had retest. Thats why they came to new class late.So again explained , What is schoo...
-
World Environment Day (WED) is celebrated each year on June 5. Like Earth Day, it's a day to learn about the environment, partic...
-
Date & Time: Sunday, May 4, from 2:00 - 4:00 pm EEST Facilitators: debt & siebrand Venue: Palandoken Ballroom == Relevant links == P...
-
Trainer : Dr. Thomas Abraham Class Audio is available here Part- I Part -2 Celebration of Diversity TCI Workshop Foun...