local p = {}

function p.main(frame)
	local t = getArgs(frame)
	local dato = t[1]
	
	local sito
	local entity2= mw.wikibase.getEntity( dato )
	local count = 0
	for i, j in pairs(entity2.sitelinks) do
		count=count+1
	end
	return 'N° di link: ' .. count
end

return p