Skip to content

Commit

Permalink
Merge pull request #24 from facelessuser/decouple-deps
Browse files Browse the repository at this point in the history
Don't require bs4, but let user install it.
  • Loading branch information
facelessuser committed Dec 18, 2018
2 parents cdb9df9 + 9a79221 commit 5d28d6c
Show file tree
Hide file tree
Showing 9 changed files with 219 additions and 151 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ selectors are:
- `parent:has(> child)`
- and many more

## Installation

You must have Beautiful Soup already installed:

```
pip install beautifulsoup4
```

Then use `pip` to install Soup Sieve:

```
pip install soupsieve
```

## Documentation

Documentation is found here: http://facelessuser.github.io/soupsieve/.
Expand Down
1 change: 1 addition & 0 deletions docs/src/markdown/about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- **NEW**: Add support for `:checked`, `:enabled`, `:disabled`, `:required`, `:optional`, `:default`, and `:placeholder-shown` which will only match in HTML documents as these concepts are not defined in XML.
- **NEW**: Add support for `:link` and `:any-link`, both of which will target all `<a>`, `<area>`, and `<link>` elements with an `href` attribute as all links will be treated as unvisited in Soup Sieve.
- **NEW**: Add support for `:lang()` (CSS4) which works in XML and HTML.
- **NEW**: Users must install Beautiful Soup themselves. This requirement is removed in the hopes that Beautiful Soup may use this in the future.
- **FIX**: Attributes in the form `prefix:attr` can be matched with the form `[prefix\:attr]` without specifying a namespaces if desired.
- **FIX**: Fix exception when `[type]` is used (with no value).

Expand Down
8 changes: 7 additions & 1 deletion docs/src/markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ Checkout [CSS Selectors](./selectors.md) to see the full list.

## Installation

Installation is easy with `pip`:
You must have Beautiful Soup already installed:

```
pip install beautifulsoup4
```

Then use `pip` to install Soup Sieve:

```
pip install soupsieve
Expand Down
1 change: 0 additions & 1 deletion requirements/project.txt
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
beautifulsoup4
1 change: 1 addition & 0 deletions requirements/tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ pytest-cov
coverage
lxml
html5lib
beautifulsoup4
51 changes: 23 additions & 28 deletions soupsieve/css_match.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""CSS matcher."""
from . import util
import re
import copyreg
from .util import deprecated
from .import css_types as ct

Expand Down Expand Up @@ -194,16 +193,16 @@ def match_past_relations(self, el, relation):
elif relation[0].rel_type == REL_SIBLING:
sibling = el.previous_sibling
while not found and sibling:
if not isinstance(sibling, util.TAG):
if not util.is_tag(sibling):
sibling = sibling.previous_sibling
continue
found = self.match_selectors(sibling, relation)
sibling = sibling.previous_sibling
elif relation[0].rel_type == REL_CLOSE_SIBLING:
sibling = el.previous_sibling
while sibling and not isinstance(sibling, util.TAG):
while sibling and not util.is_tag(sibling):
sibling = sibling.previous_sibling
if sibling and isinstance(sibling, util.TAG):
if sibling and util.is_tag(sibling):
found = self.match_selectors(sibling, relation)
return found

Expand All @@ -212,7 +211,7 @@ def match_future_child(self, parent, relation, recursive=False):

match = False
for child in (parent.descendants if recursive else parent.children):
if not isinstance(child, util.TAG):
if not util.is_tag(child):
continue
match = self.match_selectors(child, relation)
if match:
Expand All @@ -230,16 +229,16 @@ def match_future_relations(self, el, relation):
elif relation[0].rel_type == REL_HAS_SIBLING:
sibling = el.next_sibling
while not found and sibling:
if not isinstance(sibling, util.TAG):
if not util.is_tag(sibling):
sibling = sibling.next_sibling
continue
found = self.match_selectors(sibling, relation)
sibling = sibling.next_sibling
elif relation[0].rel_type == REL_HAS_CLOSE_SIBLING:
sibling = el.next_sibling
while sibling and not isinstance(sibling, util.TAG):
while sibling and not util.is_tag(sibling):
sibling = sibling.next_sibling
if sibling and isinstance(sibling, util.TAG):
if sibling and util.is_tag(sibling):
found = self.match_selectors(sibling, relation)
return found

Expand Down Expand Up @@ -360,7 +359,7 @@ def match_nth(self, el, nth):
while 0 <= index <= last_index:
child = parent.contents[index]
index += factor
if not isinstance(child, util.TAG):
if not util.is_tag(child):
continue
# Handle `of S` in `nth-child`
if n.selectors and not self.match_selectors(child, n.selectors):
Expand Down Expand Up @@ -395,11 +394,11 @@ def match_empty(self, el):

is_empty = True
for child in el.children:
if isinstance(child, util.TAG):
if util.is_tag(child):
is_empty = False
break
elif (
(isinstance(child, util.NAV_STRINGS) and not isinstance(child, util.NON_CONTENT_STRINGS)) and
(util.is_navigable_string(child) and not util.is_special_string(child)) and
RE_NOT_EMPTY.search(child)
):
is_empty = False
Expand All @@ -418,7 +417,7 @@ def match_subselectors(self, el, selectors):
def match_contains(self, el, contains):
"""Match element if it contains text."""

types = (util.NAV_STRINGS,) if not self.is_xml else (util.NAV_STRINGS, util.CDATA)
types = (util.get_navigable_string_type(el),)
match = True
for c in contains:
if c not in el.get_text(types=types):
Expand Down Expand Up @@ -453,7 +452,7 @@ def match_default(self, el):
if not found_form:
child_found = False
for child in form.descendants:
if not isinstance(child, util.TAG):
if not util.is_tag(child):
continue
name = util.lower(child.name)
# Can't do nested forms (haven't figured out why we never hit this)
Expand Down Expand Up @@ -507,7 +506,7 @@ def get_parent_form(el):
if not found_form:
checked = False
for child in form.descendants:
if not isinstance(child, util.TAG) or child is el:
if not util.is_tag(child) or child is el:
continue
tag_name = util.lower(child.name)
if tag_name == 'input':
Expand Down Expand Up @@ -567,7 +566,7 @@ def match_lang(self, el, langs):
for tag in ('html', 'head'):
found = False
for child in parent.children:
if isinstance(child, util.TAG) and util.lower(child.name) == tag:
if util.is_tag(child) and util.lower(child.name) == tag:
found = True
parent = child
break
Expand All @@ -576,7 +575,7 @@ def match_lang(self, el, langs):

if found:
for child in parent:
if isinstance(child, util.TAG) and util.lower(child.name) == 'meta':
if util.is_tag(child) and util.lower(child.name) == 'meta':
c_lang = False
content = None
for k, v in child.attrs.items():
Expand Down Expand Up @@ -674,16 +673,16 @@ def match(self, el):
doc = doc.parent
root = None
for child in doc.children:
if isinstance(child, util.TAG):
if util.is_tag(child):
root = child
break
self.html_namespace = self.is_html_ns(root)
self.is_xml = doc.is_xml and not self.html_namespace

return isinstance(el, util.TAG) and el.parent and self.match_selectors(el, self.selectors)
return util.is_tag(el) and el.parent and self.match_selectors(el, self.selectors)


class SoupSieve(util.Immutable):
class SoupSieve(ct.Immutable):
"""Match tags in Beautiful Soup with CSS selectors."""

__slots__ = ("pattern", "selectors", "namespaces", "flags", "_hash")
Expand All @@ -705,9 +704,9 @@ def _walk(self, node, capture=True, comments=False):

# Walk children
for child in node.descendants:
if capture and isinstance(child, util.TAG) and match(child):
if capture and util.is_tag(child) and match(child):
yield child
elif comments and isinstance(child, util.COMMENT):
elif comments and util.is_comment(child):
yield child

def _sieve(self, node, capture=True, comments=False, limit=0):
Expand All @@ -731,8 +730,8 @@ def match(self, node):
def filter(self, nodes): # noqa A001
"""Filter."""

if isinstance(nodes, util.TAG):
return [node for node in nodes.children if isinstance(node, util.TAG) and self.match(node)]
if util.is_tag(nodes):
return [node for node in nodes.children if util.is_tag(node) and self.match(node)]
else:
return [node for node in nodes if self.match(node)]

Expand Down Expand Up @@ -777,8 +776,4 @@ def selectiter(self, node, limit=0):
yield from self.iselect(node, limit)


def _pickle(p):
return SoupSieve, (p.pattern, p.selectors, p.namespaces, p.flags)


copyreg.pickle(SoupSieve, _pickle)
ct.pickle_register(SoupSieve)
Loading

0 comments on commit 5d28d6c

Please sign in to comment.