
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Supply Chain Security
Vulnerability
Quality
Maintenance
License
Unpopular package
QualityThis package is not very popular.
Found 1 instance in 1 package
For example, HTML or XML are based on tags. And data text parsing can be useful when you need to find some tags by name and attributes or take separate parts of document.
git clone 'https://github.com/michael7nightingale/spicy.git'
Python >= 3.11 There is no any installed python libraries. Every thing is from the box.
"""your parser file"""
from spicy import Spicy
from urllib.request import Request,urlopen
request = Request(url='https://example.com/')
with urlopen(request) as response:
html_text = response.read().decode(encoding='utf-8')
spicy = Spicy(
text=html_text,
doctype='html' # it`s already default
)
print(spicy.tag) # html
print(spicy.children) # ['<Tag: head>', '<Tag: body>']
print(spicy) # all the document in string type
head, body = spicy.children
print(el.attributes for el in body)
Spicy tags and document have rich searching logic:
findAll()
- returns the list of tag objects with the given parameters;findIter()
- generator version of findAll()
, can reduce memory usage;findFirst()
- returns first tag object with given parameters;findLast()
- returns first tag object with given parameters;getElementById()
- returns tag object with given id;Useful properties:
tag
- represents tag name (link, div, html, img, etc.)className
- class attribute value, if exists;id
- id attribute value, if exists;attributes
- representation of all tag options (attributes), for example: align=center, href=/admin/user;parent
- parent tag node of DOM;children
- the list of children tag nodes;FAQs
DOM parser for html, xml and other.
We found that spicyy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.