Obsei: Missing YouTube dislike count?

Dear Dev Community!

Obsei is an open-source low-code AI powered automation tool. Please refer Obsei introduction thread. I would like to share about our new integration: YouTube video comments.

As you are aware that YouTube is stopped showing video “…


This content originally appeared on DEV Community and was authored by Lalit Pagaria

Dear Dev Community!

Obsei is an open-source low-code AI powered automation tool. Please refer Obsei introduction thread. I would like to share about our new integration: YouTube video comments.

As you are aware that YouTube is stopped showing video "dislike" count. So how about analyzing it via sentiments of the comments?

With this integration you can easily perform following tasks:

  • getting alert on negative or spam comment on your video
  • aggregate all comments and extract insight to analyze reveal more detailed engagement metrics
  • fast and easy creation of ML review dataset
  • and many more

Please check the demo:
Image description

If you are Python person then this is all you need it:

from obsei.source.youtube_scrapper import YoutubeScrapperSource, YoutubeScrapperConfig

# initialize Youtube source config
source_config = YoutubeScrapperConfig(
    video_url="https://www.youtube.com/watch?v=uZfns0JIlFk", # Youtube video URL
    fetch_replies=True, # Fetch replies to comments
    max_comments=10, # Total number of comments and replies to fetch
    lookup_period="1Y", # Lookup period from current time, format: `<number><d|h|m|M|Y>` (day|hour|minute|month|year)
)

# initialize Youtube comments retriever
source = YoutubeScrapperSource()

# This will fetch information from configured source ie twitter, app store etc
source_response_list = source.lookup(source_config)

If like YAML then you would need following config:

source:
      _target_: obsei.source.youtube_scrapper.YoutubeScrapperSource
source_config:
      _target_: obsei.source.youtube_scrapper.YoutubeScrapperConfig
      video_url: "https://www.youtube.com/watch?v=uZfns0JIlFk"
      lookup_period: "1Y"
      max_comments: 10

Looking forward for your valuable feedback.

Repo URL: https://github.com/obsei/obsei


This content originally appeared on DEV Community and was authored by Lalit Pagaria


Print Share Comment Cite Upload Translate Updates
APA

Lalit Pagaria | Sciencx (2022-02-10T08:29:50+00:00) Obsei: Missing YouTube dislike count?. Retrieved from https://www.scien.cx/2022/02/10/obsei-missing-youtube-dislike-count/

MLA
" » Obsei: Missing YouTube dislike count?." Lalit Pagaria | Sciencx - Thursday February 10, 2022, https://www.scien.cx/2022/02/10/obsei-missing-youtube-dislike-count/
HARVARD
Lalit Pagaria | Sciencx Thursday February 10, 2022 » Obsei: Missing YouTube dislike count?., viewed ,<https://www.scien.cx/2022/02/10/obsei-missing-youtube-dislike-count/>
VANCOUVER
Lalit Pagaria | Sciencx - » Obsei: Missing YouTube dislike count?. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/02/10/obsei-missing-youtube-dislike-count/
CHICAGO
" » Obsei: Missing YouTube dislike count?." Lalit Pagaria | Sciencx - Accessed . https://www.scien.cx/2022/02/10/obsei-missing-youtube-dislike-count/
IEEE
" » Obsei: Missing YouTube dislike count?." Lalit Pagaria | Sciencx [Online]. Available: https://www.scien.cx/2022/02/10/obsei-missing-youtube-dislike-count/. [Accessed: ]
rf:citation
» Obsei: Missing YouTube dislike count? | Lalit Pagaria | Sciencx | https://www.scien.cx/2022/02/10/obsei-missing-youtube-dislike-count/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.