Diferencia entre revisiones de «Usuario:Lmorillas/Utilidades»
De WikiEducator
(Página creada con '{{MiTitulo | Útiles y gadgets}} ==Programitas== === Lista de entradas del curso http://es.wikieducator.org/Curso_Python_DGA_2011 === <source lang="python"> # -*- coding: utf-8…') |
(version) |
||
(4 revisiones intermedias por el mismo usuario no mostrado) | |||
Línea 1: | Línea 1: | ||
{{MiTitulo | Útiles y gadgets}} | {{MiTitulo | Útiles y gadgets}} | ||
+ | |||
+ | == Ayudas WE == | ||
+ | ; Namespaces | ||
+ | : http://es.wikieducator.org/api.php?action=query&meta=siteinfo&siprop=namespaces | ||
+ | ; Lista de plantillas pedagógicas | ||
+ | : http://es.wikieducator.org/api.php?action=query&list=allpages&apnamespace=10&aplimit=500 | ||
+ | ; Categorías de WE | ||
+ | : http://es.wikieducator.org/api.php?action=query&list=allcategories&aclimit=500 | ||
+ | ; Estadísticas | ||
+ | : http://es.wikieducator.org/api.php?action=query&meta=siteinfo&siprop=statistics&siprop=statistics | ||
+ | : http://es.wikieducator.org/Especial:Estad%C3%ADsticas | ||
+ | ; Información sobre el sitio | ||
+ | : http://es.wikieducator.org/Especial:Version | ||
==Programitas== | ==Programitas== | ||
+ | === Ayudas e ideas === | ||
+ | * http://code.google.com/p/wiki-analysis/source/browse/trunk/#trunk%2Fscratch | ||
+ | * http://gcsn.nz.wikieducator.org/Greater_Christchurch_Schools_Network/Lesson_builder | ||
+ | |||
=== Lista de entradas del curso http://es.wikieducator.org/Curso_Python_DGA_2011 === | === Lista de entradas del curso http://es.wikieducator.org/Curso_Python_DGA_2011 === | ||
<source lang="python"> | <source lang="python"> |
Última revisión de 04:03 30 nov 2014
Contenido
Ayudas WE
- Namespaces
- http://es.wikieducator.org/api.php?action=query&meta=siteinfo&siprop=namespaces
- Lista de plantillas pedagógicas
- http://es.wikieducator.org/api.php?action=query&list=allpages&apnamespace=10&aplimit=500
- Categorías de WE
- http://es.wikieducator.org/api.php?action=query&list=allcategories&aclimit=500
- Estadísticas
- http://es.wikieducator.org/api.php?action=query&meta=siteinfo&siprop=statistics&siprop=statistics
- http://es.wikieducator.org/Especial:Estad%C3%ADsticas
- Información sobre el sitio
- http://es.wikieducator.org/Especial:Version
Programitas
Ayudas e ideas
- http://code.google.com/p/wiki-analysis/source/browse/trunk/#trunk%2Fscratch
- http://gcsn.nz.wikieducator.org/Greater_Christchurch_Schools_Network/Lesson_builder
Lista de entradas del curso http://es.wikieducator.org/Curso_Python_DGA_2011
# -*- coding: utf-8 -*- from mwclient import Site we = Site('es.wikieducator.org', path='/') pre_curso = 'Curso_Python_DGA_2011' list_pages = we.allpages(prefix=pre_curso) lista = [p.name for p in list_pages] lista.sort() for l in lista: print l