Skip to content

Commit 87bfa3d

Browse files
author
James Campbell
committed
updates to readme
1 parent ab76685 commit 87bfa3d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ It is a way for me to remember and hopefully get others started.
99

1010
Start your Python journey in Python 3. Onward and upward.
1111

12-
**urllib** ([package download link](http://pymotw.com/2/urllib2/))
12+
**urllib** (built-in to python3)
1313

1414
1. [access foursquare API](#foursquare-api-example)
1515

16-
## *By python 3.x module:*
16+
## *By python 3.x package:*
1717

1818
**http.server** (built-in to python3)
1919

@@ -56,45 +56,45 @@ Start your Python journey in Python 3. Onward and upward.
5656

5757
1. [base64 encode & decode example](#base64-example)
5858

59-
**http.server** (module is built-in)
59+
**http.server** (package is built-in)
6060

6161
1. [web server example](#server-example)
6262

6363
**hashlib** (package is built-in)
6464

6565
1. [sha 256 hash example](#sha-example)
6666

67-
**nltk** (module download via pip3 install nltk)
67+
**nltk** (package download via pip3 install nltk)
6868

6969
1. [sentiment analysis example](#sentiment-example)
7070

71-
**exifread** (module download via pip3 install exifread)
71+
**exifread** (package download via pip3 install exifread)
7272

7373
1. [read exif example](#exifread-example)
7474

75-
**json** (module download via pip3 install json)
75+
**json** (package download via pip3 install json)
7676

7777
1. [json to python object example](#json-to-python-object-example)
7878

79-
**urllib3** (module download via pip3 install urllib3 from homebrew osx brew install python3)
79+
**urllib3** (package download via pip3 install urllib3 from homebrew osx brew install python3)
8080

8181
1. [google mask search example](#google-mask-example)
8282
2. [urllib3 proxymanager example](#proxymanager-example)
8383

84-
**blockchain** (module download via pip3 install blockchain)
84+
**blockchain** (package download via pip3 install blockchain)
8585

8686
1. [wallet query example](#bitcoin-wallet-example)
8787

8888
**PySocks** ([package download link](https://github.com/Anorov/PySocks))
8989

9090
1. [connect to tor and print .onion site](#tor-connect-example)
9191

92-
**shodan** (module download via pip install shodan)
92+
**shodan** (package download via pip install shodan)
9393

9494
1. [shodan count example](#shodan-count-example)
9595
2. [google lat/long and shodan enrichment geo search example](#google-geo-and-shodan-example)
9696

97-
**websockify** (module download via pip(3) install websockify)
97+
**websockify** (package download via pip(3) install websockify)
9898

9999
1. [websockify example](#websockify-example)
100100

@@ -160,7 +160,7 @@ python3 pattern-example-twitter.py -s 'Hello World'
160160

161161
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.
162162

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>
164164

165165
Then make sure your code (like the example) has <code>import socks</code>.
166166

@@ -426,7 +426,7 @@ Negative count: 3
426426

427427
## hashlib example
428428

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.
430430

431431
### Run the Example
432432

0 commit comments

Comments
 (0)