Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
La Quadrature du Net
piphone
campaign
Commits
9d588ff6
Commit
9d588ff6
authored
Aug 06, 2016
by
okhin
Browse files
Fix
#3
removed patterns()
parent
20592a0d
Changes
2
Hide whitespace changes
Inline
Side-by-side
picampaign/contact/management/commands/import_meps_from_compotista.py
View file @
9d588ff6
...
...
@@ -19,14 +19,14 @@ class Command(BaseCommand):
def
handle
(
self
,
*
args
,
**
options
):
if
not
exists
(
JSON_DUMP_LOCALIZATION
):
print
"download lastest data dump of meps from compotista"
print
(
"download lastest data dump of meps from compotista"
)
urllib
.
urlretrieve
(
'http://compotista.mm.staz.be/latest/'
,
JSON_DUMP_LOCALIZATION
)
print
"load json"
print
(
"load json"
)
meps
=
json
.
load
(
open
(
JSON_DUMP_LOCALIZATION
,
"r"
))
# This should not be used, since old contacts should stay in database
print
"cleaning Contacts"
print
(
"cleaning Contacts"
)
Contact
.
objects
.
all
().
delete
()
print
"adding Contacts"
print
(
"adding Contacts"
)
added
=
0
for
mep
in
meps
:
insert_mep
=
False
...
...
@@ -60,7 +60,7 @@ class Command(BaseCommand):
twitter
=
twitter
)
added
+=
1
print
'%d - %s %s'
%
(
added
,
first_name
,
last_name
)
print
(
'%d - %s %s'
%
(
added
,
first_name
,
last_name
)
)
if
added
>=
50
:
return
picampaign/urls.py
View file @
9d588ff6
from
django.conf.urls
import
patterns
,
include
,
url
from
django.conf.urls
import
include
,
url
from
django.contrib
import
admin
from
rest_framework_nested
import
routers
...
...
@@ -18,7 +18,8 @@ campaign_router.register(r'categories', CategoryViewSet)
campaign_router
.
register
(
r
'feedbacks'
,
FeedbackViewSet
)
urlpatterns
=
patterns
(
''
,
url
(
r
'^admin/'
,
include
(
admin
.
site
.
urls
)),
url
(
r
'^'
,
include
(
router
.
urls
)),
url
(
r
'^'
,
include
(
campaign_router
.
urls
)))
urlpatterns
=
[
url
(
r
'^admin/'
,
include
(
admin
.
site
.
urls
)),
url
(
r
'^'
,
include
(
router
.
urls
)),
url
(
r
'^'
,
include
(
campaign_router
.
urls
))
]
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment