KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
shabi_download
★ 18
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
m4l-WavScope
:
Waveform visualizer device for Ableton Live
ai_mock_coding_interview_agent
:
No description available.
No248Basketball-League-Management-System
:
基于Springboot框架实现的篮球联盟管理系统,编程语言:Java ;数据库:MySQL;项目管理工具:Maven 前端技术:VUE、javascript、html、css、jQuery; 后端技术:Spring、SpringMvc、MyBatis,系统包含两种角色:管理员、用户
flower-shop
:
本网站时一个网上鲜花销售系统,来源于本人的毕业设计项目,开发目的是旨在为用户提供便捷、高效的在线鲜花购买服务,同时帮助商家高效管理订单和库存。系统具备完善的功能,包括但不限于鲜花展示模块、鲜花信息模块,能让顾客清晰浏览各类鲜花的品种、颜色、价格、花语等详细信息。拥有便捷的购物车功能,方便消费者添加、删除和修改购买意向的鲜花商品。订单管理系统可实现从下单、支付到订单跟踪等一系列流程的高效处理。用户管理模块确保了商家和消费者的信息安全与便捷操作,商家可对店铺信息、鲜花库存等进行管理,消费者可对个人资料和购买历史进行查看与编辑。 本项目后端基于 Django 框架,前端基于Vue框架,希望能打造一个稳定、可靠且易于扩展的鲜花销售系统,满足鲜花市场的线上交易需求。
Streamlit-OpenAI-Chatbot
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
shabi_download
?
Download (.md)
# shabi_download Here is a Python script for a simple terminal-based download manager named Shabi Download Manager that can handle both single and multiple file downloads. It utilizes multithreading to increase download speed and provides a graphical progress bar in the terminal using the tqdm library. ## Features: Single or Multiple Downloads: Choose to download either a *single* file or *multiple* files at once. Multithreading: Increase download speeds by downloading multiple files concurrently. Progress Visualization: Uses tqdm to show a progress bar for each file, as well as overall progress.   ### Requirements: * Python 3.x * requests library: For handling HTTP requests. * tqdm library: For showing download progress in the terminal. You can install the required libraries using: ```bash pip install requests tqdm ``` ### Usage: This script can be run from the terminal with different modes: #### To download a single file: ```bash python3 shabi_download_manager.py 1 --urls https://example.com/file.zip --threads 20 --directory downloads or shabi_download 1 --urls 'https://dl3.linkro.info/Movies6/2024/The.Substance.2024/The.Substance.2024.1080p.WEB-DL.DD5.1.H.264.FLUX.ZarFilm.mkv?md5=u3O70cYVRfbpklais-gJYQ&u=820535&expires=1731421607' --threads 20 --directory downloads ``` #### To download multiple files concurrently: * Note: You can add your link on the link.txt after that this commandline read from the file ```bash python3 shabi_download_manager.py 2 --threads 20 --directory downloads or shabi_download 2 --threads 20 --directory downloads ``` #### binary file ```bash cp shabi_download /usr/bin/ shabi_download -h shabi_download -h usage: shabi_download [-h] [--urls URLS [URLS ...]] [--threads THREADS] [--directory DIRECTORY] [--resume] mode Shabi Download manager. positional arguments: mode 1 for single link, 2 for multiple links options: -h, --help show this help message and exit --urls URLS [URLS ...] URL(s) to download --threads THREADS Number of concurrent threads --directory DIRECTORY Directory to save downloaded files --resume Resume the download if interrupted ``` Arguments: * mode: Specify 1 for single link or 2 for multiple links. * --urls: Provide the URL(s) to download. * --threads: (Optional) Set the number of concurrent threads for multiple downloads (default is 4). * --directory: (Optional) Directory to save downloaded files (default downloads). * --resume Resume the download if interrupted Feel free to use and modify it for your personal needs. If you have any questions or need further customization, let me know!