Skip to main content
Stack Overflow
  1. About
  2. For Teams
Filter by
Sorted by
Tagged with
1 vote
0 answers
42 views

I've come across the PySocks library as a tool aimed more at proxies in comparison to the regular Python Sockets module. I was using that but needed to find something else. Anyways, with PySocks I saw ...
Qerxo's user avatar
  • 11
1 vote
0 answers
73 views

When I use the connect method of the socks library directly, the connection is successful, but when I replace it with the sock_connect method of the asynic library, the connection times out. import ...
1 vote
0 answers
1k views

I'm trying to establish a connection to a PostgreSQL database over a SOCKS5 proxy in Python using the PySocks library. Here's the approach I'm currently using: import socks import socket # Configure ...
0 votes
1 answer
914 views

My program send requests to the site several times via aiohttp. I also need to use a proxy, so I use a connector from the aiohttp-socks library. But after implementing the functionality, I encountered ...
SecorD's user avatar
  • 77
0 votes
1 answer
1k views

I have two versions of the program: Synchronous, using requests library; Asynchronous, using aiohttp library. It is necessary to make requests to a site using SOCKS5 proxy. After installing the ...
0 votes
1 answer
348 views

I'm trying to connect to IRC server with socks proxy for testing purposes. Socks proxy is alive at the moment of writing this post. I've checked it with Proxy checker and even connected to the IRC ...
Sib's user avatar
  • 523
0 votes
1 answer
322 views

I has been trying to create a port forwarding session including a dynamic socks with paramiko and pysocks, I already do it with plink using this: plink -ssh -D 10100 -L 25000:PrivateServerIP:1494 user@...
2 votes
0 answers
2k views

The main idea is to send email through the proxy server using python smtplib. I had my own HTTP proxy server. There are no brief talks about this in any community What I'm tried is: import socks ...
3 votes
0 answers
654 views

pysocks library doesnt support proxy ipv6 is there any way that solve this or any other libraries ? Im using it with telethon to interact with telegram API Also I tried another library called ...
0 votes
1 answer
1k views

I am trying to connect to my HTTPS server via SOCKS4 proxy, but it seems like it is not working. Here is my code: headers = "GET / HTTP/1.1\r\nHost: domain.com\r\n\r\n" import socks import ...
0 votes
0 answers
506 views

I have a question Has anyone ever tried using imap/smtp with proxies I'm trying pysocks with imaplib/smtplib but datacenter proxies (HTTP proxies from Proxiware) aren't working with it, I get an error ...
0 votes
1 answer
581 views

When I try to update using the command sudo yum update I get the error: Error: Package: python2-urllib3-1.22-2.el7.noarch (ol7_developer) Requires: python-pysocks so when I try to install ...
1 vote
0 answers
819 views

I can't afford to send UDP packets through SOCKS5 proxy. I'm using PySocks. Here is my code : import socks proxyIP = "whatever.proxy" proxyPort = 8080 s = socks.socksocket(socket.AF_INET, socket....
elPM's user avatar
  • 11
0 votes
1 answer
2k views

I am using Telebot to make a python bot for Telegram bot = telebot.TeleBot('TokenHere') apihelper.proxy = {'https': 'socks5://user:[email protected]:1080'} @bot.message_handler(commands=['start', '...
14 votes
2 answers
44k views

import requests, socket, socks ModuleNotFoundError: No module named 'socks' I have tried pip install socks, and followed instructions of other stackoverflow posts but none of them worked. I'm working ...
Rightfully's user avatar

15 30 50 per page
1
2

AltStyle によって変換されたページ (->オリジナル) /