bahoo / progressive-events

Decisions get made by people who show up. Progressive Events is here to tell you about where you should show up.
GNU Affero General Public License v3.0
8 stars 2 forks source link

Create a system for scraping events from Meetup #6

Open bahoo opened 8 years ago

bahoo commented 8 years ago

Not all events, just some pre-ordained events. And there's update handling / merging, and... this might not be a fun ticket.

how I see it:

from core.models import Event

class MeetupEvent(models.Model):
    event = models.ForeignKey(Event)
    [ ... fields here ... ]

don't display that publicly, but make it a "holding pen' of sorts, and create and edit core.Event objects, from those.

Also think about how to we might import other events, from other sources. Could we consolidate code / code structure here, somehow?