Skip to content

Instantly share code, notes, and snippets.

View nolram's full-sized avatar
🏠
Working from home

Marlon Baptista de Quadros nolram

🏠
Working from home
View GitHub Profile
@nolram
nolram / idle_from_virtualenv.sh
Created July 24, 2014 16:21
Script para executar o IDLE do python a partir do Virtualenv
#!/bin/bash
source ~/Ambientes_Python/Django16/bin/activate # Modifique está linha para o destino onde está localizado o virtualenv
python -c "from idlelib.PyShell import main; main()"
"""
Read graphs in Open Street Maps osm format
Based on osm.py from brianw's osmgeocode
http://github.com/brianw/osmgeocode, which is based on osm.py from
comes from Graphserver:
http://github.com/bmander/graphserver/tree/master and is copyright (c)
2007, Brandon Martin-Anderson under the BSD License
"""