fix references to beautifulsoup libraries (bs4 rather than bs3)

This commit is contained in:
jeffrey forman 2015-03-21 20:51:08 -04:00
parent f0f897fad6
commit 4abce94d42
2 changed files with 4 additions and 3 deletions

View File

@ -11,7 +11,7 @@ Packages:
* [Django](http://www.djangoproject.com) * [Django](http://www.djangoproject.com)
* Python Modules * Python Modules
* [pybindxml](https://pypi.python.org/pypi?name=pybindxml&:action=display): This is a shared library I wrote to scrape and stick into Python dict objects various server/zone data from a BIND DNS server. * [pybindxml](https://pypi.python.org/pypi?name=pybindxml&:action=display): This is a shared library I wrote to scrape and stick into Python dict objects various server/zone data from a BIND DNS server.
* [python-beautifulsoup](http://www.crummy.com/software/BeautifulSoup/) * Beautifulsoup4: This library is included as a dependency of pybindmlx when you when you install pybindxml.
* [python-dnspython](http://www.dnspython.org/) * [python-dnspython](http://www.dnspython.org/)
* [python-sqlite](http://docs.python.org/2/library/sqlite3.html) (If you will be using Sqlite for server and key storage) * [python-sqlite](http://docs.python.org/2/library/sqlite3.html) (If you will be using Sqlite for server and key storage)
* [Bind DNS Server](http://www.isc.org/software/bind). At least version 9.5.x, which provides instrumentation for gathering process and zone statistics remotely. * [Bind DNS Server](http://www.isc.org/software/bind). At least version 9.5.x, which provides instrumentation for gathering process and zone statistics remotely.

View File

@ -5,9 +5,9 @@ import sys
errors = 0 errors = 0
try: try:
import BeautifulSoup from bs4 import BeautifulSoup
except ImportError: except ImportError:
print "Could not import BeautifulSoup. This is a required module for Binder.\n" print "Could not import BeautifulSoup. This is a required module for Binder. It is automatically installed with pybindxml.\n"
errors += 1 errors += 1
try: try:
@ -27,6 +27,7 @@ try:
import pybindxml import pybindxml
except ImportError: except ImportError:
print "Could not import pybindxml. This is a required module for Binder.\n" print "Could not import pybindxml. This is a required module for Binder.\n"
print "Pybindxml: https://pypi.python.org/pypi/pybindxml"
errors += 1 errors += 1
try: try: