Flasgger – API playground with Flask and Swagger UI

What is Swagger? Swagger is a simple yet powerful representation of your RESTful API. With the largest ecosystem of API tooling on the planet, thousands of developers are supporting Swagger in almost every modern programming language and deployment environment. With a Swagger-enabled API, you get interactive documentation, client SDK generation and discoverability. What is Swagger […]

Read More

10 rules of open source projects

1. Something incomplete is better than nothing at all If you have a piece of code and you think it is useful. Share it to the community, if this is a code snippet you can share in the form of a gist on github.  Even if this is an incomplete peace of software put it on github. Maybe missing documentation, tests […]

Read More

The Developers Conference 2015 Sp Trilha Python

Olá,Eu, o Diego Garcia e o @gutomaia estamos organizando a trilha de‪#‎python‬ do The Developer’s Conference SP 2015, Um dos maiores eventos de tecnologia do Brasil. Gostariamos de sua ajuda para escolher os temas a serem abordados, preencha o formulário para sugerir temas ou propor uma palestra: http://goo.gl/forms/P2HgcnBFsA Além das palestras que já podem ser submetidas através do site oficial […]

Read More

Using Flask Cache

As a micro framework Flask does not have built-in cache functionality, however, there is werkzeug cache API and an excellent extension to provide its caching functionality to your Flask apps, that extension was created by @thadeusb and is very easy to implement and use. installing In your env install it via PyPI (recommended) pip install […]

Read More