2

I'm using the official Python client for the YouTube API (called gdata.youtube.service.) My question: Is it thread-safe?

For example, I want to do both GetUserFavoritesFeed and GetYouTubeUserFeed at the same time in two parallel threads. Possible?

Ram Rachum
  • 84,019
  • 84
  • 236
  • 374

1 Answers1

0

It's probably safe if you create a separate API instance for each thread.

Ram Rachum
  • 84,019
  • 84
  • 236
  • 374