{"id":23252842,"url":"https://github.com/blackcoder56/udownload","last_synced_at":"2025-07-31T06:33:49.408Z","repository":{"id":265946445,"uuid":"896930856","full_name":"BlackCoder56/udownload","owner":"BlackCoder56","description":"U-Download is a lightweight and efficient web application designed to simplify downloading YouTube videos and audio. Built with Django, U-Download offers a clean, user-friendly interface where users can paste a YouTube link, select their preferred format and quality, and download content seamlessly.","archived":false,"fork":false,"pushed_at":"2024-12-03T12:51:57.000Z","size":15,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T02:45:23.555Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BlackCoder56.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-12-01T16:51:28.000Z","updated_at":"2024-12-03T12:52:24.000Z","dependencies_parsed_at":"2024-12-01T18:22:45.485Z","dependency_job_id":"ecf7875e-703e-4fa0-ab8c-eb1b77a88e7d","html_url":"https://github.com/BlackCoder56/udownload","commit_stats":null,"previous_names":["blackcoder56/udownload"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BlackCoder56/udownload","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlackCoder56%2Fudownload","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlackCoder56%2Fudownload/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlackCoder56%2Fudownload/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlackCoder56%2Fudownload/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BlackCoder56","download_url":"https://codeload.github.com/BlackCoder56/udownload/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlackCoder56%2Fudownload/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267998418,"owners_count":24178541,"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-07-31T02:00:08.723Z","response_time":66,"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":[],"created_at":"2024-12-19T10:18:31.238Z","updated_at":"2025-07-31T06:33:49.378Z","avatar_url":"https://github.com/BlackCoder56.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# **udownload**\n\nU-Download is a Django-based web application that allows users to download YouTube videos in various formats and resolutions. The app is designed to provide a simple, intuitive interface for video downloading while leveraging Django's robust backend capabilities.\n\n---\n\n## **Features**\n\n- 🎥 **Download YouTube Videos**: Supports downloading videos in different resolutions (1080p, 720p, etc.).\n- 🎶 **Audio Extraction**: Option to download only the audio as MP3.\n- 🚀 **Fast and Reliable**: Built using Django for efficient backend processing.\n- 🌍 **User-Friendly Interface**: Clean, responsive UI for easy navigation and usage.\n- 🔒 **Safe and Secure**: Does not store any user data.\n\n---\n\n## **Installation**\n\nFollow these steps to set up and run the project locally.\n\n### **1. Clone the Repository**\n```bash\nhttps://github.com/BlackCoder56/udownload.git\ncd udownload\n\n\n```\n### **2. Set Up Virtual Enviroment ***\n```bash\n    python -m venv venv\n    source venv/bin/activate  # For Linux/macOS\n    venv\\Scripts\\activate     # For Windows\n\n```\n### **3. Install Dependencies ***\n```bash\n    pip install -r requirements.txt\n\n```\n### **4. Configure the Environment ***\n```env\n    SECRET_KEY=your-django-secret-key\n    DEBUG=True\n    ALLOWED_HOSTS=localhost, 127.0.0.1\n\n```\n### **5. Run Migrations ***\n```bash\n    python manage.py migrate\n\n```\n### **6. Start the Development Server**\n```bash\n    python manage.py runserver\n\n```\n### ***7. Access the App**\n```arduino\n    http://127.0.0.1:8000\n\n```\n### ***Usage**\n    1.Enter the URL of the YouTube video you want to download.\n    2. Select the format (video or audio) and resolution.\n    3. Click \"Download\" to start the process.\n\n### ***Technologies Used**\n    Backend: Django\n    Frontend: HTML, CSS, Bootstrap\n    API: pytube for interacting with YouTube\n    Database: SQLite (default, replaceable with PostgreSQL/MySQL)\n\n### ***Project Structure**\n    u-download/\n    │\n    ├── manage.py\n    ├── requirements.txt\n    ├── .env\n    ├── .gitignore\n    ├── README.md\n    ├── downloader/\n    │   ├── migrations/\n    │   ├── templates/\n    │   │   └── app/\n    │   │       └── index.html\n    │   ├── static/\n    │   │   ├── css/\n    │   │   ├── js/\n    │   │   └── images/\n    │   ├── views.py\n    │   ├── urls.py\n    │   ├── models.py\n    │   └── admin.py\n    └── settings/\n        ├── base.py\n        ├── development.py\n        └── production.py\n\n### ***Future Enhancements**\n    ✅ Add a download queue for batch downloads.\n    ✅ Support downloading entire YouTube playlists.\n    ✅ Allow users to choose custom file names for downloads.\n    ✅ Improve download speed with server-side optimizations.\n\n### ***License**\n    This project is licensed under the MIT License. See the LICENSE file for details.\n\n### ***Contributing**\nWe welcome contributions! If you'd like to contribute to this project, please follow these steps:\n    1. Fork the repository.\n    2. Create a new branch (feature-name).\n    3. Commit your changes.\n    4. Push your branch and open a pull request.\n\n### ***Contact**\n    Developer: Elisha alias BlackCoder56\n    Email: blackcoda56@gmail.com\n    GitHub: BlackCoder56\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackcoder56%2Fudownload","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblackcoder56%2Fudownload","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackcoder56%2Fudownload/lists"}