You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by rg...@apache.org on 2015/08/09 01:09:41 UTC

svn commit: r1694850 [2/3] - in /comdev/tools: comdev_tools/settings.py fixtures/backup_data.json fixtures/events_list_dumpscript.py readme.md requirements.txt scripts/backup.sh

Added: comdev/tools/fixtures/events_list_dumpscript.py
URL: http://svn.apache.org/viewvc/comdev/tools/fixtures/events_list_dumpscript.py?rev=1694850&view=auto
==============================================================================
--- comdev/tools/fixtures/events_list_dumpscript.py (added)
+++ comdev/tools/fixtures/events_list_dumpscript.py Sat Aug  8 23:09:41 2015
@@ -0,0 +1,4291 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+# This file has been automatically generated.
+# Instead of changing it, create a file called import_helper.py
+# and put there a class called ImportHelper(object) in it.
+#
+# This class will be specially casted so that instead of extending object,
+# it will actually extend the class BasicImportHelper()
+#
+# That means you just have to overload the methods you want to
+# change, leaving the other ones inteact.
+#
+# Something that you might want to do is use transactions, for example.
+#
+# Also, don't forget to add the necessary Django imports.
+#
+# This file was generated with the following command:
+# manage.py dumpscript events_list
+#
+# to restore it, run
+# manage.py runscript module_name.this_script_name
+#
+# example: if manage.py is at ./manage.py
+# and the script is at ./some_folder/some_script.py
+# you must make sure ./some_folder/__init__.py exists
+# and run  ./manage.py runscript some_folder.some_script
+
+from django.db import transaction
+
+class BasicImportHelper(object):
+
+    def pre_import(self):
+        pass
+
+    # You probably want to uncomment on of these two lines
+    # @transaction.atomic  # Django 1.6
+    # @transaction.commit_on_success  # Django <1.6
+    def run_import(self, import_data):
+        import_data()
+
+    def post_import(self):
+        pass
+
+    def locate_similar(self, current_object, search_data):
+        # You will probably want to call this method from save_or_locate()
+        # Example:
+        #   new_obj = self.locate_similar(the_obj, {"national_id": the_obj.national_id } )
+
+        the_obj = current_object.__class__.objects.get(**search_data)
+        return the_obj
+
+    def locate_object(self, original_class, original_pk_name, the_class, pk_name, pk_value, obj_content):
+        # You may change this function to do specific lookup for specific objects
+        #
+        # original_class class of the django orm's object that needs to be located
+        # original_pk_name the primary key of original_class
+        # the_class      parent class of original_class which contains obj_content
+        # pk_name        the primary key of original_class
+        # pk_value       value of the primary_key
+        # obj_content    content of the object which was not exported.
+        #
+        # You should use obj_content to locate the object on the target db
+        #
+        # An example where original_class and the_class are different is
+        # when original_class is Farmer and the_class is Person. The table
+        # may refer to a Farmer but you will actually need to locate Person
+        # in order to instantiate that Farmer
+        #
+        # Example:
+        #   if the_class == SurveyResultFormat or the_class == SurveyType or the_class == SurveyState:
+        #       pk_name="name"
+        #       pk_value=obj_content[pk_name]
+        #   if the_class == StaffGroup:
+        #       pk_value=8
+
+        search_data = { pk_name: pk_value }
+        the_obj = the_class.objects.get(**search_data)
+        #print(the_obj)
+        return the_obj
+
+
+    def save_or_locate(self, the_obj):
+        # Change this if you want to locate the object in the database
+        try:
+            the_obj.save()
+        except:
+            print("---------------")
+            print("Error saving the following object:")
+            print(the_obj.__class__)
+            print(" ")
+            print(the_obj.__dict__)
+            print(" ")
+            print(the_obj)
+            print(" ")
+            print("---------------")
+
+            raise
+        return the_obj
+
+
+importer = None
+try:
+    import import_helper
+    # We need this so ImportHelper can extend BasicImportHelper, although import_helper.py
+    # has no knowlodge of this class
+    importer = type("DynamicImportHelper", (import_helper.ImportHelper, BasicImportHelper ) , {} )()
+except ImportError as e:
+    # From Python 3.3 we can check e.name - string match is for backward compatibility.
+    if 'import_helper' in str(e):
+        importer = BasicImportHelper()
+    else:
+        raise
+
+import datetime
+from decimal import Decimal
+from django.contrib.contenttypes.models import ContentType
+
+try:
+    import dateutil.parser
+except ImportError:
+    print("Please install python-dateutil")
+    sys.exit(os.EX_USAGE)
+
+def run():
+    importer.pre_import()
+    importer.run_import(import_data)
+    importer.post_import()
+
+def import_data():
+    # Initial Imports
+
+    # Processing model: Topic
+
+    from events_list.models import Topic
+
+
+    # Processing model: Group
+
+    from events_list.models import Group
+
+    events_list_group_1 = Group()
+    events_list_group_1.name = u'Istanbul Spark Meetup'
+    events_list_group_1.city = u'Istanbul'
+    events_list_group_1.state = u''
+    events_list_group_1.country = u'TR'
+    events_list_group_1.meetupID = 18697603L
+    events_list_group_1.is_applicable = True
+    events_list_group_1 = importer.save_or_locate(events_list_group_1)
+
+    events_list_group_2 = Group()
+    events_list_group_2.name = u'Bangalore-Whitefield PhoneGap Meetup'
+    events_list_group_2.city = u'Bangalore'
+    events_list_group_2.state = u''
+    events_list_group_2.country = u'IN'
+    events_list_group_2.meetupID = 18551744L
+    events_list_group_2.is_applicable = True
+    events_list_group_2 = importer.save_or_locate(events_list_group_2)
+
+    events_list_group_3 = Group()
+    events_list_group_3.name = u'Seattle Solr/Lucene Meetup'
+    events_list_group_3.city = u'Seattle'
+    events_list_group_3.state = u'WA'
+    events_list_group_3.country = u'US'
+    events_list_group_3.meetupID = 17009672L
+    events_list_group_3.is_applicable = True
+    events_list_group_3 = importer.save_or_locate(events_list_group_3)
+
+    events_list_group_4 = Group()
+    events_list_group_4.name = u'Sydney Cassandra Users'
+    events_list_group_4.city = u'Sydney'
+    events_list_group_4.state = u''
+    events_list_group_4.country = u'AU'
+    events_list_group_4.meetupID = 7568672L
+    events_list_group_4.is_applicable = True
+    events_list_group_4 = importer.save_or_locate(events_list_group_4)
+
+    events_list_group_5 = Group()
+    events_list_group_5.name = u'The Boston Area Cloud Foundry Meetup'
+    events_list_group_5.city = u'Waltham'
+    events_list_group_5.state = u'MA'
+    events_list_group_5.country = u'US'
+    events_list_group_5.meetupID = 10702282L
+    events_list_group_5.is_applicable = True
+    events_list_group_5 = importer.save_or_locate(events_list_group_5)
+
+    events_list_group_6 = Group()
+    events_list_group_6.name = u'Houston Hadoop Meetup Group'
+    events_list_group_6.city = u'Houston'
+    events_list_group_6.state = u'TX'
+    events_list_group_6.country = u'US'
+    events_list_group_6.meetupID = 1795155L
+    events_list_group_6.is_applicable = True
+    events_list_group_6 = importer.save_or_locate(events_list_group_6)
+
+    events_list_group_7 = Group()
+    events_list_group_7.name = u'Austin PaaS, Cloud and Bluemix meetup'
+    events_list_group_7.city = u'Austin'
+    events_list_group_7.state = u'TX'
+    events_list_group_7.country = u'US'
+    events_list_group_7.meetupID = 15599312L
+    events_list_group_7.is_applicable = True
+    events_list_group_7 = importer.save_or_locate(events_list_group_7)
+
+    events_list_group_8 = Group()
+    events_list_group_8.name = u"US.CA.OrangeCounty's JavaScript Community Group"
+    events_list_group_8.city = u'Laguna Hills'
+    events_list_group_8.state = u'CA'
+    events_list_group_8.country = u'US'
+    events_list_group_8.meetupID = 16925932L
+    events_list_group_8.is_applicable = True
+    events_list_group_8 = importer.save_or_locate(events_list_group_8)
+
+    events_list_group_9 = Group()
+    events_list_group_9.name = u'Data Science Phoenix'
+    events_list_group_9.city = u'Phoenix'
+    events_list_group_9.state = u'AZ'
+    events_list_group_9.country = u'US'
+    events_list_group_9.meetupID = 4844022L
+    events_list_group_9.is_applicable = True
+    events_list_group_9 = importer.save_or_locate(events_list_group_9)
+
+    events_list_group_10 = Group()
+    events_list_group_10.name = u'corkdev.io'
+    events_list_group_10.city = u'Cork'
+    events_list_group_10.state = u''
+    events_list_group_10.country = u'IE'
+    events_list_group_10.meetupID = 12225002L
+    events_list_group_10.is_applicable = True
+    events_list_group_10 = importer.save_or_locate(events_list_group_10)
+
+    events_list_group_11 = Group()
+    events_list_group_11.name = u'Advanced Apache Spark Meetup'
+    events_list_group_11.city = u'San Francisco'
+    events_list_group_11.state = u'CA'
+    events_list_group_11.country = u'US'
+    events_list_group_11.meetupID = 18712511L
+    events_list_group_11.is_applicable = True
+    events_list_group_11 = importer.save_or_locate(events_list_group_11)
+
+    events_list_group_12 = Group()
+    events_list_group_12.name = u'[ Contain ]'
+    events_list_group_12.city = u'London'
+    events_list_group_12.state = u'17'
+    events_list_group_12.country = u'GB'
+    events_list_group_12.meetupID = 18445714L
+    events_list_group_12.is_applicable = True
+    events_list_group_12 = importer.save_or_locate(events_list_group_12)
+
+    events_list_group_13 = Group()
+    events_list_group_13.name = u'East Midlands Front-End'
+    events_list_group_13.city = u'Nottingham'
+    events_list_group_13.state = u'J9'
+    events_list_group_13.country = u'GB'
+    events_list_group_13.meetupID = 18718170L
+    events_list_group_13.is_applicable = True
+    events_list_group_13 = importer.save_or_locate(events_list_group_13)
+
+    events_list_group_14 = Group()
+    events_list_group_14.name = u'H2O and Data Science!'
+    events_list_group_14.city = u'Mountain View'
+    events_list_group_14.state = u'CA'
+    events_list_group_14.country = u'US'
+    events_list_group_14.meetupID = 4978932L
+    events_list_group_14.is_applicable = True
+    events_list_group_14 = importer.save_or_locate(events_list_group_14)
+
+    events_list_group_15 = Group()
+    events_list_group_15.name = u'The Atlanta Scala Meetup Group'
+    events_list_group_15.city = u'Atlanta'
+    events_list_group_15.state = u'GA'
+    events_list_group_15.country = u'US'
+    events_list_group_15.meetupID = 1475328L
+    events_list_group_15.is_applicable = True
+    events_list_group_15 = importer.save_or_locate(events_list_group_15)
+
+    events_list_group_16 = Group()
+    events_list_group_16.name = u'ScalaSyd'
+    events_list_group_16.city = u'Sydney'
+    events_list_group_16.state = u''
+    events_list_group_16.country = u'AU'
+    events_list_group_16.meetupID = 2313331L
+    events_list_group_16.is_applicable = True
+    events_list_group_16 = importer.save_or_locate(events_list_group_16)
+
+    events_list_group_17 = Group()
+    events_list_group_17.name = u'Savannah Open Source'
+    events_list_group_17.city = u'Savannah'
+    events_list_group_17.state = u'GA'
+    events_list_group_17.country = u'US'
+    events_list_group_17.meetupID = 13677082L
+    events_list_group_17.is_applicable = True
+    events_list_group_17 = importer.save_or_locate(events_list_group_17)
+
+    events_list_group_18 = Group()
+    events_list_group_18.name = u'Big Data Warehousing'
+    events_list_group_18.city = u'New York'
+    events_list_group_18.state = u'NY'
+    events_list_group_18.country = u'US'
+    events_list_group_18.meetupID = 5775892L
+    events_list_group_18.is_applicable = True
+    events_list_group_18 = importer.save_or_locate(events_list_group_18)
+
+    events_list_group_19 = Group()
+    events_list_group_19.name = u'Cosmopolitan Connections Inc. dba My Vegas Friends'
+    events_list_group_19.city = u'Las Vegas'
+    events_list_group_19.state = u'NV'
+    events_list_group_19.country = u'US'
+    events_list_group_19.meetupID = 1461697L
+    events_list_group_19.is_applicable = True
+    events_list_group_19 = importer.save_or_locate(events_list_group_19)
+
+    events_list_group_20 = Group()
+    events_list_group_20.name = u'OC-U-PY'
+    events_list_group_20.city = u'Irvine'
+    events_list_group_20.state = u'CA'
+    events_list_group_20.country = u'US'
+    events_list_group_20.meetupID = 13069882L
+    events_list_group_20.is_applicable = True
+    events_list_group_20 = importer.save_or_locate(events_list_group_20)
+
+    events_list_group_21 = Group()
+    events_list_group_21.name = u'Elastic Silicon Valley User group'
+    events_list_group_21.city = u'Mountain View'
+    events_list_group_21.state = u'CA'
+    events_list_group_21.country = u'US'
+    events_list_group_21.meetupID = 10000042L
+    events_list_group_21.is_applicable = True
+    events_list_group_21 = importer.save_or_locate(events_list_group_21)
+
+    events_list_group_22 = Group()
+    events_list_group_22.name = u'Pepperdata - NYC'
+    events_list_group_22.city = u'New York'
+    events_list_group_22.state = u'NY'
+    events_list_group_22.country = u'US'
+    events_list_group_22.meetupID = 18474414L
+    events_list_group_22.is_applicable = True
+    events_list_group_22 = importer.save_or_locate(events_list_group_22)
+
+    events_list_group_23 = Group()
+    events_list_group_23.name = u'Everyday Spacer Phoenix'
+    events_list_group_23.city = u'Phoenix'
+    events_list_group_23.state = u'AZ'
+    events_list_group_23.country = u'US'
+    events_list_group_23.meetupID = 18526838L
+    events_list_group_23.is_applicable = True
+    events_list_group_23 = importer.save_or_locate(events_list_group_23)
+
+    events_list_group_24 = Group()
+    events_list_group_24.name = u'Dayton Data Visualization Meetup'
+    events_list_group_24.city = u'Dayton'
+    events_list_group_24.state = u'OH'
+    events_list_group_24.country = u'US'
+    events_list_group_24.meetupID = 16874292L
+    events_list_group_24.is_applicable = True
+    events_list_group_24 = importer.save_or_locate(events_list_group_24)
+
+    events_list_group_25 = Group()
+    events_list_group_25.name = u'Code.Brew'
+    events_list_group_25.city = u'Sterling'
+    events_list_group_25.state = u'VA'
+    events_list_group_25.country = u'US'
+    events_list_group_25.meetupID = 14979942L
+    events_list_group_25.is_applicable = True
+    events_list_group_25 = importer.save_or_locate(events_list_group_25)
+
+    events_list_group_26 = Group()
+    events_list_group_26.name = u'Baltimore Washington Java Meetup Group'
+    events_list_group_26.city = u'Hanover'
+    events_list_group_26.state = u'MD'
+    events_list_group_26.country = u'US'
+    events_list_group_26.meetupID = 1434679L
+    events_list_group_26.is_applicable = True
+    events_list_group_26 = importer.save_or_locate(events_list_group_26)
+
+    events_list_group_27 = Group()
+    events_list_group_27.name = u'Seattle JS'
+    events_list_group_27.city = u'Seattle'
+    events_list_group_27.state = u'WA'
+    events_list_group_27.country = u'US'
+    events_list_group_27.meetupID = 1619342L
+    events_list_group_27.is_applicable = True
+    events_list_group_27 = importer.save_or_locate(events_list_group_27)
+
+    events_list_group_28 = Group()
+    events_list_group_28.name = u'RMOUG Big Data SIG Meetup'
+    events_list_group_28.city = u'Westminster'
+    events_list_group_28.state = u'CO'
+    events_list_group_28.country = u'US'
+    events_list_group_28.meetupID = 18486184L
+    events_list_group_28.is_applicable = True
+    events_list_group_28 = importer.save_or_locate(events_list_group_28)
+
+    events_list_group_29 = Group()
+    events_list_group_29.name = u'ATL Tech Tastings Meetup'
+    events_list_group_29.city = u'Atlanta'
+    events_list_group_29.state = u'GA'
+    events_list_group_29.country = u'US'
+    events_list_group_29.meetupID = 18712503L
+    events_list_group_29.is_applicable = True
+    events_list_group_29 = importer.save_or_locate(events_list_group_29)
+
+    events_list_group_30 = Group()
+    events_list_group_30.name = u'Utah Cassandra Meetup'
+    events_list_group_30.city = u'American Fork'
+    events_list_group_30.state = u'UT'
+    events_list_group_30.country = u'US'
+    events_list_group_30.meetupID = 18752599L
+    events_list_group_30.is_applicable = True
+    events_list_group_30 = importer.save_or_locate(events_list_group_30)
+
+    events_list_group_31 = Group()
+    events_list_group_31.name = u'LJC - London Java Community'
+    events_list_group_31.city = u'London'
+    events_list_group_31.state = u'17'
+    events_list_group_31.country = u'GB'
+    events_list_group_31.meetupID = 841735L
+    events_list_group_31.is_applicable = True
+    events_list_group_31 = importer.save_or_locate(events_list_group_31)
+
+    events_list_group_32 = Group()
+    events_list_group_32.name = u'LA Mobile Developers Group (Cordova, PhoneGap, AIR)'
+    events_list_group_32.city = u'Los Angeles'
+    events_list_group_32.state = u'CA'
+    events_list_group_32.country = u'US'
+    events_list_group_32.meetupID = 1807374L
+    events_list_group_32.is_applicable = True
+    events_list_group_32 = importer.save_or_locate(events_list_group_32)
+
+    events_list_group_33 = Group()
+    events_list_group_33.name = u'NJ Data Science - Apache Spark'
+    events_list_group_33.city = u'Princeton'
+    events_list_group_33.state = u'NJ'
+    events_list_group_33.country = u'US'
+    events_list_group_33.meetupID = 13876422L
+    events_list_group_33.is_applicable = True
+    events_list_group_33 = importer.save_or_locate(events_list_group_33)
+
+    events_list_group_34 = Group()
+    events_list_group_34.name = u'Big Data & NoSQL Meetup Hamburg'
+    events_list_group_34.city = u'Hamburg'
+    events_list_group_34.state = u''
+    events_list_group_34.country = u'DE'
+    events_list_group_34.meetupID = 4798602L
+    events_list_group_34.is_applicable = True
+    events_list_group_34 = importer.save_or_locate(events_list_group_34)
+
+    events_list_group_35 = Group()
+    events_list_group_35.name = u'JavaScript & jQuery LA Meetup'
+    events_list_group_35.city = u'Los Angeles'
+    events_list_group_35.state = u'CA'
+    events_list_group_35.country = u'US'
+    events_list_group_35.meetupID = 2587952L
+    events_list_group_35.is_applicable = True
+    events_list_group_35 = importer.save_or_locate(events_list_group_35)
+
+    events_list_group_36 = Group()
+    events_list_group_36.name = u'IoT para Miner\xeda, Agro y Smartcities'
+    events_list_group_36.city = u'Santiago'
+    events_list_group_36.state = u''
+    events_list_group_36.country = u'CL'
+    events_list_group_36.meetupID = 18493711L
+    events_list_group_36.is_applicable = True
+    events_list_group_36 = importer.save_or_locate(events_list_group_36)
+
+    events_list_group_37 = Group()
+    events_list_group_37.name = u'Get Out!  Adventures For Gay Single Men'
+    events_list_group_37.city = u'Phoenix'
+    events_list_group_37.state = u'AZ'
+    events_list_group_37.country = u'US'
+    events_list_group_37.meetupID = 16874992L
+    events_list_group_37.is_applicable = True
+    events_list_group_37 = importer.save_or_locate(events_list_group_37)
+
+    events_list_group_38 = Group()
+    events_list_group_38.name = u'Strangers 2 Friends'
+    events_list_group_38.city = u'Portishead'
+    events_list_group_38.state = u'M3'
+    events_list_group_38.country = u'GB'
+    events_list_group_38.meetupID = 17067972L
+    events_list_group_38.is_applicable = True
+    events_list_group_38 = importer.save_or_locate(events_list_group_38)
+
+    events_list_group_39 = Group()
+    events_list_group_39.name = u'DataStax Cassandra South Bay Users'
+    events_list_group_39.city = u'Cupertino'
+    events_list_group_39.state = u'CA'
+    events_list_group_39.country = u'US'
+    events_list_group_39.meetupID = 7037352L
+    events_list_group_39.is_applicable = True
+    events_list_group_39 = importer.save_or_locate(events_list_group_39)
+
+    events_list_group_40 = Group()
+    events_list_group_40.name = u'Data Science Melbourne'
+    events_list_group_40.city = u'Melbourne'
+    events_list_group_40.state = u''
+    events_list_group_40.country = u'AU'
+    events_list_group_40.meetupID = 13634822L
+    events_list_group_40.is_applicable = True
+    events_list_group_40 = importer.save_or_locate(events_list_group_40)
+
+    events_list_group_41 = Group()
+    events_list_group_41.name = u'Melbourne Chef'
+    events_list_group_41.city = u'Melbourne'
+    events_list_group_41.state = u''
+    events_list_group_41.country = u'AU'
+    events_list_group_41.meetupID = 15910382L
+    events_list_group_41.is_applicable = True
+    events_list_group_41 = importer.save_or_locate(events_list_group_41)
+
+    events_list_group_42 = Group()
+    events_list_group_42.name = u'Skyway Software Symposium'
+    events_list_group_42.city = u'Minneapolis'
+    events_list_group_42.state = u'MN'
+    events_list_group_42.country = u'US'
+    events_list_group_42.meetupID = 14862952L
+    events_list_group_42.is_applicable = True
+    events_list_group_42 = importer.save_or_locate(events_list_group_42)
+
+    events_list_group_43 = Group()
+    events_list_group_43.name = u'Jozi Linux User Group (JLUG)'
+    events_list_group_43.city = u'Johannesburg'
+    events_list_group_43.state = u''
+    events_list_group_43.country = u'ZA'
+    events_list_group_43.meetupID = 2154521L
+    events_list_group_43.is_applicable = True
+    events_list_group_43 = importer.save_or_locate(events_list_group_43)
+
+    events_list_group_44 = Group()
+    events_list_group_44.name = u'Integration Stockholm'
+    events_list_group_44.city = u'Stockholm'
+    events_list_group_44.state = u''
+    events_list_group_44.country = u'SE'
+    events_list_group_44.meetupID = 18538138L
+    events_list_group_44.is_applicable = True
+    events_list_group_44 = importer.save_or_locate(events_list_group_44)
+
+    events_list_group_45 = Group()
+    events_list_group_45.name = u'Downtown SF Apache Lucene/Solr Meetup'
+    events_list_group_45.city = u'San Francisco'
+    events_list_group_45.state = u'CA'
+    events_list_group_45.country = u'US'
+    events_list_group_45.meetupID = 15059142L
+    events_list_group_45.is_applicable = True
+    events_list_group_45 = importer.save_or_locate(events_list_group_45)
+
+    events_list_group_46 = Group()
+    events_list_group_46.name = u'Washington DC Area Apache Spark Interactive'
+    events_list_group_46.city = u'Washington'
+    events_list_group_46.state = u'DC'
+    events_list_group_46.country = u'US'
+    events_list_group_46.meetupID = 14077672L
+    events_list_group_46.is_applicable = True
+    events_list_group_46 = importer.save_or_locate(events_list_group_46)
+
+    events_list_group_47 = Group()
+    events_list_group_47.name = u'/dev/070'
+    events_list_group_47.city = u'Den Haag'
+    events_list_group_47.state = u''
+    events_list_group_47.country = u'NL'
+    events_list_group_47.meetupID = 14194182L
+    events_list_group_47.is_applicable = True
+    events_list_group_47 = importer.save_or_locate(events_list_group_47)
+
+    events_list_group_48 = Group()
+    events_list_group_48.name = u'Meetup Tempe  |  Character Areas'
+    events_list_group_48.city = u'Tempe'
+    events_list_group_48.state = u'AZ'
+    events_list_group_48.country = u'US'
+    events_list_group_48.meetupID = 18584447L
+    events_list_group_48.is_applicable = True
+    events_list_group_48 = importer.save_or_locate(events_list_group_48)
+
+    events_list_group_49 = Group()
+    events_list_group_49.name = u'The Indianapolis PHP Meetup Group'
+    events_list_group_49.city = u'Indianapolis'
+    events_list_group_49.state = u'IN'
+    events_list_group_49.country = u'US'
+    events_list_group_49.meetupID = 577068L
+    events_list_group_49.is_applicable = True
+    events_list_group_49 = importer.save_or_locate(events_list_group_49)
+
+    events_list_group_50 = Group()
+    events_list_group_50.name = u'St. Louis Hadoop Users Group'
+    events_list_group_50.city = u'Saint Louis'
+    events_list_group_50.state = u'MO'
+    events_list_group_50.country = u'US'
+    events_list_group_50.meetupID = 1706946L
+    events_list_group_50.is_applicable = True
+    events_list_group_50 = importer.save_or_locate(events_list_group_50)
+
+    events_list_group_51 = Group()
+    events_list_group_51.name = u'Denver Cordova/Ionic Meetup'
+    events_list_group_51.city = u'Denver'
+    events_list_group_51.state = u'CO'
+    events_list_group_51.country = u'US'
+    events_list_group_51.meetupID = 18808450L
+    events_list_group_51.is_applicable = True
+    events_list_group_51 = importer.save_or_locate(events_list_group_51)
+
+    events_list_group_52 = Group()
+    events_list_group_52.name = u'Ionic-AZ'
+    events_list_group_52.city = u'Scottsdale'
+    events_list_group_52.state = u'AZ'
+    events_list_group_52.country = u'US'
+    events_list_group_52.meetupID = 18748757L
+    events_list_group_52.is_applicable = True
+    events_list_group_52 = importer.save_or_locate(events_list_group_52)
+
+    events_list_group_53 = Group()
+    events_list_group_53.name = u'Business Leads Group'
+    events_list_group_53.city = u'Las Vegas'
+    events_list_group_53.state = u'NV'
+    events_list_group_53.country = u'US'
+    events_list_group_53.meetupID = 4072452L
+    events_list_group_53.is_applicable = True
+    events_list_group_53 = importer.save_or_locate(events_list_group_53)
+
+    events_list_group_54 = Group()
+    events_list_group_54.name = u'Spark Global Online Meetup'
+    events_list_group_54.city = u'San Francisco'
+    events_list_group_54.state = u'CA'
+    events_list_group_54.country = u'US'
+    events_list_group_54.meetupID = 18654127L
+    events_list_group_54.is_applicable = True
+    events_list_group_54 = importer.save_or_locate(events_list_group_54)
+
+    events_list_group_55 = Group()
+    events_list_group_55.name = u'Tech Confluence'
+    events_list_group_55.city = u'Denver'
+    events_list_group_55.state = u'CO'
+    events_list_group_55.country = u'US'
+    events_list_group_55.meetupID = 9402002L
+    events_list_group_55.is_applicable = True
+    events_list_group_55 = importer.save_or_locate(events_list_group_55)
+
+    events_list_group_56 = Group()
+    events_list_group_56.name = u'Red Hat User Group Oslo'
+    events_list_group_56.city = u'Oslo'
+    events_list_group_56.state = u''
+    events_list_group_56.country = u'NO'
+    events_list_group_56.meetupID = 8910652L
+    events_list_group_56.is_applicable = True
+    events_list_group_56 = importer.save_or_locate(events_list_group_56)
+
+    events_list_group_57 = Group()
+    events_list_group_57.name = u'Mobile Meetup Oslo'
+    events_list_group_57.city = u'Oslo'
+    events_list_group_57.state = u''
+    events_list_group_57.country = u'NO'
+    events_list_group_57.meetupID = 7282482L
+    events_list_group_57.is_applicable = True
+    events_list_group_57 = importer.save_or_locate(events_list_group_57)
+
+    events_list_group_58 = Group()
+    events_list_group_58.name = u'OC Big Data Meetup'
+    events_list_group_58.city = u'Irvine'
+    events_list_group_58.state = u'CA'
+    events_list_group_58.country = u'US'
+    events_list_group_58.meetupID = 13860942L
+    events_list_group_58.is_applicable = True
+    events_list_group_58 = importer.save_or_locate(events_list_group_58)
+
+    events_list_group_59 = Group()
+    events_list_group_59.name = u'Big Data Application Meetup'
+    events_list_group_59.city = u'Palo Alto'
+    events_list_group_59.state = u'CA'
+    events_list_group_59.country = u'US'
+    events_list_group_59.meetupID = 18576339L
+    events_list_group_59.is_applicable = True
+    events_list_group_59 = importer.save_or_locate(events_list_group_59)
+
+    events_list_group_60 = Group()
+    events_list_group_60.name = u'The Colorado Springs Open Source Software Meetup Group'
+    events_list_group_60.city = u'Colorado Springs'
+    events_list_group_60.state = u'CO'
+    events_list_group_60.country = u'US'
+    events_list_group_60.meetupID = 945214L
+    events_list_group_60.is_applicable = True
+    events_list_group_60 = importer.save_or_locate(events_list_group_60)
+
+    events_list_group_61 = Group()
+    events_list_group_61.name = u'SF Big Analytics'
+    events_list_group_61.city = u'San Francisco'
+    events_list_group_61.state = u'CA'
+    events_list_group_61.country = u'US'
+    events_list_group_61.meetupID = 18354966L
+    events_list_group_61.is_applicable = True
+    events_list_group_61 = importer.save_or_locate(events_list_group_61)
+
+    events_list_group_62 = Group()
+    events_list_group_62.name = u'Cincinnati Apache Spark Meetup'
+    events_list_group_62.city = u'West Chester'
+    events_list_group_62.state = u'OH'
+    events_list_group_62.country = u'US'
+    events_list_group_62.meetupID = 18367457L
+    events_list_group_62.is_applicable = True
+    events_list_group_62 = importer.save_or_locate(events_list_group_62)
+
+    events_list_group_63 = Group()
+    events_list_group_63.name = u'Learn Data Science'
+    events_list_group_63.city = u'Vancouver'
+    events_list_group_63.state = u'BC'
+    events_list_group_63.country = u'CA'
+    events_list_group_63.meetupID = 18532714L
+    events_list_group_63.is_applicable = True
+    events_list_group_63 = importer.save_or_locate(events_list_group_63)
+
+    events_list_group_64 = Group()
+    events_list_group_64.name = u'Apex Meetup, Bay Area Chapter'
+    events_list_group_64.city = u'Santa Clara'
+    events_list_group_64.state = u'CA'
+    events_list_group_64.country = u'US'
+    events_list_group_64.meetupID = 18649828L
+    events_list_group_64.is_applicable = True
+    events_list_group_64 = importer.save_or_locate(events_list_group_64)
+
+    events_list_group_65 = Group()
+    events_list_group_65.name = u'Hacker Lab'
+    events_list_group_65.city = u'Sacramento'
+    events_list_group_65.state = u'CA'
+    events_list_group_65.country = u'US'
+    events_list_group_65.meetupID = 3361722L
+    events_list_group_65.is_applicable = True
+    events_list_group_65 = importer.save_or_locate(events_list_group_65)
+
+    events_list_group_66 = Group()
+    events_list_group_66.name = u'Atlanta Hadoop Users Group'
+    events_list_group_66.city = u'Atlanta'
+    events_list_group_66.state = u'GA'
+    events_list_group_66.country = u'US'
+    events_list_group_66.meetupID = 1444478L
+    events_list_group_66.is_applicable = True
+    events_list_group_66 = importer.save_or_locate(events_list_group_66)
+
+    events_list_group_67 = Group()
+    events_list_group_67.name = u'Montevideo BigData & DataScience Meetup'
+    events_list_group_67.city = u'Montevideo'
+    events_list_group_67.state = u''
+    events_list_group_67.country = u'UY'
+    events_list_group_67.meetupID = 18481501L
+    events_list_group_67.is_applicable = True
+    events_list_group_67 = importer.save_or_locate(events_list_group_67)
+
+    events_list_group_68 = Group()
+    events_list_group_68.name = u'Triangle JavaScript'
+    events_list_group_68.city = u'Durham'
+    events_list_group_68.state = u'NC'
+    events_list_group_68.country = u'US'
+    events_list_group_68.meetupID = 1546066L
+    events_list_group_68.is_applicable = True
+    events_list_group_68 = importer.save_or_locate(events_list_group_68)
+
+    events_list_group_69 = Group()
+    events_list_group_69.name = u'Elastic Los Angeles User Group'
+    events_list_group_69.city = u'Santa Monica'
+    events_list_group_69.state = u'CA'
+    events_list_group_69.country = u'US'
+    events_list_group_69.meetupID = 11432172L
+    events_list_group_69.is_applicable = True
+    events_list_group_69 = importer.save_or_locate(events_list_group_69)
+
+    events_list_group_70 = Group()
+    events_list_group_70.name = u'Oz Big Data - Melbourne'
+    events_list_group_70.city = u'Melbourne'
+    events_list_group_70.state = u''
+    events_list_group_70.country = u'AU'
+    events_list_group_70.meetupID = 5881002L
+    events_list_group_70.is_applicable = True
+    events_list_group_70 = importer.save_or_locate(events_list_group_70)
+
+    events_list_group_71 = Group()
+    events_list_group_71.name = u'Geekfest Seattle'
+    events_list_group_71.city = u'Seattle'
+    events_list_group_71.state = u'WA'
+    events_list_group_71.country = u'US'
+    events_list_group_71.meetupID = 14870552L
+    events_list_group_71.is_applicable = True
+    events_list_group_71 = importer.save_or_locate(events_list_group_71)
+
+    events_list_group_72 = Group()
+    events_list_group_72.name = u'Data Scientists Project Group'
+    events_list_group_72.city = u'San Francisco'
+    events_list_group_72.state = u'CA'
+    events_list_group_72.country = u'US'
+    events_list_group_72.meetupID = 14136242L
+    events_list_group_72.is_applicable = True
+    events_list_group_72 = importer.save_or_locate(events_list_group_72)
+
+    events_list_group_73 = Group()
+    events_list_group_73.name = u'Bay Area Apache Flink Meetup'
+    events_list_group_73.city = u'Mountain View'
+    events_list_group_73.state = u'CA'
+    events_list_group_73.country = u'US'
+    events_list_group_73.meetupID = 18617234L
+    events_list_group_73.is_applicable = True
+    events_list_group_73 = importer.save_or_locate(events_list_group_73)
+
+    events_list_group_74 = Group()
+    events_list_group_74.name = u"Phoenix Laughter Club's"
+    events_list_group_74.city = u'Phoenix'
+    events_list_group_74.state = u'AZ'
+    events_list_group_74.country = u'US'
+    events_list_group_74.meetupID = 3020182L
+    events_list_group_74.is_applicable = True
+    events_list_group_74 = importer.save_or_locate(events_list_group_74)
+
+    events_list_group_75 = Group()
+    events_list_group_75.name = u'IGTCloud'
+    events_list_group_75.city = u'Tel Aviv-Yafo'
+    events_list_group_75.state = u''
+    events_list_group_75.country = u'IL'
+    events_list_group_75.meetupID = 1724101L
+    events_list_group_75.is_applicable = True
+    events_list_group_75 = importer.save_or_locate(events_list_group_75)
+
+    events_list_group_76 = Group()
+    events_list_group_76.name = u'Stockholm Sporty People'
+    events_list_group_76.city = u'Stockholm'
+    events_list_group_76.state = u''
+    events_list_group_76.country = u'SE'
+    events_list_group_76.meetupID = 3478512L
+    events_list_group_76.is_applicable = False
+    events_list_group_76 = importer.save_or_locate(events_list_group_76)
+
+    events_list_group_77 = Group()
+    events_list_group_77.name = u'Las Cruces Motorcycle Riders'
+    events_list_group_77.city = u'Las Cruces'
+    events_list_group_77.state = u'NM'
+    events_list_group_77.country = u'US'
+    events_list_group_77.meetupID = 2166511L
+    events_list_group_77.is_applicable = False
+    events_list_group_77 = importer.save_or_locate(events_list_group_77)
+
+    events_list_group_78 = Group()
+    events_list_group_78.name = u'Nevada Scooter Brigade'
+    events_list_group_78.city = u'North Las Vegas'
+    events_list_group_78.state = u'NV'
+    events_list_group_78.country = u'US'
+    events_list_group_78.meetupID = 1382333L
+    events_list_group_78.is_applicable = False
+    events_list_group_78 = importer.save_or_locate(events_list_group_78)
+
+    events_list_group_79 = Group()
+    events_list_group_79.name = u'2-NetworkTogether-AJ GoldCanyon'
+    events_list_group_79.city = u'Apache Junction'
+    events_list_group_79.state = u'AZ'
+    events_list_group_79.country = u'US'
+    events_list_group_79.meetupID = 3201402L
+    events_list_group_79.is_applicable = False
+    events_list_group_79 = importer.save_or_locate(events_list_group_79)
+
+    events_list_group_80 = Group()
+    events_list_group_80.name = u'East Valley Desert Gardening'
+    events_list_group_80.city = u'Apache Junction'
+    events_list_group_80.state = u'AZ'
+    events_list_group_80.country = u'US'
+    events_list_group_80.meetupID = 14617802L
+    events_list_group_80.is_applicable = False
+    events_list_group_80 = importer.save_or_locate(events_list_group_80)
+
+    events_list_group_81 = Group()
+    events_list_group_81.name = u'Apache Junction Channeled Messages'
+    events_list_group_81.city = u'Mesa'
+    events_list_group_81.state = u'AZ'
+    events_list_group_81.country = u'US'
+    events_list_group_81.meetupID = 18733464L
+    events_list_group_81.is_applicable = False
+    events_list_group_81 = importer.save_or_locate(events_list_group_81)
+
+    events_list_group_82 = Group()
+    events_list_group_82.name = u'Senior Healthcare Professionals'
+    events_list_group_82.city = u'Phoenix'
+    events_list_group_82.state = u'AZ'
+    events_list_group_82.country = u'US'
+    events_list_group_82.meetupID = 1696507L
+    events_list_group_82.is_applicable = False
+    events_list_group_82 = importer.save_or_locate(events_list_group_82)
+
+    events_list_group_83 = Group()
+    events_list_group_83.name = u'Hiking Hikers Hiking Group'
+    events_list_group_83.city = u'Phoenix'
+    events_list_group_83.state = u'AZ'
+    events_list_group_83.country = u'US'
+    events_list_group_83.meetupID = 359190L
+    events_list_group_83.is_applicable = False
+    events_list_group_83 = importer.save_or_locate(events_list_group_83)
+
+    events_list_group_84 = Group()
+    events_list_group_84.name = u'The Phoenix Atheists Meetup Group'
+    events_list_group_84.city = u'Phoenix'
+    events_list_group_84.state = u'AZ'
+    events_list_group_84.country = u'US'
+    events_list_group_84.meetupID = 12920L
+    events_list_group_84.is_applicable = False
+    events_list_group_84 = importer.save_or_locate(events_list_group_84)
+
+    events_list_group_85 = Group()
+    events_list_group_85.name = u'SFBay Apache Lucene/Solr  Meetup'
+    events_list_group_85.city = u'San Mateo'
+    events_list_group_85.state = u'CA'
+    events_list_group_85.country = u'US'
+    events_list_group_85.meetupID = 1460078L
+    events_list_group_85.is_applicable = True
+    events_list_group_85 = importer.save_or_locate(events_list_group_85)
+
+    events_list_group_86 = Group()
+    events_list_group_86.name = u'Pivotal Open Source Hub'
+    events_list_group_86.city = u'San Francisco'
+    events_list_group_86.state = u'CA'
+    events_list_group_86.country = u'US'
+    events_list_group_86.meetupID = 9723552L
+    events_list_group_86.is_applicable = True
+    events_list_group_86 = importer.save_or_locate(events_list_group_86)
+
+    events_list_group_87 = Group()
+    events_list_group_87.name = u'Los Angeles Apache Spark Users Group'
+    events_list_group_87.city = u'Los Angeles'
+    events_list_group_87.state = u'CA'
+    events_list_group_87.country = u'US'
+    events_list_group_87.meetupID = 16041812L
+    events_list_group_87.is_applicable = True
+    events_list_group_87 = importer.save_or_locate(events_list_group_87)
+
+    events_list_group_88 = Group()
+    events_list_group_88.name = u'Austin Cassandra Users'
+    events_list_group_88.city = u'Austin'
+    events_list_group_88.state = u'TX'
+    events_list_group_88.country = u'US'
+    events_list_group_88.meetupID = 8984182L
+    events_list_group_88.is_applicable = True
+    events_list_group_88 = importer.save_or_locate(events_list_group_88)
+
+    events_list_group_89 = Group()
+    events_list_group_89.name = u'Research Triangle Analysts'
+    events_list_group_89.city = u'Durham'
+    events_list_group_89.state = u'NC'
+    events_list_group_89.country = u'US'
+    events_list_group_89.meetupID = 8855722L
+    events_list_group_89.is_applicable = True
+    events_list_group_89 = importer.save_or_locate(events_list_group_89)
+
+    events_list_group_90 = Group()
+    events_list_group_90.name = u'Michigan Spark Users Group'
+    events_list_group_90.city = u'Detroit'
+    events_list_group_90.state = u'MI'
+    events_list_group_90.country = u'US'
+    events_list_group_90.meetupID = 18532292L
+    events_list_group_90.is_applicable = True
+    events_list_group_90 = importer.save_or_locate(events_list_group_90)
+
+    events_list_group_91 = Group()
+    events_list_group_91.name = u'South-West Elastic Community'
+    events_list_group_91.city = u'Bath'
+    events_list_group_91.state = u'A4'
+    events_list_group_91.country = u'GB'
+    events_list_group_91.meetupID = 15140232L
+    events_list_group_91.is_applicable = True
+    events_list_group_91 = importer.save_or_locate(events_list_group_91)
+
+    events_list_group_92 = Group()
+    events_list_group_92.name = u'Toronto Scala & Typesafe User Group'
+    events_list_group_92.city = u'Toronto'
+    events_list_group_92.state = u'ON'
+    events_list_group_92.country = u'CA'
+    events_list_group_92.meetupID = 8500592L
+    events_list_group_92.is_applicable = True
+    events_list_group_92 = importer.save_or_locate(events_list_group_92)
+
+    events_list_group_93 = Group()
+    events_list_group_93.name = u'Promoting Open Source/Libre to the Canadian government'
+    events_list_group_93.city = u'Ottawa'
+    events_list_group_93.state = u'ON'
+    events_list_group_93.country = u'CA'
+    events_list_group_93.meetupID = 9959852L
+    events_list_group_93.is_applicable = True
+    events_list_group_93 = importer.save_or_locate(events_list_group_93)
+
+    events_list_group_94 = Group()
+    events_list_group_94.name = u'Primitive Skills & Wilderness Living (San Antonio Region)'
+    events_list_group_94.city = u'San Antonio'
+    events_list_group_94.state = u'TX'
+    events_list_group_94.country = u'US'
+    events_list_group_94.meetupID = 965563L
+    events_list_group_94.is_applicable = True
+    events_list_group_94 = importer.save_or_locate(events_list_group_94)
+
+    events_list_group_95 = Group()
+    events_list_group_95.name = u'Grupy-SP'
+    events_list_group_95.city = u'S\xe3o Paulo'
+    events_list_group_95.state = u''
+    events_list_group_95.country = u'BR'
+    events_list_group_95.meetupID = 18253440L
+    events_list_group_95.is_applicable = True
+    events_list_group_95 = importer.save_or_locate(events_list_group_95)
+
+    events_list_group_96 = Group()
+    events_list_group_96.name = u'London Kaggle Meetup'
+    events_list_group_96.city = u'London'
+    events_list_group_96.state = u'17'
+    events_list_group_96.country = u'GB'
+    events_list_group_96.meetupID = 18654966L
+    events_list_group_96.is_applicable = True
+    events_list_group_96 = importer.save_or_locate(events_list_group_96)
+
+    events_list_group_97 = Group()
+    events_list_group_97.name = u'Shanghai Big Data Streaming Meetup'
+    events_list_group_97.city = u'Shanghai'
+    events_list_group_97.state = u''
+    events_list_group_97.country = u'CN'
+    events_list_group_97.meetupID = 18743046L
+    events_list_group_97.is_applicable = True
+    events_list_group_97 = importer.save_or_locate(events_list_group_97)
+
+    events_list_group_98 = Group()
+    events_list_group_98.name = u'Xian Apache Spark Meetup'
+    events_list_group_98.city = u'Xian'
+    events_list_group_98.state = u''
+    events_list_group_98.country = u'CN'
+    events_list_group_98.meetupID = 18215148L
+    events_list_group_98.is_applicable = True
+    events_list_group_98 = importer.save_or_locate(events_list_group_98)
+
+    events_list_group_99 = Group()
+    events_list_group_99.name = u'Spark User Beijing Meetup'
+    events_list_group_99.city = u'Beijing'
+    events_list_group_99.state = u''
+    events_list_group_99.country = u'CN'
+    events_list_group_99.meetupID = 15469022L
+    events_list_group_99.is_applicable = True
+    events_list_group_99 = importer.save_or_locate(events_list_group_99)
+
+    events_list_group_100 = Group()
+    events_list_group_100.name = u'SE Valley Filipino American Families & Friends (SEVFAF) - AZ'
+    events_list_group_100.city = u'Chandler'
+    events_list_group_100.state = u'AZ'
+    events_list_group_100.country = u'US'
+    events_list_group_100.meetupID = 1430942L
+    events_list_group_100.is_applicable = True
+    events_list_group_100 = importer.save_or_locate(events_list_group_100)
+
+    events_list_group_101 = Group()
+    events_list_group_101.name = u'ambariCloud Big Data Meetup'
+    events_list_group_101.city = u'Bolingbrook'
+    events_list_group_101.state = u'IL'
+    events_list_group_101.country = u'US'
+    events_list_group_101.meetupID = 18538766L
+    events_list_group_101.is_applicable = True
+    events_list_group_101 = importer.save_or_locate(events_list_group_101)
+
+    events_list_group_102 = Group()
+    events_list_group_102.name = u'Sydney Big Data and Analytics'
+    events_list_group_102.city = u'Sydney'
+    events_list_group_102.state = u''
+    events_list_group_102.country = u'AU'
+    events_list_group_102.meetupID = 18324087L
+    events_list_group_102.is_applicable = True
+    events_list_group_102 = importer.save_or_locate(events_list_group_102)
+
+    events_list_group_103 = Group()
+    events_list_group_103.name = u'DFW Analytics : Big Data and Beyond'
+    events_list_group_103.city = u'Dallas'
+    events_list_group_103.state = u'TX'
+    events_list_group_103.country = u'US'
+    events_list_group_103.meetupID = 11490362L
+    events_list_group_103.is_applicable = True
+    events_list_group_103 = importer.save_or_locate(events_list_group_103)
+
+    events_list_group_104 = Group()
+    events_list_group_104.name = u'Big Data Madison'
+    events_list_group_104.city = u'Madison'
+    events_list_group_104.state = u'WI'
+    events_list_group_104.country = u'US'
+    events_list_group_104.meetupID = 3315552L
+    events_list_group_104.is_applicable = True
+    events_list_group_104 = importer.save_or_locate(events_list_group_104)
+
+    events_list_group_105 = Group()
+    events_list_group_105.name = u'Melbourne Apache Spark Meetup'
+    events_list_group_105.city = u'Melbourne'
+    events_list_group_105.state = u''
+    events_list_group_105.country = u'AU'
+    events_list_group_105.meetupID = 18282806L
+    events_list_group_105.is_applicable = True
+    events_list_group_105 = importer.save_or_locate(events_list_group_105)
+
+    events_list_group_106 = Group()
+    events_list_group_106.name = u'Houston Meteor Meetup'
+    events_list_group_106.city = u'Houston'
+    events_list_group_106.state = u'TX'
+    events_list_group_106.country = u'US'
+    events_list_group_106.meetupID = 18632193L
+    events_list_group_106.is_applicable = True
+    events_list_group_106 = importer.save_or_locate(events_list_group_106)
+
+    events_list_group_107 = Group()
+    events_list_group_107.name = u'Apache Lucene/Solr SG'
+    events_list_group_107.city = u'Singapore'
+    events_list_group_107.state = u''
+    events_list_group_107.country = u'SG'
+    events_list_group_107.meetupID = 18650303L
+    events_list_group_107.is_applicable = True
+    events_list_group_107 = importer.save_or_locate(events_list_group_107)
+
+    events_list_group_108 = Group()
+    events_list_group_108.name = u'Bay Area Spark Meetup'
+    events_list_group_108.city = u'San Francisco'
+    events_list_group_108.state = u'CA'
+    events_list_group_108.country = u'US'
+    events_list_group_108.meetupID = 3138542L
+    events_list_group_108.is_applicable = True
+    events_list_group_108 = importer.save_or_locate(events_list_group_108)
+
+    events_list_group_109 = Group()
+    events_list_group_109.name = u'South West Data'
+    events_list_group_109.city = u'Bristol'
+    events_list_group_109.state = u'B7'
+    events_list_group_109.country = u'GB'
+    events_list_group_109.meetupID = 2710112L
+    events_list_group_109.is_applicable = True
+    events_list_group_109 = importer.save_or_locate(events_list_group_109)
+
+    events_list_group_110 = Group()
+    events_list_group_110.name = u'Charlotte Hadoop Users Group'
+    events_list_group_110.city = u'Charlotte'
+    events_list_group_110.state = u'NC'
+    events_list_group_110.country = u'US'
+    events_list_group_110.meetupID = 1831741L
+    events_list_group_110.is_applicable = True
+    events_list_group_110 = importer.save_or_locate(events_list_group_110)
+
+    events_list_group_111 = Group()
+    events_list_group_111.name = u'Pepperdata Meetup Group'
+    events_list_group_111.city = u'Sunnyvale'
+    events_list_group_111.state = u'CA'
+    events_list_group_111.country = u'US'
+    events_list_group_111.meetupID = 14306312L
+    events_list_group_111.is_applicable = True
+    events_list_group_111 = importer.save_or_locate(events_list_group_111)
+
+    events_list_group_112 = Group()
+    events_list_group_112.name = u'Google Developer Group Ha Noi'
+    events_list_group_112.city = u'Ha Noi'
+    events_list_group_112.state = u''
+    events_list_group_112.country = u'VN'
+    events_list_group_112.meetupID = 18675964L
+    events_list_group_112.is_applicable = True
+    events_list_group_112 = importer.save_or_locate(events_list_group_112)
+
+    events_list_group_113 = Group()
+    events_list_group_113.name = u'DataStax Cassandra SF Users'
+    events_list_group_113.city = u'San Francisco'
+    events_list_group_113.state = u'CA'
+    events_list_group_113.country = u'US'
+    events_list_group_113.meetupID = 8567532L
+    events_list_group_113.is_applicable = True
+    events_list_group_113 = importer.save_or_locate(events_list_group_113)
+
+    events_list_group_114 = Group()
+    events_list_group_114.name = u'East Bay  Java User Group'
+    events_list_group_114.city = u'Oakland'
+    events_list_group_114.state = u'CA'
+    events_list_group_114.country = u'US'
+    events_list_group_114.meetupID = 1791369L
+    events_list_group_114.is_applicable = True
+    events_list_group_114 = importer.save_or_locate(events_list_group_114)
+
+    events_list_group_115 = Group()
+    events_list_group_115.name = u"The Atlanta WordPress Coder's Guild\u2122"
+    events_list_group_115.city = u'Atlanta'
+    events_list_group_115.state = u'GA'
+    events_list_group_115.country = u'US'
+    events_list_group_115.meetupID = 18241772L
+    events_list_group_115.is_applicable = True
+    events_list_group_115 = importer.save_or_locate(events_list_group_115)
+
+    events_list_group_116 = Group()
+    events_list_group_116.name = u'Bay Area Search'
+    events_list_group_116.city = u'San Jose'
+    events_list_group_116.state = u'CA'
+    events_list_group_116.country = u'US'
+    events_list_group_116.meetupID = 1875611L
+    events_list_group_116.is_applicable = True
+    events_list_group_116 = importer.save_or_locate(events_list_group_116)
+
+    events_list_group_117 = Group()
+    events_list_group_117.name = u'Apache Flink Meetup Berlin'
+    events_list_group_117.city = u'Berlin'
+    events_list_group_117.state = u''
+    events_list_group_117.country = u'DE'
+    events_list_group_117.meetupID = 17066872L
+    events_list_group_117.is_applicable = True
+    events_list_group_117 = importer.save_or_locate(events_list_group_117)
+
+    events_list_group_118 = Group()
+    events_list_group_118.name = u'Indy Big Data'
+    events_list_group_118.city = u'Carmel'
+    events_list_group_118.state = u'IN'
+    events_list_group_118.country = u'US'
+    events_list_group_118.meetupID = 2307701L
+    events_list_group_118.is_applicable = True
+    events_list_group_118 = importer.save_or_locate(events_list_group_118)
+
+    events_list_group_119 = Group()
+    events_list_group_119.name = u'Pivotal Toronto User Group'
+    events_list_group_119.city = u'Toronto'
+    events_list_group_119.state = u'ON'
+    events_list_group_119.country = u'CA'
+    events_list_group_119.meetupID = 6015342L
+    events_list_group_119.is_applicable = True
+    events_list_group_119 = importer.save_or_locate(events_list_group_119)
+
+    events_list_group_120 = Group()
+    events_list_group_120.name = u'ElasticSearch Usergroup Frankfurt'
+    events_list_group_120.city = u'Frankfurt'
+    events_list_group_120.state = u''
+    events_list_group_120.country = u'DE'
+    events_list_group_120.meetupID = 12970172L
+    events_list_group_120.is_applicable = True
+    events_list_group_120 = importer.save_or_locate(events_list_group_120)
+
+    events_list_group_121 = Group()
+    events_list_group_121.name = u'Seattle Scalability Meetup'
+    events_list_group_121.city = u'Seattle'
+    events_list_group_121.state = u'WA'
+    events_list_group_121.country = u'US'
+    events_list_group_121.meetupID = 1580512L
+    events_list_group_121.is_applicable = True
+    events_list_group_121 = importer.save_or_locate(events_list_group_121)
+
+    events_list_group_122 = Group()
+    events_list_group_122.name = u'Oslo Hadoop Big Data Meetup'
+    events_list_group_122.city = u'Oslo'
+    events_list_group_122.state = u''
+    events_list_group_122.country = u'NO'
+    events_list_group_122.meetupID = 18591596L
+    events_list_group_122.is_applicable = True
+    events_list_group_122 = importer.save_or_locate(events_list_group_122)
+
+    events_list_group_123 = Group()
+    events_list_group_123.name = u'Melbourne Cassandra Users'
+    events_list_group_123.city = u'Melbourne'
+    events_list_group_123.state = u''
+    events_list_group_123.country = u'AU'
+    events_list_group_123.meetupID = 14919652L
+    events_list_group_123.is_applicable = True
+    events_list_group_123 = importer.save_or_locate(events_list_group_123)
+
+    events_list_group_124 = Group()
+    events_list_group_124.name = u'Toronto Java Users Group'
+    events_list_group_124.city = u'Toronto'
+    events_list_group_124.state = u'ON'
+    events_list_group_124.country = u'CA'
+    events_list_group_124.meetupID = 12543492L
+    events_list_group_124.is_applicable = True
+    events_list_group_124 = importer.save_or_locate(events_list_group_124)
+
+    events_list_group_125 = Group()
+    events_list_group_125.name = u'SoCal Talend Meetup'
+    events_list_group_125.city = u'Irvine'
+    events_list_group_125.state = u'CA'
+    events_list_group_125.country = u'US'
+    events_list_group_125.meetupID = 18784646L
+    events_list_group_125.is_applicable = True
+    events_list_group_125 = importer.save_or_locate(events_list_group_125)
+
+    events_list_group_126 = Group()
+    events_list_group_126.name = u'Moscow Big Systems/Big Data'
+    events_list_group_126.city = u'Moscow'
+    events_list_group_126.state = u''
+    events_list_group_126.country = u'RU'
+    events_list_group_126.meetupID = 4035302L
+    events_list_group_126.is_applicable = True
+    events_list_group_126 = importer.save_or_locate(events_list_group_126)
+
+    events_list_group_127 = Group()
+    events_list_group_127.name = u'Cascading'
+    events_list_group_127.city = u'San Francisco'
+    events_list_group_127.state = u'CA'
+    events_list_group_127.country = u'US'
+    events_list_group_127.meetupID = 4627532L
+    events_list_group_127.is_applicable = True
+    events_list_group_127 = importer.save_or_locate(events_list_group_127)
+
+    events_list_group_128 = Group()
+    events_list_group_128.name = u'Derbyshire Dot Net'
+    events_list_group_128.city = u'Derby'
+    events_list_group_128.state = u'D3'
+    events_list_group_128.country = u'GB'
+    events_list_group_128.meetupID = 18710153L
+    events_list_group_128.is_applicable = True
+    events_list_group_128 = importer.save_or_locate(events_list_group_128)
+
+    events_list_group_129 = Group()
+    events_list_group_129.name = u'Big Data DC'
+    events_list_group_129.city = u'Mc Lean'
+    events_list_group_129.state = u'VA'
+    events_list_group_129.country = u'US'
+    events_list_group_129.meetupID = 1810133L
+    events_list_group_129.is_applicable = True
+    events_list_group_129 = importer.save_or_locate(events_list_group_129)
+
+    events_list_group_130 = Group()
+    events_list_group_130.name = u'Berliner Apache Cordova Network'
+    events_list_group_130.city = u'Berlin'
+    events_list_group_130.state = u''
+    events_list_group_130.country = u'DE'
+    events_list_group_130.meetupID = 18457296L
+    events_list_group_130.is_applicable = True
+    events_list_group_130 = importer.save_or_locate(events_list_group_130)
+
+    events_list_group_131 = Group()
+    events_list_group_131.name = u'Lansing  Big Data and Hadoop Users Group Meetup'
+    events_list_group_131.city = u'Okemos'
+    events_list_group_131.state = u'MI'
+    events_list_group_131.country = u'US'
+    events_list_group_131.meetupID = 18384747L
+    events_list_group_131.is_applicable = True
+    events_list_group_131 = importer.save_or_locate(events_list_group_131)
+
+    events_list_group_132 = Group()
+    events_list_group_132.name = u'Seoul Apache Tajo Meetup'
+    events_list_group_132.city = u'Seoul'
+    events_list_group_132.state = u''
+    events_list_group_132.country = u'KR'
+    events_list_group_132.meetupID = 7802752L
+    events_list_group_132.is_applicable = True
+    events_list_group_132 = importer.save_or_locate(events_list_group_132)
+
+    events_list_group_133 = Group()
+    events_list_group_133.name = u'Arizona Backpacking Club'
+    events_list_group_133.city = u'Phoenix'
+    events_list_group_133.state = u'AZ'
+    events_list_group_133.country = u'US'
+    events_list_group_133.meetupID = 1181021L
+    events_list_group_133.is_applicable = True
+    events_list_group_133 = importer.save_or_locate(events_list_group_133)
+
+    events_list_group_134 = Group()
+    events_list_group_134.name = u'Composers-Lyricists-Songwriters Workshop and Showcase.'
+    events_list_group_134.city = u'Austin'
+    events_list_group_134.state = u'TX'
+    events_list_group_134.country = u'US'
+    events_list_group_134.meetupID = 18671368L
+    events_list_group_134.is_applicable = True
+    events_list_group_134 = importer.save_or_locate(events_list_group_134)
+
+    events_list_group_135 = Group()
+    events_list_group_135.name = u"ALT-Lanta: Atlanta's new Indie music scene and culture"
+    events_list_group_135.city = u'Atlanta'
+    events_list_group_135.state = u'GA'
+    events_list_group_135.country = u'US'
+    events_list_group_135.meetupID = 18522371L
+    events_list_group_135.is_applicable = True
+    events_list_group_135 = importer.save_or_locate(events_list_group_135)
+
+    events_list_group_136 = Group()
+    events_list_group_136.name = u'Bangalore Apache Spark Meetup'
+    events_list_group_136.city = u'Bangalore'
+    events_list_group_136.state = u''
+    events_list_group_136.country = u'IN'
+    events_list_group_136.meetupID = 18407383L
+    events_list_group_136.is_applicable = True
+    events_list_group_136 = importer.save_or_locate(events_list_group_136)
+
+    events_list_group_137 = Group()
+    events_list_group_137.name = u'WSDEVS:  Mobile, SOA, BigData, Webapp, Alm/Scrum, IOT'
+    events_list_group_137.city = u'S\xe3o Paulo'
+    events_list_group_137.state = u''
+    events_list_group_137.country = u'BR'
+    events_list_group_137.meetupID = 18479181L
+    events_list_group_137.is_applicable = True
+    events_list_group_137 = importer.save_or_locate(events_list_group_137)
+
+    events_list_group_138 = Group()
+    events_list_group_138.name = u'Big Data Denmark'
+    events_list_group_138.city = u'\xc5rhus'
+    events_list_group_138.state = u''
+    events_list_group_138.country = u'DK'
+    events_list_group_138.meetupID = 16615762L
+    events_list_group_138.is_applicable = True
+    events_list_group_138 = importer.save_or_locate(events_list_group_138)
+
+    events_list_group_139 = Group()
+    events_list_group_139.name = u'Big things'
+    events_list_group_139.city = u'Tel Aviv-Yafo'
+    events_list_group_139.state = u''
+    events_list_group_139.country = u'IL'
+    events_list_group_139.meetupID = 18423322L
+    events_list_group_139.is_applicable = True
+    events_list_group_139 = importer.save_or_locate(events_list_group_139)
+
+    events_list_group_140 = Group()
+    events_list_group_140.name = u'Adobe Developers & Designers, Sydney (ADDS)'
+    events_list_group_140.city = u'Sydney'
+    events_list_group_140.state = u''
+    events_list_group_140.country = u'AU'
+    events_list_group_140.meetupID = 5747682L
+    events_list_group_140.is_applicable = True
+    events_list_group_140 = importer.save_or_locate(events_list_group_140)
+
+    events_list_group_141 = Group()
+    events_list_group_141.name = u'Toronto Apache Spark'
+    events_list_group_141.city = u'Toronto'
+    events_list_group_141.state = u'ON'
+    events_list_group_141.country = u'CA'
+    events_list_group_141.meetupID = 18742524L
+    events_list_group_141.is_applicable = True
+    events_list_group_141 = importer.save_or_locate(events_list_group_141)
+
+    events_list_group_142 = Group()
+    events_list_group_142.name = u'Scala Developers in Manchester'
+    events_list_group_142.city = u'Manchester'
+    events_list_group_142.state = u'18'
+    events_list_group_142.country = u'GB'
+    events_list_group_142.meetupID = 7554702L
+    events_list_group_142.is_applicable = True
+    events_list_group_142 = importer.save_or_locate(events_list_group_142)
+
+    events_list_group_143 = Group()
+    events_list_group_143.name = u'HUGNOFA'
+    events_list_group_143.city = u'Saint Augustine'
+    events_list_group_143.state = u'FL'
+    events_list_group_143.country = u'US'
+    events_list_group_143.meetupID = 4173572L
+    events_list_group_143.is_applicable = True
+    events_list_group_143 = importer.save_or_locate(events_list_group_143)
+
+    events_list_group_144 = Group()
+    events_list_group_144.name = u'Cloudera Tech Meetup'
+    events_list_group_144.city = u'Budapest'
+    events_list_group_144.state = u''
+    events_list_group_144.country = u'HU'
+    events_list_group_144.meetupID = 18568847L
+    events_list_group_144.is_applicable = True
+    events_list_group_144 = importer.save_or_locate(events_list_group_144)
+
+    events_list_group_145 = Group()
+    events_list_group_145.name = u'Phoenix Hadoop User Group'
+    events_list_group_145.city = u'Phoenix'
+    events_list_group_145.state = u'AZ'
+    events_list_group_145.country = u'US'
+    events_list_group_145.meetupID = 12321952L
+    events_list_group_145.is_applicable = True
+    events_list_group_145 = importer.save_or_locate(events_list_group_145)
+
+    events_list_group_146 = Group()
+    events_list_group_146.name = u'Austin Data Geeks'
+    events_list_group_146.city = u'Austin'
+    events_list_group_146.state = u'TX'
+    events_list_group_146.country = u'US'
+    events_list_group_146.meetupID = 1784720L
+    events_list_group_146.is_applicable = True
+    events_list_group_146 = importer.save_or_locate(events_list_group_146)
+
+    events_list_group_147 = Group()
+    events_list_group_147.name = u'Atlanta Web Performance Group'
+    events_list_group_147.city = u'Atlanta'
+    events_list_group_147.state = u'GA'
+    events_list_group_147.country = u'US'
+    events_list_group_147.meetupID = 2283171L
+    events_list_group_147.is_applicable = True
+    events_list_group_147 = importer.save_or_locate(events_list_group_147)
+
+    events_list_group_148 = Group()
+    events_list_group_148.name = u'SeaLang'
+    events_list_group_148.city = u'Redmond'
+    events_list_group_148.state = u'WA'
+    events_list_group_148.country = u'US'
+    events_list_group_148.meetupID = 7501092L
+    events_list_group_148.is_applicable = True
+    events_list_group_148 = importer.save_or_locate(events_list_group_148)
+
+    events_list_group_149 = Group()
+    events_list_group_149.name = u'AEM Developer Meetup'
+    events_list_group_149.city = u'Amsterdam'
+    events_list_group_149.state = u''
+    events_list_group_149.country = u'NL'
+    events_list_group_149.meetupID = 18741010L
+    events_list_group_149.is_applicable = True
+    events_list_group_149 = importer.save_or_locate(events_list_group_149)
+
+    events_list_group_150 = Group()
+    events_list_group_150.name = u'LAPHP: The Los Angeles PHP Developers Group'
+    events_list_group_150.city = u'Santa Monica'
+    events_list_group_150.state = u'CA'
+    events_list_group_150.country = u'US'
+    events_list_group_150.meetupID = 582093L
+    events_list_group_150.is_applicable = True
+    events_list_group_150 = importer.save_or_locate(events_list_group_150)
+
+    events_list_group_151 = Group()
+    events_list_group_151.name = u'Data Science LA'
+    events_list_group_151.city = u'Santa Monica'
+    events_list_group_151.state = u'CA'
+    events_list_group_151.country = u'US'
+    events_list_group_151.meetupID = 11488322L
+    events_list_group_151.is_applicable = True
+    events_list_group_151 = importer.save_or_locate(events_list_group_151)
+
+    events_list_group_152 = Group()
+    events_list_group_152.name = u'NYC BIG DATA VISIONARIES'
+    events_list_group_152.city = u'New York'
+    events_list_group_152.state = u'NY'
+    events_list_group_152.country = u'US'
+    events_list_group_152.meetupID = 15612262L
+    events_list_group_152.is_applicable = True
+    events_list_group_152 = importer.save_or_locate(events_list_group_152)
+
+    events_list_group_153 = Group()
+    events_list_group_153.name = u'New York Web Performance Group'
+    events_list_group_153.city = u'New York'
+    events_list_group_153.state = u'NY'
+    events_list_group_153.country = u'US'
+    events_list_group_153.meetupID = 1428523L
+    events_list_group_153.is_applicable = True
+    events_list_group_153 = importer.save_or_locate(events_list_group_153)
+
+    events_list_group_154 = Group()
+    events_list_group_154.name = u'North Phoenix Cruisers'
+    events_list_group_154.city = u'Phoenix'
+    events_list_group_154.state = u'AZ'
+    events_list_group_154.country = u'US'
+    events_list_group_154.meetupID = 3575632L
+    events_list_group_154.is_applicable = True
+    events_list_group_154 = importer.save_or_locate(events_list_group_154)
+
+    events_list_group_155 = Group()
+    events_list_group_155.name = u'Taa-naash-kaa-da Sanctuary'
+    events_list_group_155.city = u'Las Vegas'
+    events_list_group_155.state = u'NM'
+    events_list_group_155.country = u'US'
+    events_list_group_155.meetupID = 14848302L
+    events_list_group_155.is_applicable = True
+    events_list_group_155 = importer.save_or_locate(events_list_group_155)
+
+    events_list_group_156 = Group()
+    events_list_group_156.name = u'Phoenix Motorcycle Riders Group'
+    events_list_group_156.city = u'Phoenix'
+    events_list_group_156.state = u'AZ'
+    events_list_group_156.country = u'US'
+    events_list_group_156.meetupID = 444077L
+    events_list_group_156.is_applicable = True
+    events_list_group_156 = importer.save_or_locate(events_list_group_156)
+
+    events_list_group_157 = Group()
+    events_list_group_157.name = u'Big Data Hyderabad'
+    events_list_group_157.city = u'Hyderabad'
+    events_list_group_157.state = u''
+    events_list_group_157.country = u'IN'
+    events_list_group_157.meetupID = 14467182L
+    events_list_group_157.is_applicable = True
+    events_list_group_157 = importer.save_or_locate(events_list_group_157)
+
+    events_list_group_158 = Group()
+    events_list_group_158.name = u'Atlanta Ionic Developers'
+    events_list_group_158.city = u'Atlanta'
+    events_list_group_158.state = u'GA'
+    events_list_group_158.country = u'US'
+    events_list_group_158.meetupID = 18418431L
+    events_list_group_158.is_applicable = True
+    events_list_group_158 = importer.save_or_locate(events_list_group_158)
+
+    events_list_group_159 = Group()
+    events_list_group_159.name = u'Haifa  Big Data'
+    events_list_group_159.city = u'Haifa'
+    events_list_group_159.state = u''
+    events_list_group_159.country = u'IL'
+    events_list_group_159.meetupID = 18616619L
+    events_list_group_159.is_applicable = True
+    events_list_group_159 = importer.save_or_locate(events_list_group_159)
+
+    events_list_group_160 = Group()
+    events_list_group_160.name = u'Data Innovation Training Hub'
+    events_list_group_160.city = u'Brussels'
+    events_list_group_160.state = u''
+    events_list_group_160.country = u'BE'
+    events_list_group_160.meetupID = 18631365L
+    events_list_group_160.is_applicable = True
+    events_list_group_160 = importer.save_or_locate(events_list_group_160)
+
+    events_list_group_161 = Group()
+    events_list_group_161.name = u'Minneapolis St. Paul Cassandra Meetup'
+    events_list_group_161.city = u'Minneapolis'
+    events_list_group_161.state = u'MN'
+    events_list_group_161.country = u'US'
+    events_list_group_161.meetupID = 4653912L
+    events_list_group_161.is_applicable = True
+    events_list_group_161 = importer.save_or_locate(events_list_group_161)
+
+    events_list_group_162 = Group()
+    events_list_group_162.name = u'Z\xfcrich Apache Spark Meetup'
+    events_list_group_162.city = u'Z\xfcrich'
+    events_list_group_162.state = u''
+    events_list_group_162.country = u'CH'
+    events_list_group_162.meetupID = 18614547L
+    events_list_group_162.is_applicable = True
+    events_list_group_162 = importer.save_or_locate(events_list_group_162)
+
+    events_list_group_163 = Group()
+    events_list_group_163.name = u'Apache Lucene/Solr - London User Group'
+    events_list_group_163.city = u'London'
+    events_list_group_163.state = u'17'
+    events_list_group_163.country = u'GB'
+    events_list_group_163.meetupID = 17892732L
+    events_list_group_163.is_applicable = True
+    events_list_group_163 = importer.save_or_locate(events_list_group_163)
+
+    events_list_group_164 = Group()
+    events_list_group_164.name = u'Bohemian Circus Figure Drawing Group at Apache Cafe'
+    events_list_group_164.city = u'Atlanta'
+    events_list_group_164.state = u'GA'
+    events_list_group_164.country = u'US'
+    events_list_group_164.meetupID = 1758814L
+    events_list_group_164.is_applicable = False
+    events_list_group_164 = importer.save_or_locate(events_list_group_164)
+
+    # Processing model: Hashtag
+
+    from events_list.models import Hashtag
+
+    events_list_hashtag_1 = Hashtag()
+    events_list_hashtag_1.name = u'Apache'
+    events_list_hashtag_1 = importer.save_or_locate(events_list_hashtag_1)
+
+    # Processing model: Person
+
+    from events_list.models import Person
+
+
+    # Processing model: Event
+
+    from events_list.models import Event
+
+    events_list_event_1 = Event()
+    events_list_event_1.name = u'Mining Camp to Siphon Draw - Superstition Mountains'
+    events_list_event_1.event_url = u'http://www.meetup.com/threeh/events/224453399/'
+    events_list_event_1.group = events_list_group_83
+    events_list_event_1.meetupID = u'224453399'
+    events_list_event_1.description = u'<p><b>Distance:</b> Approximately\xa04 miles.</p> <p><b>Difficulty:</b> Moderate to difficult depending on one\'s ability.</p> <p><b>Elevation gain:</b>\xa01000 feet +/- from the Mining Camp Trailhead.</p> <p><b>Time:</b>\xa0 Expect\xa02-3 hours for this hike.</p> <p><b>Fun factor:</b> High!</p> <p>\xa0Off we go, again, into the Superstitions!\xa0 Regardless of the season, we hike here every few weeks, because we love it just that much.\xa0 We\'ll use\xa0the Mining Camp Trailhead.\xa0 There is some shade on this hike during the morning hours, and the temps are forecast to be in the 80\'s at the posted\xa0start time.\xa0</p> <p>Here is an excellent link with descriptions, photos, and stats.\xa0 Please read it to make sure this\xa0hike matches your abilities, but\xa0do\xa0note, we will start at a different trailhead than that noted in this link.\xa0 <a href="http://hikearizona.com/decoder.php?ZTN=686"><a href="http://hikearizona.com/decoder.php?
 ZTN=686" class="linkified">http://hikearizona.com/decoder.php?ZTN=686</a></a></p> <p><b>What to Bring:</b> Plenty of water (we\'d suggest 2-3 liters at a minimum), sunscreen, a hat, proper hiking shoes, a snack, your camera and your love of the trails.\xa0 We\'ll stop in the\xa0Draw for a snack before heading back down.</p> <p><b>Directions to the trailhead:</b> Take U.S. 60 to Idaho Road (exit 196) and go north for 2.25 miles to SR88, the Apache Trail. Turn NE (slight right) on SR88 and continue about 5.5 miles or so to Nodak Rd. (It is the turn for the Mining Camp Restaurant, so look for the signs for that turn). Turn right at Nodak Rd. and then left at the 2nd Rd. (Mining Camp Rd.) and continue to follow the signs to the restaurant. At the restaurant, turn to the left into the parking lot, and park away from the restaurant on the west end of the lot.</p> <p>Please note these are all paved roads\xa0ending into\xa0a gravel parking lot.\xa0 There is no fee to park here, but there ar
 e no facilities available, either, so plan accordingly.\xa0</p> <p>For those coming down the 101 to the 202, it is suggested that you exit at Brown Road (rather than going down to US 60) and take it east about 5 miles to AZ 88. From there, turn left, and head to the Mining Camp restaurant turnoff.</p> <p><b>Suggested carpool location:</b> 6:30 am at the Home Depot at Power and US 60. Go east on the Superstition Freeway (US 60) to Superstition Springs Blvd. exit 187. Take that exit, turn right and go 1/2 mile east, across Power Road. Then turn left, toward Home Depot, at the second driveway. Park in the southwest corner of the lot, behind Burger King. The Home Depot address is 6838 E Superstition Springs Blvd., Mesa, AZ 85208.</p> <p><b>VERY</b> <b>IMPORTANT:</b> Please state if you will be at the carpool spot, or, in the alternative, whether you will meet at the trailhead. You are responsible for yourself in this regard. There is no guarantee that anyone will be at the carpool locat
 ion. If no one has indicated they will be there, please consider proceeding to the trailhead.</p> <p>The forest service imposes a 15 hiker limit on all Superstition Wilderness hikes.\xa0</p>'
