
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
A library for checking the latest revisions of standard methods published by standard bodies.
Stdchecker is a Python library for checking the latest revisions of standard methods published by standard bodies. Supported standard bodies are:
Use the package manager pip to install stdchecker:
pip install stdchecker
or directly from the source code:
git clone https://github.com/emreture/stdchecker.git
cd stdchecker
python setup.py install
Fetching standard methods data:
import stdchecker
std_list = ['D92', 'D93']
for i in stdchecker.fetch_astm(std_list):
print(i)
Output:
{'query': 'D92',
'error': None,
'no': 'ASTM D92',
'rev': '18',
'desc': 'Standard Test Method for Flash and Fire Points by Cleveland Open Cup Tester',
'body': 'astm',
'url': 'https://www.astm.org/Standards/D92.htm'}
{'query': 'D93',
'error': None,
'no': 'ASTM D93',
'rev': '20',
'desc': 'Standard Test Methods for Flash Point by Pensky-Martens Closed Cup Tester',
'body': 'astm',
'url': 'https://www.astm.org/Standards/D93.htm'}
Checking if existing standard methods are up-to-date:
import stdchecker
std_list = ['D92', 'D93']
actual_std_list = [
{'no': 'ASTM D92', 'rev': '18'},
{'no': 'ASTM D93', 'rev': '18'}
]
fetch_generator = stdchecker.fetch_astm(std_list)
for i in stdchecker.check_astm(fetch_generator, actual_std_list):
print(i)
Output:
{'query': 'D92',
'error': None,
'no': 'ASTM D92',
'rev': '18',
'desc': 'Standard Test Method for Flash and Fire Points by Cleveland Open Cup Tester',
'body': 'astm',
'url': 'https://www.astm.org/Standards/D92.htm',
'check': True,
'actual': '18'}
{'query': 'D93',
'error': None,
'no': 'ASTM D93',
'rev': '20',
'desc': 'Standard Test Methods for Flash Point by Pensky-Martens Closed Cup Tester',
'body': 'astm',
'url': 'https://www.astm.org/Standards/D93.htm',
'check': False,
'actual': '18'}
If an id
is provided (for example existing standard methods are stored in a database), the output will also include the id
key and its value:
import stdchecker
std_list = ['D92', 'D93']
actual_std_list = [
{'id': 1, 'no': 'ASTM D92', 'rev': '18'},
{'id': 2, 'no': 'ASTM D93', 'rev': '18'}
]
fetch_generator = stdchecker.fetch_astm(std_list)
for i in stdchecker.check_astm(fetch_generator, actual_std_list, id_from_actual=True):
print(i)
Output:
{'query': 'D92',
'error': None,
'no': 'ASTM D92',
'rev': '18',
'desc': 'Standard Test Method for Flash and Fire Points by Cleveland Open Cup Tester',
'body': 'astm',
'url': 'https://www.astm.org/Standards/D92.htm',
'check': True,
'actual': '18',
'id': 1}
{'query': 'D93',
'error': None,
'no': 'ASTM D93',
'rev': '20',
'desc': 'Standard Test Methods for Flash Point by Pensky-Martens Closed Cup Tester',
'body': 'astm',
'url': 'https://www.astm.org/Standards/D93.htm',
'check': False,
'actual': '18',
'id': 2}
For more documentation, refer to the docstrings in the source files.
See the LICENSE file for license rights and limitations (MIT).
FAQs
A library for checking the latest revisions of standard methods published by standard bodies.
We found that stdchecker 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.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.