77[ ![ License] ( https://img.shields.io/github/license/Arrowar/StreamingCommunity?logo=gnu&logoColor=white&labelColor=2d3748&color=e53e3e&style=for-the-badge )] ( https://github.com/Arrowar/StreamingCommunity/blob/main/LICENSE )
88
99## 💝 Support the Project
10- [ ![ Donate PayPal] ( https://img.shields.io/badge/💳_Donate-PayPal-00457C?style=for-the-badge&logo=paypal&logoColor=white&labelColor=2d3748 )] ( https://www.paypal.com/donate/?hosted_button_id=UXTWMT8P6HE2C )
10+ <a href =' https://ko-fi.com/E1E11LVC83 ' target =' _blank ' >
11+ <img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi4.png?v=6' border='0' alt='Buy Me a Coffee at ko-fi.com' />
12+ </a >
1113
1214## 🚀 Download & Install
1315[ ![ Windows] ( https://img.shields.io/badge/🪟_Windows-0078D4?style=for-the-badge&logo=windows&logoColor=white&labelColor=2d3748 )] ( https://github.com/Arrowar/StreamingCommunity/releases/latest/download/StreamingCommunity_win.exe )
2426---
2527
2628## 📖 Table of Contents
27- - [ Installation] ( #manual-installation )
28- - [ Quick Start] ( #quick-start )
29- - [ Downloaders] ( #downloaders )
30- - [ Configuration] ( #configuration )
31- - [ Login] ( .github/.site/login.md )
32- - [ Usage Examples] ( #usage-examples )
33- - [ Global Search] ( #global-search )
34- - [ Advanced Features] ( #advanced-options )
35- - [ Deployment] ( #docker )
36- - [ Tutorials] ( #tutorials )
37- - [ Related Projects] ( #useful-project )
29+ - ⚙️ [ Installation] ( #installation )
30+ - 🚀 [ Quick Start] ( #quick-start )
31+ - 📥 [ Downloaders] ( #downloaders )
32+ - 🛠️ [ Configuration] ( #configuration )
33+ - 🔐 [ Login] ( .github/.site/login.md )
34+ - 🌐 [ Domain] ( https://arrowar.github.io/StreamingCommunity )
35+ - 💡 [ Usage Examples] ( #usage-examples )
36+ - 🔍 [ Global Search] ( #global-search )
37+ - 🧩 [ Advanced Features] ( #advanced-options )
38+ - 🐳 [ Deployment] ( #docker )
39+ - 🎓 [ Tutorials] ( #tutorials )
40+ - 🔗 [ Related Projects] ( #useful-project )
3841
3942---
4043
41- ## Manual Installation
44+ ## Installation
4245
43- <summary >⚙️ Python Dependencies</summary >
46+ ### Prerequisites
47+ Make sure you have Python installed on your system:
48+ - ** Windows** : Download from [ python.org] ( https://python.org ) or install via Microsoft Store
49+ - ** Linux** : ` sudo apt install python3 python3-pip ` (Ubuntu/Debian) or equivalent for your distro
50+ - ** MacOS** : ` brew install python3 ` or download from [ python.org] ( https://python.org )
4451
45- #### On Windows:
46-
47- ``` powershell
52+ ### Dependencies
53+ ``` bash
54+ # Windows
4855pip install -r requirements.txt
49- ```
5056
51- #### On Linux/MacOS:
52-
53- ``` bash
57+ # Linux/MacOS
5458pip3 install -r requirements.txt
55- # or alternatively:
56- python3 -m pip install -r requirements.txt
5759```
5860
59- <detail >
60- <summary > Update </summary >
61-
62- ### On Windows:
63-
64- ``` powershell
61+ ### Update
62+ ``` bash
63+ # Windows
6564python update.py
66- ```
6765
68- ### On Linux/MacOS:
69-
70- ``` bash
66+ # Linux/MacOS
7167python3 update.py
7268```
7369
7470---
7571
7672## Quick Start
7773
78- After installing via pip, just run:
74+ ** Via pip installation: **
7975``` bash
8076StreamingCommunity
8177```
82- to start the application.
83-
84- Run the script:
85- ``` bash
86- python run_streaming.py
87- ```
8878
8979** Manual execution:**
90-
91- ** Windows:**
92- ``` powershell
80+ ``` bash
81+ # Windows
9382python test_run.py
94- ```
9583
96- ** Linux/MacOS:**
97- ``` bash
84+ # Linux/MacOS
9885python3 test_run.py
9986```
10087
@@ -117,7 +104,7 @@ downloader = HLS_Downloader(
117104downloader.download()
118105```
119106
120- See [ HLS example] ( ./Test/EasyDownload //HLS.py ) for complete usage.
107+ See [ HLS example] ( ./Test/Downloads //HLS.py ) for complete usage.
121108
122109<summary >📽️ MP4</summary >
123110
@@ -134,7 +121,7 @@ downloader = MP4_downloader(
134121downloader.download()
135122```
136123
137- See [ MP4 example] ( ./Test/EasyDownload /MP4.py ) for complete usage.
124+ See [ MP4 example] ( ./Test/Downloads /MP4.py ) for complete usage.
138125
139126<summary >🧲 TOR</summary >
140127
@@ -150,7 +137,7 @@ client.add_magnet_link("magnet:?xt=urn:btih:example_hash&dn=example_name", save_
150137client.start_download()
151138```
152139
153- See [ Torrent example] ( ./Test/EasyDownload /TOR.py ) for complete usage.
140+ See [ Torrent example] ( ./Test/Downloads /TOR.py ) for complete usage.
154141
155142<summary >🎞️ DASH</summary >
156143
@@ -172,7 +159,7 @@ if dash_process.download_and_decrypt():
172159dash_process.get_status()
173160```
174161
175- See [ DASH example] ( ./Test/EasyDownload /DASH.py ) for complete usage.
162+ See [ DASH example] ( ./Test/Downloads /DASH.py ) for complete usage.
176163
177164---
178165
0 commit comments