aboutsummaryrefslogtreecommitdiffstats
path: root/meetup
AgeCommit message (Collapse)Author
2018-04-13Ideas for functions to extract `Event`s from JSONTeddy Wing
Add a couple function skeletons. Write the beginning of a test for the function that parses a JSON string to a list of `Event`s. In order to do the test, needed to derive `Debug` and `PartialEq` on `Event`.
2018-04-12meetup: Create `Event` structTeddy Wing
Include some fields that seem interesting. Also leave a note that we'll want to create a new struct for `Venue` because this is a sub hash in the JSON response.
2018-04-12meetup: Add 'serde_json' crateTeddy Wing
For deserialising JSON from the API to a struct.
2018-04-12Add some test JSON from the Meetup APITeddy Wing
This comes from: https://api.meetup.com/find/upcoming_events?&sign=true&photo-host=public&page=20 Grabbed from the browser API console. We'll use this for writing unit tests.
2018-04-12Add a "meetup" library crate to communicate with the Meetup APITeddy Wing