Metadata-Version: 2.1
Name: YoutubeCommentPoster
Version: 0.3.0
Summary: A wrapper to comment on videos via your account!
Home-page: UNKNOWN
Author: KeinShin
Author-email: <ytcomments@ytcomments.com>
License: UNKNOWN
Keywords: python,youtube,scraper,youtube,comments,commentyoutubevideo
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: google-api-python-client (==2.17.0)
Requires-Dist: google-auth (==1.35.0)
Requires-Dist: google-auth-httplib2 (==0.1.0)
Requires-Dist: google-auth-oauthlib (==0.4.5)
Requires-Dist: googleapis-common-protos (==1.53.0)
Requires-Dist: requests (==2.26.0)

# Welcome to YouTube Comments

**Why do we use this?**

 **Ans**: This Wrapper is capable to posts comments on youtube videos of any channel

**Only posts comment?**

 **Ans** : No, it   also replies to a random comment


# Examples

```from ytcomment import Comment

comment=Comment(client_id="your google client id",
client_secret="your google client secret",
limit,
channel_id='channel id',
numberOfVideosToComment = 1
)

# Channel id is optional

# bydefault if channel id is not provided comment will be posted on channels subscribed by you

comment.insert_comment(text=text to comment,numberofCommentsToPost=1)
```


**Reply to a random comment**

```comment=Comment(client_id="your google auth client id",
client_secret="your google auth client secret",
channel_id="channel id")

comment.insert_comment(is_reply=True,apiKey=your google api key,number,numberOfCommentsToReply=1)
```





