https://github.com/lovesh/event-crawler
Gets events from APIs of eventful, eventbrite and meetup, normalizes them to a particular format and stores them in MongoDB
https://github.com/lovesh/event-crawler
Last synced: over 1 year ago
JSON representation
Gets events from APIs of eventful, eventbrite and meetup, normalizes them to a particular format and stores them in MongoDB
- Host: GitHub
- URL: https://github.com/lovesh/event-crawler
- Owner: lovesh
- Created: 2014-11-13T22:06:04.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-11-13T22:19:23.000Z (over 11 years ago)
- Last Synced: 2025-01-30T21:20:02.281Z (over 1 year ago)
- Language: Scala
- Size: 211 KB
- Stars: 1
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Event-Crawler
=============
Gets events from APIs of eventful, eventbrite and meetup, normalizes them to a particular format and stores them in MongoDB.
This was my first scala project. To use it type on the shell
`sbt console`
then on the console
```scala
val eg = new crawler.EventGetter("eventbrite") // get ready for downloading the events of eventbrite, 2 other acceptable parameters are eventful and meetup
val events = eg.getEvents() // gets events, it might take a while because it needs to get all the events
eg.storeEvents() // save events in MongoDB
```