You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tor (The Onion Router) has a particular socks port and connection setup that needs configured to connect in Python. This example shows you how. You must already have [Tor](http://torproject.org/download) installed.
162
162
163
-
*Note:* You need to install the Socksipy module for this to work, which has an actively maintained fork in [PySocks](https://github.com/Anorov/PySocks). It is easy if you already have pip (and if you don't have pip you should). <code>$ pip install PySocks</code>
163
+
*Note:* You need to install the Socksipy package for this to work, which has an actively maintained fork in [PySocks](https://github.com/Anorov/PySocks). It is easy if you already have pip (and if you don't have pip you should). <code>$ pip install PySocks</code>
164
164
165
165
Then make sure your code (like the example) has <code>import socks</code>.
166
166
@@ -426,7 +426,7 @@ Negative count: 3
426
426
427
427
## hashlib example
428
428
429
-
The hashlib module generates hashes from strings. This example uses the sha256 hash algorithm.
429
+
The hashlib package generates hashes from strings. This example uses the sha256 hash algorithm.
0 commit comments