├── LICENSE ├── README.md ├── main.py ├── proxies-generator.py ├── proxies.txt └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Discord Nitro Generator 2 | 3 | ![GitHub forks](https://img.shields.io/github/forks/TheCuteOwl/Discord-Promo-Generator?style=flat-square) 4 | ![GitHub license](https://img.shields.io/github/license/TheCuteOwl/Discord-Promo-Generator?style=flat-square) 5 | 6 | ## Happy New Year 7 | 8 | ## They changed the API recently so here a fix! 9 | 10 | ## HOW TO GET SESSION ID 11 | 12 | 1. Go to https://www.opera.com/gx/discord-nitro on OperaGX browser 13 | 2. Create an account 14 | 3. Go back after creating the account 15 | 4. Now, Right click it will open Devtools 16 | 5. Click on Network 17 | 6. Click on Claim Now 18 | 6. It will open a new url, go back to the other one 19 | 7. Find for the requests named "token" 20 | 8. Go down until you find the Cookie headers and take the session_id 21 | 9. Here you go! 22 | 23 | 24 | Generate Discord Nitro URLs with this Python script using the `requests` and `Threading` libraries. Star this project if you want to support me! All generated codes are valid! Want to support me? leave a star! 25 | 26 | Any Questions ? join our Discord server: [Discord Support](https://discord.gg/SKGjXfmFga) 27 | 28 | ## Overview 29 | 30 | This script automates the generation of Discord Nitro URLs by making requests to the Discord OperaGX Nitro API. It's a simple and efficient way to create multiple Nitro URLs quickly. 31 | 32 | ## HTTP/S PROXY SUPPORT! + proxies scrapper and checker (Of 9 differents sources more coming soon) 33 | ## Usage 34 | 35 | 1. **Clone the repository:** 36 | ```bash 37 | git clone https://github.com/TheCuteOwl/Discord-Nitro-Generator.git 38 | cd Discord-Nitro-Generator-main 39 | ``` 40 | 41 | 2. **Install dependencies:** 42 | ```bash 43 | pip install -r requirements.txt 44 | ``` 45 | 46 | 3. **Run the script:** 47 | 48 | ```bash 49 | python main.py 50 | ``` 51 | 52 | Follow the on-screen instructions to input the number of Nitro URLs you want to generate. 53 | 54 | 4. **Give credit:** 55 | 56 | This script is based on the work of TheCuteOwl. Please give credit when using or modifying the script. That would be very kind of you, don't want to make a skid walls 57 | 58 | ## Dependencies 59 | 60 | - Python 3.x 61 | - requests 62 | 63 | ## Contributing 64 | 65 | Feel free to contribute to the development of this script. Fork the repository, make your changes, and submit a pull request. 66 | 67 | ## Discord Support 68 | 69 | If you need any help or want to report a bug, feel free to join our Discord server: [Discord Support](https://discord.gg/SKGjXfmFga) 70 | 71 | [![Star History Chart](https://api.star-history.com/svg?repos=TheCuteOwl/Discord-Promo-Generator&type=Date)](https://star-history.com/#TheCuteOwl/Discord-Promo-Generator&Date) 72 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import os 2 | import requests 3 | import time 4 | import uuid 5 | import random 6 | import threading 7 | import subprocess 8 | from ctypes import windll 9 | from queue import Queue 10 | 11 | url = "https://api.gx.me/profile/token" 12 | num_urls = int(input('Star https://github.com/TheCuteOwl/Discord-Nitro-Generator for making this script (If you skid, give credit ;)\nHow many nitros do you want to generate: ')) 13 | 14 | 15 | Session_ID = input('Enter account session ID (Check on https://github.com/TheCuteOwl/Discord-Nitro-Generator for more info )') 16 | use_proxies = input('Do you want to use proxies? (yes/no): ').lower() 17 | while use_proxies not in ['yes', 'no']: 18 | use_proxies = input('Error! Do you want to use proxies? (yes/no): ').lower() 19 | 20 | 21 | 22 | start_time = time.time() 23 | 24 | deleted_proxies_count = 0 25 | 26 | def read_proxies(): 27 | try: 28 | with open("proxies.txt", "r") as file: 29 | return file.read().splitlines() 30 | except: 31 | with open("proxies.txt", "w") as file: 32 | return [] 33 | 34 | def write_proxies(proxies): 35 | with open("proxies.txt", "w") as file: 36 | for proxy in proxies: 37 | file.write(f"{proxy}\n") 38 | 39 | proxies = read_proxies() if use_proxies == 'yes' else [None] * num_urls 40 | 41 | success_count = 0 42 | lock = threading.Lock() 43 | stop_event = threading.Event() 44 | 45 | def generate_url(proxy): 46 | try: 47 | global success_count 48 | global deleted_proxies_count 49 | 50 | while success_count < num_urls and not stop_event.is_set(): 51 | start_request_time = time.time() 52 | 53 | try: 54 | 55 | headers = { 56 | 'Accept': 'application/json', 57 | 'Accept-Encoding': 'gzip, deflate, br', 58 | 'Accept-Language': 'fr-FR,fr;q=0.9,en-US;q=0.8,en;q=0.7', 59 | 'Cookie': f'SESSION_TYPE=user; SESSION={Session_ID}', 60 | 'Origin': 'https://www.opera.com', 61 | 'Referer': 'https://www.opera.com/', 62 | 'Sec-Ch-Ua': '"Not A(Brand";v="99", "Opera GX";v="107", "Chromium";v="121"', 63 | 'Sec-Ch-Ua-Mobile': '?0', 64 | 'Sec-Ch-Ua-Platform': '"Windows"', 65 | 'Sec-Fetch-Dest': 'empty', 66 | 'Sec-Fetch-Mode': 'cors', 67 | 'Sec-Fetch-Site': 'cross-site', 68 | 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0' 69 | } 70 | 71 | response = requests.get('https://api.gx.me/profile/token', headers=headers) 72 | datas = response.json() 73 | 74 | headers = { 75 | "Content-Type": "application/json", 76 | "Accept": "*/*", 77 | "Origin": "https://www.opera.com", 78 | "Referer": "https://www.opera.com/", 79 | "Sec-Ch-Ua": '"Opera GX";v="105", "Chromium";v="119", "Not?A_Brand";v="24"', 80 | "Sec-Ch-Ua-Mobile": "?0", 81 | "Sec-Ch-Ua-Platform": '"Windows"', 82 | "Sec-Fetch-Dest": "empty", 83 | "Sec-Fetch-Mode": "cors", 84 | "Sec-Fetch-Site": "cross-site", 85 | "Authorization": f"{datas['data']}", 86 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 OPR/105.0.0.0" 87 | } 88 | r = requests.post('https://discord.opr.gg/v2/direct-fulfillment', headers=headers) 89 | data = r.json() 90 | 91 | 92 | output_file_path = "output.txt" 93 | 94 | if not os.path.exists(output_file_path): 95 | with open(output_file_path, "w"): 96 | pass 97 | 98 | urls = 'https://discord.com/billing/partner-promotions/1180231712274387115/' 99 | 100 | with open(output_file_path, "a") as file: 101 | file.write(f"{urls}{data['token']}\n") 102 | success_count += 1 103 | print(f"URL generated and saved to {output_file_path}") 104 | update_window_title(success_count, len(proxies)) 105 | 106 | if use_proxies == 'yes' and proxy is not None: 107 | create_and_start_thread(proxy) 108 | 109 | except requests.RequestException as e: 110 | if use_proxies == 'yes' and proxy is not None and isinstance(e, requests.exceptions.ProxyError) and ("WinError 10061" in str(e) or "Cannot connect to proxy." in str(e) or "TLS/SSL connection has been closed (EOF)" in str(e) or "[SSL: UNEXPECTED_EOF_WHILE_READING]" in str(e) or "Max retries exceeded with url" in str(e)) or "timed out." in str(e) or "Connection aborted" in str(e) or "Too many requests" in str(e) or "EOF occurred in violation of protocol" in str(e) or "429" in str(e): 111 | proxies.remove(proxy) 112 | deleted_proxies_count += 1 113 | print(f"Proxy {proxy} removed from the list. Deleted Proxies: {deleted_proxies_count} - {len(proxies)} left") 114 | try: 115 | write_proxies(proxies) 116 | except: 117 | pass 118 | update_window_title(success_count, len(proxies)) 119 | except Exception as e: 120 | print(e) 121 | end_request_time = time.time() 122 | request_time = end_request_time - start_request_time 123 | 124 | except: 125 | pass 126 | 127 | def update_window_title(success_count, num_threads): 128 | try: 129 | with lock: 130 | window_title = f"URLs Generated: {success_count} | Working Proxies: {num_threads} | Deleted Proxies: {deleted_proxies_count}" 131 | 132 | if os.name == 'posix': 133 | subprocess.run(["printf", f"\033]0;{window_title}\007"]) 134 | elif os.name == 'nt': 135 | windll.kernel32.SetConsoleTitleW(window_title) 136 | except: 137 | pass 138 | 139 | def create_and_start_thread(proxy): 140 | thread = threading.Thread(target=generate_url, args=(proxy,)) 141 | thread.start() 142 | return thread 143 | 144 | def main(): 145 | global success_count 146 | 147 | if use_proxies == 'no': 148 | while success_count < num_urls: 149 | generate_url(None) 150 | else: 151 | num_threads = int(input(f"Enter Number Of Threads: ")) 152 | 153 | while success_count < num_urls and not stop_event.is_set(): 154 | threads = [] 155 | 156 | for i in range(num_threads - len(threads)): 157 | proxy = random.choice(proxies) if proxies else None 158 | thread = create_and_start_thread(proxy) 159 | threads.append(thread) 160 | 161 | for thread in threads: 162 | if not thread.is_alive(): 163 | threads.remove(thread) 164 | 165 | try: 166 | for thread in threads: 167 | thread.join() 168 | except KeyboardInterrupt: 169 | print("Script terminated by user.") 170 | 171 | while len(threads) < num_threads and not stop_event.is_set(): 172 | proxy = random.choice(proxies) if proxies else None 173 | thread = create_and_start_thread(proxy) 174 | threads.append(thread) 175 | 176 | end_time = time.time() 177 | elapsed_time = end_time - start_time 178 | print(f"All URLs generated and saved! Star https://github.com/TheCuteOwl/Discord-Nitro-Generator for making this script") 179 | print(f"Time taken: {elapsed_time:.2f} seconds") 180 | 181 | main() 182 | -------------------------------------------------------------------------------- /proxies-generator.py: -------------------------------------------------------------------------------- 1 | import requests 2 | import threading 3 | import re 4 | import os 5 | 6 | proxy_list_urls = [ 7 | "https://api.proxyscrape.com/v2/?request=getproxies&protocol=http&timeout=10000&country=all&ssl=all&anonymity=all", 8 | "https://api.proxyscrape.com/v2/?request=getproxies&protocol=https&timeout=10000&country=all&ssl=all&anonymity=all", 9 | "https://raw.githubusercontent.com/TheSpeedX/PROXY-List/master/http.txt", 10 | "https://raw.githubusercontent.com/themiralay/Proxy-List-World/master/data.txt", 11 | "https://raw.githubusercontent.com/casals-ar/proxy-list/main/http", 12 | "https://raw.githubusercontent.com/casals-ar/proxy-list/main/https", 13 | "https://raw.githubusercontent.com/monosans/proxy-list/main/proxies/http.txt", 14 | "https://raw.githubusercontent.com/prxchk/proxy-list/main/http.txt", 15 | "https://raw.githubusercontent.com/elliottophellia/yakumo/master/results/http/global/http_checked.txt", 16 | "https://raw.githubusercontent.com/proxy4parsing/proxy-list/main/http.txt" 17 | ] 18 | 19 | def get_proxies(url, timeout=5): 20 | headers = { 21 | 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3' 22 | } 23 | 24 | try: 25 | response = requests.get(url, headers=headers, timeout=timeout) 26 | response.raise_for_status() 27 | 28 | proxies = response.text.splitlines() 29 | 30 | return proxies 31 | except requests.exceptions.RequestException as e: 32 | print(f"An error occurred: {e}") 33 | return [] 34 | 35 | def scrape_website(url, timeout=5): 36 | proxies = get_proxies(url, timeout=timeout) 37 | with lock: 38 | all_proxies.extend(proxies) 39 | print(f"Website scraped: {url}") 40 | 41 | def main(timeout=5): 42 | global all_proxies 43 | global lock 44 | all_proxies = [] 45 | lock = threading.Lock() 46 | 47 | threads = [] 48 | for url in proxy_list_urls: 49 | thread = threading.Thread(target=scrape_website, args=(url, timeout)) 50 | threads.append(thread) 51 | thread.start() 52 | 53 | for thread in threads: 54 | thread.join() 55 | 56 | filename = "http.txt" 57 | if not os.path.exists(filename): 58 | print(f"The file {filename} does not exist. Creating it.") 59 | open(filename, 'w').close() 60 | 61 | with open(filename, "w", encoding="utf-8") as file: 62 | for proxy in all_proxies: 63 | file.write(proxy + "\n") 64 | 65 | print(f"Total proxies saved: {len(all_proxies)}") 66 | 67 | def remove_invalid_proxies(filename): 68 | if not os.path.exists(filename): 69 | print(f"The file {filename} does not exist. Creating it.") 70 | open(filename, 'w').close() 71 | 72 | with open(filename, "r", encoding="utf-8") as file: 73 | proxies = file.read().splitlines() 74 | 75 | valid_proxies = [proxy for proxy in proxies if re.match(r"\d+\.\d+\.\d+\.\d+:\d+", proxy)] 76 | 77 | with open(filename, "w", encoding="utf-8") as file: 78 | for proxy in valid_proxies: 79 | file.write(proxy + "\n") 80 | 81 | print(f"Total valid proxies: {len(valid_proxies)}") 82 | 83 | def check_proxy(proxy, working_proxies, unchecked_proxies, file_lock): 84 | url = "http://httpbin.org/ip" 85 | 86 | try: 87 | response = requests.get(url, proxies={"http": proxy, "https": proxy}, timeout=10) 88 | 89 | response.raise_for_status() 90 | print(f"Proxy {proxy} is working fine") 91 | working_proxies.add(proxy) 92 | with open("http_check.txt", "a", encoding="utf-8") as file: 93 | file.write(proxy + "\n") 94 | try: 95 | unchecked_proxies.remove(proxy) 96 | except: 97 | pass 98 | with open("proxies.txt", "a", encoding="utf-8") as file: 99 | file.write(proxy + "\n") 100 | try: 101 | unchecked_proxies.remove(proxy) 102 | except: 103 | pass 104 | except requests.exceptions.RequestException as e: 105 | pass 106 | 107 | def clear_file(filename): 108 | with open(filename, "w"): 109 | pass 110 | 111 | def remove_duplicates(filename): 112 | with open(filename, "r", encoding="utf-8") as file: 113 | lines = file.read().splitlines() 114 | 115 | unique_lines = set(lines) 116 | lines_to_remove = set(line for line in unique_lines if lines.count(line) > 2) 117 | 118 | with open(filename, "w", encoding="utf-8") as file: 119 | for line in lines: 120 | if line not in lines_to_remove: 121 | file.write(line + "\n") 122 | 123 | def check_proxies_from_file(filename): 124 | if not os.path.exists(filename): 125 | print(f"The file {filename} does not exist. Creating it.") 126 | open(filename, 'w').close() 127 | 128 | with open(filename, "r", encoding="utf-8") as file: 129 | proxies = file.read().splitlines() 130 | 131 | print(f"Total proxies read from {filename}: {len(proxies)}") 132 | 133 | working_proxies = set() 134 | unchecked_proxies = set(proxies) 135 | file_lock = threading.Lock() 136 | 137 | def worker(proxy): 138 | check_proxy(proxy, working_proxies, unchecked_proxies, file_lock) 139 | 140 | check_threads = [] 141 | for proxy in proxies: 142 | thread = threading.Thread(target=worker, args=(proxy,)) 143 | check_threads.append(thread) 144 | thread.start() 145 | 146 | for thread in check_threads: 147 | thread.join() 148 | 149 | input(f"Total working proxies saved: {len(working_proxies)}") 150 | 151 | clear_file(filename) 152 | 153 | remove_duplicates("http_check.txt") 154 | remove_duplicates("proxies.txt") 155 | 156 | if __name__ == "__main__": 157 | clear_file('proxies.txt') 158 | main() 159 | 160 | remove_invalid_proxies("http.txt") 161 | check_proxies_from_file("http.txt") 162 | -------------------------------------------------------------------------------- /proxies.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pip install requests 2 | --------------------------------------------------------------------------------