Skip to content

KanpurFOSS/meetup_api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Meetup API

Alternate API to get events from the Meetup website. Send a POST request with the URL of the event page of the meetup group for which you want the information.

How to use

  • Install the requirements using pip install -r requirements.txt

  • Run the app using gunicorn -b localhost:8000 app:app

  • Send POST request using:

curl -X POST http://localhost:8000/get_events -d "url=https://www.meetup.com/pydelhi/events/"

Expected Resopnse

The API will return a JSON with all_events containing a list of all events. Example response is shown below:

{
    "all_events": [
        {
            "link": ,
            "title": ,
            "datetime": ,
            "datetime_str": ,
            "location":
        }
    ]
}

About

Alternate API to get events from the Meetup website

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages