├── .DS_Store
├── intro.mp4
├── outro.mp4
├── BotTuber.png
├── config.py
├── requirements.txt
├── setup_google.py
├── instalooter_test.py
├── .github
└── ISSUE_TEMPLATE
│ ├── feature_request.md
│ └── bug_report.md
├── instaloader_test.py
├── Credits
├── LICENSE
├── Google.py
├── upload_ytvid.py
├── scrape_videos.py
├── CODE_OF_CONDUCT.md
├── README.md
├── make_compilation.py
└── botTuber.py
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/.DS_Store
--------------------------------------------------------------------------------
/intro.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/intro.mp4
--------------------------------------------------------------------------------
/outro.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/outro.mp4
--------------------------------------------------------------------------------
/BotTuber.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/BotTuber.png
--------------------------------------------------------------------------------
/config.py:
--------------------------------------------------------------------------------
1 | IG_USERNAME = "example_username"
2 | IG_PASSWORD = "example_password"
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | google_api_python_client==2.36.0
2 | google_auth_oauthlib==0.4.6
3 | instaloader==4.5.5
4 | instalooter==2.4.4
5 | moviepy==1.0.3
6 | protobuf==3.14.0
7 | python_dateutil==2.8.1
8 | schedule==0.6.0
9 | pyffmpeg==2.1.0
10 |
--------------------------------------------------------------------------------
/setup_google.py:
--------------------------------------------------------------------------------
1 | import datetime
2 | from Google import Create_Service
3 | from googleapiclient.http import MediaFileUpload
4 |
5 | # Leave Unchanged
6 | CLIENT_SECRET_FILE = 'secret.json'
7 | API_NAME = 'youtube'
8 | API_VERSION = 'v3'
9 | SCOPES = ['https://www.googleapis.com/auth/youtube.upload']
10 |
11 | # setup_google.py allows user to log into
12 | service = Create_Service(CLIENT_SECRET_FILE, API_NAME, API_VERSION, SCOPES)
13 |
--------------------------------------------------------------------------------
/instalooter_test.py:
--------------------------------------------------------------------------------
1 | from instalooter.looters import ProfileLooter
2 | import datetime
3 | import dateutil.relativedelta
4 |
5 | # instalooter_test downloads videos posted by daquan in the last month
6 |
7 | # Instanciate
8 | looter = ProfileLooter("daquan", videos_only=True, template="{id}-{username}-{width}-{height}")
9 | looter.login("", "")
10 |
11 | today = datetime.date.today()
12 | thismonth = (today, today - dateutil.relativedelta.relativedelta(days=28))
13 |
14 | looter.download('./Memes_December_4', media_count=50, timeframe=thismonth)
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Feature request
3 | about: Suggest an idea for this project
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Is your feature request related to a problem? Please describe.**
11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12 |
13 | **Describe the solution you'd like**
14 | A clear and concise description of what you want to happen.
15 |
16 | **Describe alternatives you've considered**
17 | A clear and concise description of any alternative solutions or features you've considered.
18 |
19 | **Additional context**
20 | Add any other context or screenshots about the feature request here.
21 |
--------------------------------------------------------------------------------
/instaloader_test.py:
--------------------------------------------------------------------------------
1 | from datetime import datetime
2 | import instaloader
3 |
4 | # Do not change
5 | # instaloader downloads some posts under the hashtag urbanphotography
6 |
7 | L = instaloader.Instaloader()
8 |
9 | posts = instaloader.Hashtag.from_name(L.context, "urbanphotography").get_posts()
10 |
11 | SINCE = datetime(2020, 5, 10) # further from today, inclusive
12 | UNTIL = datetime(2020, 5, 11) # closer to today, not inclusive
13 |
14 | k = 0 # initiate k
15 | #k_list = [] # uncomment this to tune k
16 |
17 | for post in posts:
18 | postdate = post.date
19 |
20 | if postdate > UNTIL:
21 | continue
22 | elif postdate <= SINCE:
23 | k += 1
24 | if k == 50:
25 | break
26 | else:
27 | continue
28 | else:
29 | L.download_post(post, "#urbanphotography")
30 | # if you want to tune k, uncomment below to get your k max
31 | #k_list.append(k)
32 | k = 0 # set k to 0
33 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug report
3 | about: Create a report to help us improve
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Describe the bug**
11 | A clear and concise description of what the bug is.
12 |
13 | **To Reproduce**
14 | Steps to reproduce the behavior:
15 | 1. Go to '...'
16 | 2. Click on '....'
17 | 3. Scroll down to '....'
18 | 4. See error
19 |
20 | **Expected behavior**
21 | A clear and concise description of what you expected to happen.
22 |
23 | **Screenshots**
24 | If applicable, add screenshots to help explain your problem.
25 |
26 | **Desktop (please complete the following information):**
27 | - OS: [e.g. iOS]
28 | - Browser [e.g. chrome, safari]
29 | - Version [e.g. 22]
30 |
31 | **Smartphone (please complete the following information):**
32 | - Device: [e.g. iPhone6]
33 | - OS: [e.g. iOS8.1]
34 | - Browser [e.g. stock browser, safari]
35 | - Version [e.g. 22]
36 |
37 | **Additional context**
38 | Add any other context about the problem here.
39 |
--------------------------------------------------------------------------------
/Credits:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2021 Nathan Ang
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2022 pradeep jhuriya
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/Google.py:
--------------------------------------------------------------------------------
1 | import pickle
2 | import os
3 | from google_auth_oauthlib.flow import Flow, InstalledAppFlow
4 | from googleapiclient.discovery import build
5 | from googleapiclient.http import MediaFileUpload, MediaIoBaseDownload
6 | from google.auth.transport.requests import Request
7 |
8 | def Create_Service(client_secret_file, api_name, api_version, *scopes):
9 | CLIENT_SECRET_FILE = client_secret_file
10 | API_SERVICE_NAME = api_name
11 | API_VERSION = api_version
12 | SCOPES = [scope for scope in scopes[0]]
13 | print(SCOPES)
14 |
15 | cred = None
16 |
17 | pickle_file = f'token_{API_SERVICE_NAME}_{API_VERSION}.pickle'
18 | # print(pickle_file) # Do not change
19 |
20 | if os.path.exists(pickle_file):
21 | with open(pickle_file, 'rb') as token:
22 | cred = pickle.load(token)
23 |
24 | if not cred or not cred.valid:
25 | if cred and cred.expired and cred.refresh_token:
26 | cred.refresh(Request())
27 | else:
28 | flow = InstalledAppFlow.from_client_secrets_file(CLIENT_SECRET_FILE, SCOPES)
29 | cred = flow.run_local_server()
30 |
31 | with open(pickle_file, 'wb') as token:
32 | pickle.dump(cred, token)
33 |
34 | try:
35 | service = build(API_SERVICE_NAME, API_VERSION, credentials=cred)
36 | print(API_SERVICE_NAME, 'service created successfully')
37 | return service
38 | except Exception as e:
39 | print('Unable to connect.')
40 | print(e)
41 | return None
42 |
43 | def convert_to_RFC_datetime(year=1900, month=1, day=1, hour=0, minute=0):
44 | dt = datetime.datetime(year, month, day, hour, minute, 0).isoformat() + 'Z'
45 | return dt
46 |
--------------------------------------------------------------------------------
/upload_ytvid.py:
--------------------------------------------------------------------------------
1 | import datetime
2 | from googleapiclient.http import MediaFileUpload
3 |
4 | def uploadYtvid(VIDEO_FILE_NAME='',
5 | title='Intro Video!',
6 | description=':) ',
7 | tags=[],
8 | modeAM = "A",
9 | googleAPI=None):
10 |
11 | now = datetime.datetime.now()
12 | upload_date_time = datetime.datetime(now.year, now.month, now.day, now.hour, now.minute, int(now.second)).isoformat() + '.000Z'
13 |
14 | request_body = {
15 | 'snippet': {
16 | 'categoryId': 23,
17 | 'title': title,
18 | 'description': description,
19 | 'tags': tags
20 | },
21 | 'status': {
22 | 'privacyStatus': 'public',
23 | 'selfDeclaredMadeForKids': False,
24 | },
25 | 'notifySubscribers': False
26 | }
27 |
28 | mediaFile = MediaFileUpload(VIDEO_FILE_NAME, chunksize=-1, resumable=True)
29 |
30 | response_upload = googleAPI.videos().insert(
31 | part='snippet,status',
32 | body=request_body,
33 | media_body=mediaFile
34 | ).execute()
35 |
36 | def thumbnail_upload():
37 | googleAPI.thumbnails().set(
38 | videoId=response_upload.get('id'),
39 | media_body=MediaFileUpload('thumbnail.png')
40 | ).execute()
41 |
42 | if modeAM == "A":
43 | thumbnail_upload()
44 | elif modeAM == "M":
45 | wanna_thum = input("[Q] Do you wanna upload thumbnail.png?(y/N):").strip()
46 | if wanna_thum.lower() == "y":
47 | thumbnail_upload()
48 | else:
49 | print("[i] No Custom thumbnail uploaded.")
50 |
51 | print("Upload Successful!")
52 |
53 | if __name__ == "__main__":
54 | uploadYtvid(VIDEO_FILE_NAME='./intro_vid.mp4')
55 |
--------------------------------------------------------------------------------
/scrape_videos.py:
--------------------------------------------------------------------------------
1 | import datetime
2 | import dateutil.relativedelta
3 | from instalooter.looters import InstaLooter, ProfileLooter
4 | import instaloader
5 | from instalooter.cli.login import login
6 |
7 | # scrape_videos.py scrapes all the videos from pages we are following
8 | def scrapeVideos(username = "",
9 | password = "",
10 | output_folder = "",
11 | modeAM = "",
12 | days = 1):
13 |
14 | print("Starting Scraping")
15 |
16 | L = instaloader.Instaloader()
17 |
18 | # Login or load session for loader
19 | L.login(username, password)
20 | profile = instaloader.Profile.from_username(L.context, username)
21 | following = profile.get_followees()
22 | print(following)
23 |
24 | today = datetime.date.today()
25 | timeframe = (today, today - dateutil.relativedelta.relativedelta(days=days))
26 |
27 | for profile in following:
28 | acc = profile.username
29 | # Scrap videos from this account or not
30 |
31 | def scrape_videos_fn():
32 | looter = ProfileLooter(acc, videos_only=True, dump_json=True, template="{id}-{username}-{width}-{height}")
33 | if not looter.logged_in():
34 | looter.login(username, password)
35 | print("[+]Scraping From Account: " + acc)
36 |
37 | try:
38 | # videos downloaded
39 | numDowloaded = looter.download(output_folder, media_count=30, timeframe=timeframe)
40 | print("[+]Downloaded " + str(numDowloaded) + " videos successfully")
41 | print("")
42 |
43 | except Exception as e:
44 | # error Occcured
45 | print("[+]Skipped acc " + acc + "because of")
46 | print(e)
47 |
48 | if modeAM == "M":
49 | scrap_or_Skip_video = input(f"[Q]Do you want to scrape from {acc}'s profile?(Y/n/q):").strip().lower()
50 | if scrap_or_Skip_video == "n":
51 | print("[+]Skiped Scraping")
52 | continue
53 | if scrap_or_Skip_video == "q":
54 | print("[+]Exit Scrapping Loop")
55 | break
56 | else:
57 | scrape_videos_fn()
58 | elif modeAM == "A":
59 | scrape_videos_fn()
60 |
61 |
62 | if __name__ == "__main__":
63 | scrapeVideos(username = "chewymemes_v3",
64 | password = "",
65 | modeAM = "A",
66 | output_folder = "./Memes_December_4")
67 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | We as members, contributors, and leaders pledge to make participation in our
6 | community a harassment-free experience for everyone, regardless of age, body
7 | size, visible or invisible disability, ethnicity, sex characteristics, gender
8 | identity and expression, level of experience, education, socio-economic status,
9 | nationality, personal appearance, race, religion, or sexual identity
10 | and orientation.
11 |
12 | We pledge to act and interact in ways that contribute to an open, welcoming,
13 | diverse, inclusive, and healthy community.
14 |
15 | ## Our Standards
16 |
17 | Examples of behavior that contributes to a positive environment for our
18 | community include:
19 |
20 | * Demonstrating empathy and kindness toward other people
21 | * Being respectful of differing opinions, viewpoints, and experiences
22 | * Giving and gracefully accepting constructive feedback
23 | * Accepting responsibility and apologizing to those affected by our mistakes,
24 | and learning from the experience
25 | * Focusing on what is best not just for us as individuals, but for the
26 | overall community
27 |
28 | Examples of unacceptable behavior include:
29 |
30 | * The use of sexualized language or imagery, and sexual attention or
31 | advances of any kind
32 | * Trolling, insulting or derogatory comments, and personal or political attacks
33 | * Public or private harassment
34 | * Publishing others' private information, such as a physical or email
35 | address, without their explicit permission
36 | * Other conduct which could reasonably be considered inappropriate in a
37 | professional setting
38 |
39 | ## Enforcement Responsibilities
40 |
41 | Community leaders are responsible for clarifying and enforcing our standards of
42 | acceptable behavior and will take appropriate and fair corrective action in
43 | response to any behavior that they deem inappropriate, threatening, offensive,
44 | or harmful.
45 |
46 | Community leaders have the right and responsibility to remove, edit, or reject
47 | comments, commits, code, wiki edits, issues, and other contributions that are
48 | not aligned to this Code of Conduct, and will communicate reasons for moderation
49 | decisions when appropriate.
50 |
51 | ## Scope
52 |
53 | This Code of Conduct applies within all community spaces, and also applies when
54 | an individual is officially representing the community in public spaces.
55 | Examples of representing our community include using an official e-mail address,
56 | posting via an official social media account, or acting as an appointed
57 | representative at an online or offline event.
58 |
59 | ## Enforcement
60 |
61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
62 | reported to the community leaders responsible for enforcement at
63 | .
64 | All complaints will be reviewed and investigated promptly and fairly.
65 |
66 | All community leaders are obligated to respect the privacy and security of the
67 | reporter of any incident.
68 |
69 | ## Enforcement Guidelines
70 |
71 | Community leaders will follow these Community Impact Guidelines in determining
72 | the consequences for any action they deem in violation of this Code of Conduct:
73 |
74 | ### 1. Correction
75 |
76 | **Community Impact**: Use of inappropriate language or other behavior deemed
77 | unprofessional or unwelcome in the community.
78 |
79 | **Consequence**: A private, written warning from community leaders, providing
80 | clarity around the nature of the violation and an explanation of why the
81 | behavior was inappropriate. A public apology may be requested.
82 |
83 | ### 2. Warning
84 |
85 | **Community Impact**: A violation through a single incident or series
86 | of actions.
87 |
88 | **Consequence**: A warning with consequences for continued behavior. No
89 | interaction with the people involved, including unsolicited interaction with
90 | those enforcing the Code of Conduct, for a specified period of time. This
91 | includes avoiding interactions in community spaces as well as external channels
92 | like social media. Violating these terms may lead to a temporary or
93 | permanent ban.
94 |
95 | ### 3. Temporary Ban
96 |
97 | **Community Impact**: A serious violation of community standards, including
98 | sustained inappropriate behavior.
99 |
100 | **Consequence**: A temporary ban from any sort of interaction or public
101 | communication with the community for a specified period of time. No public or
102 | private interaction with the people involved, including unsolicited interaction
103 | with those enforcing the Code of Conduct, is allowed during this period.
104 | Violating these terms may lead to a permanent ban.
105 |
106 | ### 4. Permanent Ban
107 |
108 | **Community Impact**: Demonstrating a pattern of violation of community
109 | standards, including sustained inappropriate behavior, harassment of an
110 | individual, or aggression toward or disparagement of classes of individuals.
111 |
112 | **Consequence**: A permanent ban from any sort of public interaction within
113 | the community.
114 |
115 | ## Attribution
116 |
117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118 | version 2.0, available at
119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120 |
121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct
122 | enforcement ladder](https://github.com/mozilla/diversity).
123 |
124 | [homepage]: https://www.contributor-covenant.org
125 |
126 | For answers to common questions about this code of conduct, see the FAQ at
127 | https://www.contributor-covenant.org/faq. Translations are available at
128 | https://www.contributor-covenant.org/translations.
129 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | #### Graphql error in instalooter not been resolved yet!
2 |
3 | # Fully Automated Youtube Channel
4 |
5 | ```
6 | ░█▀▀█ █▀▀█ ▀▀█▀▀ ▀▀█▀▀ █──█ █▀▀▄ █▀▀ █▀▀█
7 | ░█▀▀▄ █──█ ──█── ─░█── █──█ █▀▀▄ █▀▀ █▄▄▀
8 | ░█▄▄█ ▀▀▀▀ ──▀── ─░█── ─▀▀▀ ▀▀▀─ ▀▀▀ ▀─▀▀
9 | 🄵🅄🄻🄻 🅈🄾🅄🅃🅄🄱🄴 🄲🄷🄰🄽🄽🄴🄻 🄰🅄🅃🄾🄼🄰🅃🄸🄾🄽 🅂🅄🄸🅃🄴
10 | ```
11 |
12 | [](https://github.com/sam5epi0l/BotTuber/issues)
13 | [](https://github.com/sam5epi0l/BotTuber/network)
14 | [](https://github.com/sam5epi0l/BotTuber/stargazers)
15 | [](https://github.com/sam5epi0l/BotTuber/blob/master/LICENSE)
16 |
17 |
18 | [](https://twitter.com/intent/tweet?text=Wow:&url=https%3A%2F%2Fgithub.com%2Fsam5epi0l%2FBotTuber)
19 | [](https://youtu.be/BbPErvcqXyw)
20 |
21 |
22 |
23 | Code to run a fully automated youtube that can scrape content, edit a compilation, and upload to youtube daily.
24 |
25 |
26 |
27 |
28 |
29 |
30 | # Features😶🌫️
31 |
32 | 1. Interactive Auto/Manual mode
33 | 2. Makes Compilation (Intro & Outro)
34 | 3. Auto Title, Description & Tags
35 | 4. Auto TimeStamps & Credits (Username & Caption from Video)
36 | 5. Edit description.txt when in manual mode
37 | 6. Add Watermark to final Video
38 |
39 | # Quick Start🐿️
40 |
41 | git clone https://github.com/sam5epi0l/BotTuber.git
42 | cd BotTuber
43 | # add instagram credentials in config.py
44 | # add YouTube API v3 credentials to googleAPI.json (check instructions)
45 | pip3 install -r requirements.txt
46 | python3 botTuber.py
47 |
48 | # Usage📄
49 |
50 | python3 botTuber.py -i # interactive mode
51 | python3 botTuber.py -a # Full automation
52 | python3 botTuber.py -m # manual mode
53 | python3 botTuber.py -h # help menu
54 |
55 | # Instructions✅
56 |
57 | 1. [Download](https://github.com/sam5epi0l/BotTuber.git) the Github Repository
58 |
59 | 2. Download and install [Python3](https://www.python.org/downloads/) and [pip](https://pip.pypa.io/en/stable/installing/) if necessary.
60 |
61 | 3. Install libraries with `pip3 install -r requirements.txt` or `python3 -m pip install -r requirements.txt` .
62 |
63 | 4. Get setup and create a Project with the Youtube API: https://developers.google.com/youtube/v3/quickstart/python
64 | Be sure to follow it carefully, as it won't work if you don't do this part right.
65 | Download your OATH file and name it as "googleAPI.json" in your project folder.
66 |
67 | 6. Create an instagram account and follow accounts you want to scrape from
68 |
69 | 7. Open config.py in a text editor and fill in instagram credentials
70 |
71 | - Note that you can edit variables inside botTuber.py in a text editor and things such as MAX_CLIP_LENGTH, Title, Description, Tags, etc..
72 |
73 | 8. In terminal/cmd, run `instalooter login` and `instaloader --login {YOUR_USERNAME}`. Follow the instructions to login.
74 |
75 | 9. Run `python3 botTuber.py` in your computer terminal (terminal or cmd). You have to sign in to your Youtube Account through the link the script will give you. It's going to ask you: "Please visit this URL to authorize this application:..." so you copy that link, paste it in your browser, and then sign into your Google account. Then paste the authentication code you get back into your terminal. It will then say "Starting Scraping" and sign into your instagram account.
76 |
77 | 10. Type "A" to run automated script or "M" to manually decide what to do at each step
78 |
79 | 11. Enjoy your fully automated youtube channel! :) Note that for uploading public videos, you have to complete an audit for the Youtube API. See the note in the [Google Documentation](https://developers.google.com/youtube/v3/docs/videos/insert). Without this, you can only post private videos, but they approve everyone. Have fun!
80 |
81 | ## Contributors ✨
82 |
83 | Thanks goes to these wonderful people who have improved the code and documentation to help this project grow. :
84 |
85 |
86 |
87 |
88 |
sam-sepiol 🖋 |
91 | nathan Ang 🖋 |
92 |