https://github.com/manrueda/meetup-crawler
Pluggable meetup crawler
https://github.com/manrueda/meetup-crawler
crawlers meetup
Last synced: 3 months ago
JSON representation
Pluggable meetup crawler
- Host: GitHub
- URL: https://github.com/manrueda/meetup-crawler
- Owner: manrueda
- Created: 2017-02-13T14:27:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-17T01:09:10.000Z (over 8 years ago)
- Last Synced: 2025-01-10T21:30:16.427Z (9 months ago)
- Topics: crawlers, meetup
- Language: JavaScript
- Size: 13.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Meetup Crawler
This is a crawler that search all the next events of all the events under a set of categories and the location.
## API
This module exports a simple function that recieve a `options` object and return a `Promise` with an array of events.
### `options` object
* key: API key.
* category: Comma separeted list of categories to search for.
* country: Country code to search for (ex: ar).
* lon: Longitude to center the radius of search.
* lat: Latitude to center the radius of search.
* radius: Radius on miles to search.### Returned `event` object
* id: Unique meetup event ID
* name: Event name
* total_capacity: Event people capacity
* time: Date and time of the event
* attendees: Number of confirmed attendees
* waitinglist: Number of people waiting in the list
* location: Venue information
* name: Venue name
* address: Venue address
* city: City of the Venue
* country: Country of the Venue
* link: Link to the event
* description: Description of the event
* visibility: Visibility of the event
* meetup:
* name: Meetup that host this event
* link: Link the the meetup that host this event```json
{
"id":"",
"name": "",
"total_capacity": "",
"time": "",
"attendees": "",
"waitinglist": "",
"location" : {
"name": "",
"address": "",
"city": "",
"country": ""
},
"link": "",
"description": "",
"visibility": "",
"meetup": {
"name": "",
"link": ""
}
}
```