
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
= Meetup API
== Developers
== Description Meetup API is a port of the official Python client released by Meetup for their API. This port provides an object based API to query or update Meetup data via pure Ruby. It hides the ugly HTTP/REST calls from your code.
The Meetup Python API client can be found at http://www.meetup.com/meetup_api/clients/
== External Dependencies
== Usage Examples Start by creating an instance of the Meetup object with your API key as the constructor argument. You can get your API key at http://www.meetup.com/meetup_api/key/
mu = MeetupApi::Client.new 'your_api_key'
Then, you can query the API directly by using one of the following methods:
mu.get_events HASH_PARAMS mu.get_rsvps HASH_PARAMS
Call the method using keyword args containing the parameters of the query (identical to parameters described on the main documentation page - http://www.meetup.com/meetup_api/docs/). For example, find all the events around zip 94108:
local_events = mu.get_events :zip => 94108
Another example, find the event with id 9348580 (the results method still returns an array, but it only has 1 element):
ruby_events = mu.get_events :id => 9348580
The returned value will be an object of type MeetupApi::ApiResponse. This object's property meta is a Hash containing all the metadata from the query results. The property results is an Array containing objects of type MeetupApi::Event or MeetupApi::Rsvp (depending which MeetupApi::Client method was used). These objects support additional methods that will make API calls to get more information (taking the MeetupApi::Client object as an argument to make the request). For example, take the ruby event from above and retrieve its RSVP list:
first_event = ruby_events.results.first rsvps = first_event.get_rsvps mu
Of course, if you just wanted to only get the RSVP's, you can simply call MeetupApi::Client#get_rsvps directly:
rsvps = mu.get_rsvps :event_id => 9348580
== To Do
FAQs
Unknown package
We found that BRIMIL01-meetup_api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.