Skip to content

Ange1D/codigofacilito_package

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodigoFacilito Package

Este paquete nos permite consumir el API de la plataforma Código Facilito. 🐍


PyPI Downloads

Características

  • Retornar los artículos de CódigoFacilito
  • Retornar los workshops
  • Retornar los workshops que aun no se han lanzado

Instalación

pip install codigofacilito

Uso:

from codigofacilito.articles import articles

articles = articles()
print(articles)

Output Retorna los articulos

from codigofacilito.workshops import released

workshops = released()
print(workshops)

Output Retorna los workshops

from codigofacilito.workshops import unreleased

workshops = unreleased()
print(workshops)

Output Retorna los workshops que aun no se han lanzado

CLI

Comando Descripción
pycody --items articles Retorna los articulos
pycody --items workshops Retorna los workshops
pycody --items workshops --unreleased Retorna los workshops que aun no se han lanzado

Testing:

import codigofacilito
help(codigofacilito.released)
help(codigofacilito.unreleased)
help(codigofacilito.unreleased)

License

MIT

About

Proyecto del taller de CF.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%