Search code examples
pythonpython-2.7pivotaltracker

How to use the PivotalTracker API with Python 2.7


I am trying to use the PivotalTracker API to get all the stories from an epic. I am very lost on where to begin. I looked at the samples, but they are using cURL, not python. I also stumbled upon the pytracker module but it is 4 years old and is obsolete as PivotalTracker has switched over from XML to JSON during that time. Again I'm very lost on where to start, but appreciate any guidance you have to offer, thanks!


Solution

  • So I ended up installing the Requests module for Python and managed to make the cURL requests through that. Here is how to do it: https://stackoverflow.com/a/25797678/1536101