DEPRECATED. See https://github.com/fernandojunior/python-sqlite-orm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask, g, request, jsonify, abort # http://flask.pocoo.org/ | |
from flask.ext.classy import FlaskView # http://pythonhosted.org/Flask-Classy/ | |
from db import DatabaseConnection, BaseManager, BaseEntity # https://gist.github.com/fernandojunior/63c6c676f6e16a1a7f0e | |
""" | |
Aplicação Web Restful simples utilizando o microframework Flask e a extenção Flask-Classy | |
Author Fernando Felix do Nascimento Junior | |
Gist https://gist.github.com/fernandojunior/45efd7f525338a82475c | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://www.gnu.org/software/wget/manual/wget.html#Types-of-Files | |
wget -r -A .jpg,png http://url.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#install pip | |
sudo apt-get install python-pip | |
#install virtualenv | |
sudo pip install virtualenv | |
#install virtualenvwrapper |
NewerOlder