+    events_list_event_1.local_start = dateutil.parser.parse("2015-08-09T07:00:00")
+    events_list_event_1.local_end = dateutil.parser.parse("2015-08-09T07:00:00")
+    events_list_event_1.utc_offset = -25200L
+    events_list_event_1.is_applicable = False
+    events_list_event_1 = importer.save_or_locate(events_list_event_1)
+
+    events_list_event_1.hashtags.add(events_list_hashtag_1)
+
+    events_list_event_2 = Event()
+    events_list_event_2.name = u'Hadoop ile Merhaba D\xfcnya (Workshop)'
+    events_list_event_2.event_url = u'http://www.meetup.com/Istanbul-Spark-Meetup/events/223599737/'
+    events_list_event_2.group = events_list_group_1
+    events_list_event_2.meetupID = u'223599737'
+    events_list_event_2.description = u'<p>Merhaba,</p> <p><br/>Hadoop ile tan\u0131\u015fmak i\xe7in g\xfczel bir etkinlik yapmay\u0131 planl\u0131yoruz. (Java temelli olacakt\u0131r.)</p> <p><br/>Konu ba\u015fl\u0131klar\u0131:</p> <p>\u2022\xa0Hadoop Genel Anlat\u0131m</p> <p>\u2022\xa0Hadoop Kurulum ( YARN )</p> <p>\u2022\xa0Eclipse i\xe7in Ortam Haz\u0131rl\u0131\u011f\u0131 ve Maven ile kullan\u0131m\u0131</p> <p><br/>\u2022\xa0Word Count \xd6rne\u011fi\xa0</p> <p>\u2022\xa0Ve Di\u011fer \xd6rnekler</p> <p><br/>Sadece sanal makine olarak CentOS 6.6 kurulu olmas\u0131 yeterli olacakt\u0131r.</p>'
+    events_list_event_2.local_start = dateutil.parser.parse("2015-08-08T11:00:00")
+    events_list_event_2.local_end = dateutil.parser.parse("2015-08-08T11:00:00")
+    events_list_event_2.utc_offset = 10800L
+    events_list_event_2.is_applicable = True
+    events_list_event_2 = importer.save_or_locate(events_list_event_2)
+
+    events_list_event_2.hashtags.add(events_list_hashtag_1)
+
+    events_list_event_3 = Event()
+    events_list_event_3.name = u'HIKE - WEST FORK TRAIL ... Oak Creek (Sedona)'
+    events_list_event_3.event_url = u'http://www.meetup.com/phoenix-atheists/events/224381579/'
+    events_list_event_3.group = events_list_group_84
+    events_list_event_3.meetupID = u'224381579'
+    events_list_event_3.description = u'<p><img src="http://photos2.meetupstatic.com/photos/event/b/d/6/c/event_221328492.jpeghttp://photos1.meetupstatic.com/photos/event/b/d/1/2/event_221328402.jpeghttp://photos2.meetupstatic.com/photos/event/b/c/e/0/event_221328352.jpeghttp://photos4.meetupstatic.com/photos/event/b/c/6/8/event_221328232.jpeghttp://photos1.meetupstatic.com/photos/event/b/c/4/0/event_221328192.jpeghttp://photos1.meetupstatic.com/photos/event/1/5/2/4/event_221285412.jpeghttp://photos4.meetupstatic.com/photos/event/1/c/6/7/event_45787271.jpeg" /></p> <p>One of the top 10 trails in the U.S... the West Fork trail will usher you through a tremendous variety of natural wonders. Here, you can enjoy a "secret and magical forest" feel, as you meander along a shallow and perfectly clear creek that runs at the foot of towering canyon walls amid emerald evergreens and lush leafy trees.</p> <p><img src="http://photos1.meetupstatic.com/photos/event/1/c/c/1/event_45787361.jpeg" />
 </p> <p>There are a number of reasons why West Fork is the most popular trail of the Coconino National Forest. You\'ll know some of them once you\'ve strolled beside the pleasant little stream that ripples along the canyon floor and looked up, way up, at the dizzying cliffs that tower above it.</p> <p>As for the trail itself, it\'s an easy stroll, but you do have to cross the stream in a number of places. Usually, that involves negotiating a few strategically placed stepping stones or taking a couple of steps in shallow water. Some hikers will enjoy walking within the stream itself.</p> <p>Our hikes are generally at a pace conducive to social banter of interest to heathens, and allowing for time for photography of the local geology and wildlife. However, this will be an out-n-back with a time limit to be determined by the group. This will allow for hikers to go at their own pace and turn around at the agreed upon time. Expect this hike to last 3-4 hours.</p> <p>The Trailhead of the 
 West Fork Trail is at <i>The Call of the Canyon Day-Use Area</i>. This is set in a clearing next to a grassy meadow which in summer is filled with wildflowers of every color and frequented by humming birds and large butterflies.</p> <p>A path crosses Oak Creek and follows it downstream for a short distance, through an abandoned apple orchard, passing by the site of the ruins of the Mayhew Lodge with overgrown remnants of fireplaces, stone floors, and even the swimming pool. See below for historical discussion of the orchard and the resort.</p> <p>The official trail starts just beyond, near the West Fork confluence. The canyon is hundreds of feet deep and moderately narrow from the start, wooded, overgrown and shaded with many fallen trees and old logs, often lying in the stream way. The path crosses the creek many times and\xa0in places there are paths at both sides.</p> <p>Occasionally the creek has pools 3-5 feet deep which harbor trout and other fish although usually the water (i
 n summer) is only a few inches deep. The stream flows gently, and the hike is very pleasant and relaxing.\xa0Only occasional sunlight reaches the canyon floor so the trip is ideal for the hot summer months.</p> <p>Wildlife is quite abundant. Typical are butterflies, colorful birds, squirrels, lizards and snakes.</p> <p>Here are links to more info:</p> <p><a href="http://hikearizona.com/decoder.php?ZTN=147"><a href="http://hikearizona.com/decoder.php?ZTN=147" class="linkified">http://hikearizona.com/decoder.php?ZTN=147</a></a></p> <p><a href="http://www.americansouthwest.net/arizona/sedona/west_oak_creek.html"><a href="http://www.americansouthwest.net/arizona/sedona/west_oak_creek.html" class="linkified">http://www.americansouthwest.net/arizona/sedona/west_oak_creek.html</a></a></p> <p>Here are links to photos from our previous hikes to this destination:</p> <p>8/13/11</p> <p><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=2912701"><a href="http://www.
 meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=2912701" class="linkified">http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=2912701</a></a></p> <p>7/15/12</p> <p><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=9727282"><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=9727282" class="linkified">http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=9727282</a></a></p> <p>4/14/13</p> <p><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=14322972"><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=14322972" class="linkified">http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=14322972</a></a></p> <p>10/19/14</p> <p><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=25285272"><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=25285272" class="
 linkified">http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=25285272</a></a></p> <p>10/27/13</p> <p><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=18229792"><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=18229792" class="linkified">http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=18229792</a></a></p> <p>10/21/12</p> <p><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=11368012"><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=11368012" class="linkified">http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=11368012</a></a></p> <p>10/30/11</p> <p><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=4202602"><a href="http://www.meetup.com/phoenix-atheists/photos/all_photos/?photoAlbumId=4202602" class="linkified">http://www.meetup.com/phoenix-atheists/photos/all_photos/?pho
 toAlbumId=4202602</a></a></p> <p><b>HIKE SUMMARY:</b></p> <p><b>Distance</b>: &lt;6 miles TBD (timed)</p> <p><b>Time</b>: 3-5 hrs. TBD at time of hike.</p> <p><b>Difficulty</b>: easy</p> <p><b>Trail</b>: forest paths and stream crossings</p> <p><b>Elevation:</b> 5260 ft.</p> <p>change <b>:</b> 200ft.</p> <p><b>Parking</b>: paved parking lot near trailhead</p> <p><b>Tailhead GPS:</b>[masked] [masked]</p> <p>34\xb0[masked] -111\xb0[masked]</p> <p>34\xb0 59\'26.624" -111\xb0 44\'33.979"</p> <p>Entry <b>fees</b> : $9 per vehicle (up to 5 people), walk-in is $2 per person.</p> <p><b>Dogs</b>: OK leashed</p> <p><b>REMINDERS:</b></p> <p>Always carry and drink plenty of water!</p> <p>Sunscreen and insect repellant is advised.</p> <p>Supportive footwear is also advisable.</p> <p>Water shoes may be especially useful on this hike due to creek crossings.</p> <p>Have light rain gear available.</p> <p>(Scattered afternoon thunderstorms are common at high altitudes July \u2013 September.)</p> <p>S
 AFETY FIRST\u2026 we have no medical provisions . . . and be alert for \u201cpoison ivy\u201d.</p> <p><b>How to find us:</b></p> <p>Meet at <i>The Call of the Canyon Day-Use Area</i> on the west side of AZ 89A between mileposts 384 and 385... If lost or late, my cell is[masked]\u2026 but cell phone reception is poor throughout canyon.</p> <p><b>To get there...</b></p> <p>From the 101 &amp; I-17, take I-17 north about 83 miles to exit 298 for AZ-179 north to Sedona. Follow AZ-179 north about 15 miles through several traffic circles and turn right at the traffic circle for US Highway 89A. Then drive north 10.5 miles to the Call of the Canyon Day Use Area (between mileposts 384 &amp; 385) on the left (west) side of the road. Roads are 100% paved.</p> <p>\xa0Google says this parking lot is about 2 hr. from the intersection of the 101 and I-17. HOWEVER this location is very popular and especially so during the fall. EXPECT A FULL PARKING LOT and you may be PARKING ALONG THE ROAD\u2026 an
 d perhaps several hundred yards away. SO <b>PLAN EXTRA TIME</b> JUST FOR PARKING.</p> <p><b>MESSAGE FOR CARPOOLERS</b>:</p> <p>Carpooling can save gas and entry fees and also enhance the social experience. If you\u2019d like to carpool, you must contact others for arrangements. You could email members or post comments on this announcement page.</p> <p><b>Following the hike</b>\u2026 we will reconvene in Sedona at a location TBD for rehydration and lunch .</p> <p><b>HISTORY</b></p> <p>In the early 1880\'s, one of the pioneers traveling up Oak Creek Canyon noticed a rather level area on either side of the creek where the soil was deep and the temperature just right to grow apples and other fruit.</p> <p>The first pioneer to plant fruit trees at West Fork was C.S. (Bear) Howard. He sold his rights to John L.V. Thomas and his son and they expanded the orchard and also grew vegetables and other cash crops to sell to the lumberjacks in Flagstaff. The land was sold to the Mayhews in 1925.<
 /p> <p>Carl Mayhew expanded the original cabin and turned it into a hunting and fishing lodge \u2013 and a remote \u201cgetaway\u201d for early Hollywood stars and other notables, including President Hoover, Clark Gable, Susan Hayward, Cesar Romero, Jimmy Stewart, Walt Disney, and Maureen O\'Hara.</p> <p>During that time, the lodge was nearly self-sufficient with fruits from the orchard, fish from the creek, vegetables from plots planted near the orchard, and meat and eggs from chickens housed in a coop still seen today at the foot of the cliff near the remains of the lodge.</p> <p>The mystic beauty of the area inspired novelist Zane Grey to write Call of the Canyon here in the early 1920\'s. He reportedly stayed at the Mayhew Lodge during part of his sojourn here, as well as in a smaller cabin north of the orchard. The novel later inspired Sedona\'s first movie by the same name.</p> <p>The U. S. Forest Service acquired the property in 1969 as an historic site, only to have the lodg
 e burn down in 1980.</p> <p>Over time, the orchards at West Fork became known as the "Mayhew Orchard" on the west side of the creek, and the "Call of the Canyon Orchard" on the east side.</p> <p>Through the last half of the twentieth century, the ancient trees suffered increasing neglect, injury and decline. The irrigation ditch, which can still be seen slightly upslope from the Mayhew Orchard, slowly filled in with debris, fallen trees, and duff. Insects, woodpeckers, and flycatchers drilled thousands of holes in the bark, some in neat little rows. Storm damage, drought, and bears climbing to reach the fruit contributed to increasing numbers of dead and broken branches, where disease could find easy entry. In the last decades of the 1900\u2019s, the gnarled old trees were largely abandoned.</p> <p>In 2002, the <i>Friends of the Forest</i> created the Orchard Committee to begin caring for the trees. Initial work revolved around heavy pruning of dead and diseased limbs, suckers, and 
 crossed branches. As the work progressed, the orchard crew began slowly reducing the height of the trees, so that visitors (both human and animal) could reach the apples more easily, without climbing or damaging the trees. Some of the trees were easily thirty feet high at the outset. All visitors are welcome to pick the apples in the fall. To facilitate this and reduce damage to the trees, the Friends purchased several \u201capple-pickers\u201d on poles that visitors can check out at the entry booth.</p> <p><b>GEOLOGY</b></p> <p>The colorful eroded walls of the canyon record environmental conditions on the far western edge of the Pangea supercontinent[masked] million years ago.</p> <p>The Kaibab limestone on top is the youngest rock unit on the southern Colorado Plateau and caps the Mogollon Rim in the Sedona area (wherever basalt is absent). It was deposited in an open marine setting that became shallower and more restricted towards the east.</p> <p>The Toroweap formation underlies
  the Kaibab. We saw this combination at Walnut Canyon National Park.</p> <p>A green line often indicates this Toroweap layering above the Coconino Sandstone below. The golden buff-colored Coconino sandstone is pure quartz deposited in a migrating windblown sand dune environment.</p> <p>The lowermost rock deposits are the Sycamore Pass member of the Schnebly Hill Formation. The Schnebly Hill Formation records depositions at the margins of the Pedregosa Sea when it encroached from the southeast of Sedona. Briefly marine deposits were laid down (the narrow white layer, known as the Fort Apache Member, we saw at Chicken Point). Above that layer, as the Sea regressed, red, cross-stratified and ripple-laminated, sandstones were laid down from wind-blown deposits about 280 million years ago.</p> <p>Above it all are the youngest rocks exposed in the canyon - a series of <a href="http://en.wikipedia.org/wiki/Basalt">basalt</a> <a href="http://en.wikipedia.org/wiki/Lava_flow">lava flows</a> a
 bout 6 million years old form the east rim of the canyon.</p>'
+    events_list_event_3.local_start = dateutil.parser.parse("2015-08-09T09:45:00")
+    events_list_event_3.local_end = dateutil.parser.parse("2015-08-09T09:45:00")
+    events_list_event_3.utc_offset = -25200L
+    events_list_event_3.is_applicable = False
+    events_list_event_3 = importer.save_or_locate(events_list_event_3)
+
+    events_list_event_3.hashtags.add(events_list_hashtag_1)
+
+    events_list_event_4 = Event()
+    events_list_event_4.name = u'Checking out Cloudcroft'

[... 2614 lines stripped ...]