Adicionando script que extrai dados das entidades Trabalho e Palestrante e gera um...
authorLincoln de Sousa <lincoln@archlinux-br.org>
Mon, 24 Sep 2007 22:02:21 +0000 (19:02 -0300)
committerLincoln de Sousa <lincoln@archlinux-br.org>
Mon, 24 Sep 2007 22:02:21 +0000 (19:02 -0300)
get_data.py [new file with mode: 0755]

diff --git a/get_data.py b/get_data.py
new file mode 100755 (executable)
index 0000000..8782d62
--- /dev/null
@@ -0,0 +1,38 @@
+#!/usr/bin/env python
+# -*- coding: utf-8; -*-
+"""
+Copyright (C) 2007 Lincoln de Sousa <lincoln@archlinux-br.org>
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as
+published by the Free Software Foundation; either version 2 of the
+License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public
+License along with this program; if not, write to the
+Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.
+"""
+import sys
+import os
+
+if '-h' in sys.argv or '--help' in sys.argv:
+    print 'Usage: %s\n' \
+          'Script used to extract data from Trabalho and ' \
+          'Palestrante entities.' % sys.argv[0]
+    sys.exit(0)
+
+# hackish django setup...
+sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
+os.environ['DJANGO_SETTINGS_MODULE'] = 'eventmanager.settings'
+
+from eventos.models import *
+
+for i in Trabalho.objects.all():
+    for j in i.palestrante.all():
+        print i.titulo + ':' + j.nome + ':' + j.email