{"id":20244545,"url":"https://github.com/alextkdev/parser_instagram_and_youtube","last_synced_at":"2025-09-05T16:41:04.550Z","repository":{"id":243242907,"uuid":"811917043","full_name":"AlexTkDev/parser_Instagram_and_YouTube","owner":"AlexTkDev","description":"These two scripts allow you to download content from YouTube and Instagram","archived":false,"fork":false,"pushed_at":"2024-12-13T17:25:09.000Z","size":47,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-03T15:28:22.320Z","etag":null,"topics":["async-parser","instagram","instagram-scraper","parser","youtube-downloader"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AlexTkDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-07T14:57:55.000Z","updated_at":"2024-12-13T17:25:14.000Z","dependencies_parsed_at":"2024-12-13T18:23:44.878Z","dependency_job_id":"e6faaa6a-8247-46ef-8776-aa18b3000661","html_url":"https://github.com/AlexTkDev/parser_Instagram_and_YouTube","commit_stats":null,"previous_names":["alextkdev/parser_instagram_and_youtube"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/AlexTkDev/parser_Instagram_and_YouTube","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexTkDev%2Fparser_Instagram_and_YouTube","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexTkDev%2Fparser_Instagram_and_YouTube/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexTkDev%2Fparser_Instagram_and_YouTube/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexTkDev%2Fparser_Instagram_and_YouTube/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlexTkDev","download_url":"https://codeload.github.com/AlexTkDev/parser_Instagram_and_YouTube/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexTkDev%2Fparser_Instagram_and_YouTube/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273786849,"owners_count":25168202,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-05T02:00:09.113Z","response_time":402,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["async-parser","instagram","instagram-scraper","parser","youtube-downloader"],"created_at":"2024-11-14T09:15:58.754Z","updated_at":"2025-09-05T16:41:04.513Z","avatar_url":"https://github.com/AlexTkDev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## YouTube and Instagram Parsers\n\n### Overview\n\nThis project includes two scripts: one for downloading videos from YouTube and the other\nfor downloading photos from Instagram. Both scripts process URLs from the `urls.txt` file,\nwhere each URL points to a YouTube channel or Instagram profile.\n\n### Installation\n\n1. Ensure that you have Python 3.12.0 or later installed.\n2. Create and activate a virtual environment:\n   **For Windows**:\n   ```bash\n   python -m venv venv\n   venv\\Scripts\\activate\n   ```\n   **For Unix**:\n   ```bash\n   python -m venv venv\n   source venv/bin/activate\n   ```\n3. Install the required dependencies from the `requirements.txt` file:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n### Checking and Installing ffmpeg\n\nTo avoid warnings about `ffmpeg` not being found, you should install it. Follow the\ninstructions for your operating system:\n\n- **For macOS**: Use Homebrew:\n  ```bash\n  brew install ffmpeg\n  ```\n- **For Ubuntu/Debian**:\n  ```bash\n  sudo apt update\n  sudo apt install ffmpeg\n  ```\n- **For Windows**: Download and install `ffmpeg` from\n  the [official website](https://ffmpeg.org/download.html).\n\n### Usage\n\n#### `urls.txt` File\n\nAdd the YouTube channel URLs and Instagram profile URLs you want to process\nto the `urls.txt` file. Each URL should be on a new line. Example content:\n\n```\nhttps://www.instagram.com/diachenko.tattoo/\nhttps://www.youtube.com/@user-me5tu9kk1t\n```\n\n#### Running the YouTube Parser\n\nTo run the YouTube parser script, execute the following command:\n\n```bash\npython youtube_parser.py\n```\n\nThe script will process all URLs containing `youtube.com` or `youtu.be` and download videos from\nthe listed channels.\n\n#### Running the Instagram Parser\n\nTo run the Instagram parser script, use the following command:\n\n```bash\npython instagram_parser.py\n```\n\nThe script will process all URLs containing `instagram.com` and download photos from the listed\nprofiles.\n\n### Output\n\n- **YouTube Parser**: The downloaded videos are saved in folders named after the channel. Each\n  folder contains a `description.txt` file with channel information.\n- **Instagram Parser**: The photos are saved in folders named after the profile. Each folder\n  contains a `description.txt` file with profile information and a `photos.txt` file listing the\n  downloaded photo URLs.\n\n### Code Quality Check\n\nTo ensure the code follows PEP8 standards, use `pylint`. For example:\n\n```bash\npylint --disable=missing-module-docstring,missing-function-docstring,pointless-string-statement youtube_parser.py\n```\n\nYou can similarly check the Instagram script.\n\n### Note\n\nMake sure to use the scripts in compliance with the terms of service of YouTube and Instagram.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falextkdev%2Fparser_instagram_and_youtube","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falextkdev%2Fparser_instagram_and_youtube","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falextkdev%2Fparser_instagram_and_youtube/lists"}