Skip to content

Latest commit

 

History

History
41 lines (35 loc) · 1.15 KB

README.md

File metadata and controls

41 lines (35 loc) · 1.15 KB

Meetup - API : Python implementation for fosscafe meetup

Setup/Execution Details are mentioned below.

  • Pip to install Meetup Api

    • Use pip to install meetup-api
       pip install meetup-api
  • Windows :

    • Setup Your meetup_api_key as environment variable
    • On powershell run
      $env:MEETUP_API_KEY = "< your meetup api key >"
    • Then type the following to run script.
    python fetch-meetup-details.py 
  • Linux :

    • Set environment variable as
     export MEETUP_API_KEY=<your meetup api key>
    • Run Python script as following:
    python fetch-meetup-details.py

Few important details :

  • Runs on Python3
  • To run on Python2, change print syntax. Rest should work fine.
  • Meetup URL name is hardcoded to "fosscafe".

Method Index

Upcoming Features