
R interface to the Meetup GraphQL API
Install the CRAN version:
install.packages("meetupr")To install the development version from R-universe:
install.packages(
'meetupr',
repos = c(
'https://rladies.r-universe.dev',
'https://cloud.r-project.org'
)
)or from GitHub:
# install.packages("remotes")
remotes::install_github("rladies/meetupr")meetupr uses OAuth 2.0 for authentication with the Meetup API. The first time you run a meetupr function, you’ll be prompted to authorize the application in your browser. Your token will be cached for future sessions.
library(meetupr)
get_group_events("rladies-san-francisco", "past")## # A tibble: 65 × 23
## id title event_url created_time status date_time duration description
## <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 85320382 Intro… https://… 2012-10-03T… PAST 2012-10-… PT2H "Hello R-l…
## 2 101032462 R & C… https://… 2013-01-23T… PAST 2013-02-… PT3H "Hello R-l…
## 3 114068102 Tech … https://… 2013-04-12T… PAST 2013-04-… PT3H "Please RS…
## 4 116785522 R & C… https://… 2013-04-29T… PAST 2013-05-… PT2H "Hello R-l…
## 5 130214302 Satur… https://… 2013-07-18T… PAST 2013-07-… PT0S "For the n…
## 6 132414522 Compu… https://… 2013-07-31T… PAST 2013-09-… PT6H "Hello R-l…
## 7 142941582 Compu… https://… 2013-09-29T… PAST 2013-10-… PT5H "Let's get…
## 8 144067982 Compu… https://… 2013-10-05T… PAST 2013-10-… PT5H "Let's get…
## 9 149542642 Let's… https://… 2013-11-06T… PAST 2013-11-… PT0S "Many of u…
## 10 153657632 An Ev… https://… 2013-12-02T… PAST 2013-12-… PT1H30M "R-Ladies …
## # ℹ 55 more rows
## # ℹ 15 more variables: group_id <chr>, group_name <chr>, group_urlname <chr>,
## # venues_id <chr>, venues_name <chr>, venues_address <chr>,
## # venues_city <chr>, venues_state <chr>, venues_postal_code <chr>,
## # venues_country <chr>, venues_lat <dbl>, venues_lon <dbl>,
## # venues_venue_type <chr>, rsvps_count <int>, featured_event_photo_url <chr>
get_group_members("rladies-san-francisco")## # A tibble: 1,869 × 8
## id name member_url member_photo_url status role join_time
## <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 14534094 Gabriela de Quei… https://w… https://secure-… LEADER COOR… 2012-10-…
## 2 64513952 T. Libman https://w… https://secure-… ACTIVE MEMB… 2012-10-…
## 3 25902562 Maggie L. https://w… https://secure-… ACTIVE MEMB… 2012-10-…
## 4 2412055 Marsee Henon https://w… https://secure-… ACTIVE MEMB… 2012-10-…
## 5 11509157 Jessica Montoya https://w… https://secure-… ACTIVE MEMB… 2012-10-…
## 6 2920822 Benay Dara-Abrams https://w… https://secure-… ACTIVE MEMB… 2012-10-…
## 7 11405574 Eleanor https://w… https://secure-… ACTIVE MEMB… 2012-10-…
## 8 14796891 Jennifer Romanek https://w… https://secure-… ACTIVE MEMB… 2012-10-…
## 9 10790320 Member ID: #1079… https://w… https://secure-… ACTIVE MEMB… 2012-10-…
## 10 43420932 Milène Darnis https://w… https://secure-… ACTIVE MEMB… 2012-10-…
## # ℹ 1,859 more rows
## # ℹ 1 more variable: last_access_time <chr>
find_groups("R-Ladies") |>
dplyr::arrange(desc(founded_date))## # A tibble: 200 × 14
## id name urlname city state country lat lon memberships_count
## <chr> <chr> <chr> <chr> <chr> <chr> <dbl> <dbl> <int>
## 1 38288984 Happy T… happy-… Tokyo "" jp 35.7 140. 5
## 2 38287199 FRAUEN-… soulsi… Darm… "" de 49.9 8.64 1
## 3 38286172 Red Pil… dynami… Köln "" de 51.0 6.97 3
## 4 38274859 The Gol… meetup… Oslo "" no 59.9 10.8 2
## 5 38273149 Her Lip… mcdono… McDo… "GA" us 33.5 -84.0 11
## 6 38271904 Lonely … lonely… Riya… "" sa 24.6 46.8 0
## 7 38267718 R User … r-nvsu Mani… "" ph 14.6 121. 3
## 8 38261472 LA Limi… la-lim… Los … "CA" us 34.0 -118. 6
## 9 38258200 Entre N… mayore… Madr… "" es 40.4 -3.71 4
## 10 38252321 NuWang nuwang Paris "" fr 48.9 2.34 9
## # ℹ 190 more rows
## # ℹ 5 more variables: founded_date <dttm>, timezone <chr>, join_mode <chr>,
## # is_private <lgl>, membership_status <chr>
For Meetup Pro networks, note that user needs to be a pro network organizer to access the data.
# Get all groups in a pro network
pro_groups <- get_pro_groups("rladies")
# Get events from a pro network
pro_events <- get_pro_events("rladies", max_results = 10)We welcome contributions! Please see the contribution guidelines.
Please note that this project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.