Removed beautifulsoup as dependency for binder, because it's a dependency of
pybindxml and will be properly installed when installing pybindxml.
This commit is contained in:
parent
f0f897fad6
commit
2059f3277c
|
@ -11,7 +11,6 @@ Packages:
|
|||
* [Django](http://www.djangoproject.com)
|
||||
* 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.
|
||||
* [python-beautifulsoup](http://www.crummy.com/software/BeautifulSoup/)
|
||||
* [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)
|
||||
* [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.
|
||||
|
|
|
@ -4,12 +4,6 @@
|
|||
import sys
|
||||
errors = 0
|
||||
|
||||
try:
|
||||
import BeautifulSoup
|
||||
except ImportError:
|
||||
print "Could not import BeautifulSoup. This is a required module for Binder.\n"
|
||||
errors += 1
|
||||
|
||||
try:
|
||||
import django
|
||||
except ImportError:
|
||||
|
|
Loading…
Reference in New Issue