A clean, minimal client to the Meetup.com API for retrieving Meetup events for the PythonKC group.
Example Usage
>>> from pythonkc_meetups import PythonKCMeetups >>> meetups = PythonKCMeetups(api_key='<your API key here>') >>> next_meetup = meetups.get_upcoming_events()[0] >>> next_meetup.name u'Hackathon!' >>> next_meetup.time datetime.datetime(2011, 8, 13, 10, 0, tzinfo=tzoffset(None, -18000)) >>> next_meetup.venue.name u"Salva O'Renick" >>> next_meetup.venue.lat, next_meetup.venue.lon (39.091053, -94.576996) >>> next_meetup.yes_rsvp_count 9 >>> next_meetup.event_url u'http://www.meetup.com/pythonkc/events/25940081/' >>> last_meetup = meetups.get_past_events()[0] >>> last_meetup.name u'Monthly Meetup: Google App Engine' >>> last_meetup.time datetime.datetime(2011, 7, 9, 14, 0, tzinfo=tzoffset(None, -18000)) >>> an_attendee = last_meetup.attendees[0] >>> an_attendee.name u'Steven Cummings' >>> an_attendee.photo.thumb_url u'http://photos1.meetupstatic.com/photos/member/2/e/f/5/thumb_16212021.jpeg' >>> last_meetup.photos[0].url u'http://photos1.meetupstatic.com/photos/event/1/7/0/d/600_47705901.jpeg'
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pythonkc-meetups-0.1.0.tar.gz.
File metadata
- Download URL: pythonkc-meetups-0.1.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99d22ea8ae20b0212b33e4129fb9204d8560ff6429902e9e7bd388011d42357a
|
|
| MD5 |
826ee96296ede7ad2083e5a21213eb48
|
|
| BLAKE2b-256 |
83cb592532486b07b05c2f241558f84708f0a59a2599de8d4a93829c6e593c1a
|