🚀 Big News:Socket Has Acquired Secure Annex.Learn More
Socket
Book a DemoSign in
Socket

py-machineid

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

py-machineid - pypi Package Compare versions

Comparing version
0.5.0
to
0.5.1
+2
-2
machineid/__init__.py

@@ -25,3 +25,3 @@ """

__version__ = '0.5.0'
__version__ = '0.5.1'
__author__ = 'Zeke Gabrielse'

@@ -38,3 +38,3 @@ __credits__ = 'https://github.com/denisbrodbeck/machineid'

def __sanitize__(id: str) -> str:
return re.sub(r'[\x00-\x1f\x7f-\x9f\r\n\t\s]', '', id) \
return re.sub(r'[\x00-\x1f\x7f-\x9f\s]', '', id) \
.strip()

@@ -41,0 +41,0 @@

Metadata-Version: 2.1
Name: py-machineid
Version: 0.5.0
Version: 0.5.1
Summary: Get the unique machine ID of any host (without admin privileges)

@@ -69,2 +69,18 @@ Home-page: https://github.com/keygen-sh/py-machineid

## Building
To build a release, run:
```bash
python3 setup.py sdist bdist_wheel
```
## Publishing
To publish a release, run:
```bash
twine upload dist/*
```
## Thanks

@@ -71,0 +87,0 @@

Metadata-Version: 2.1
Name: py-machineid
Version: 0.5.0
Version: 0.5.1
Summary: Get the unique machine ID of any host (without admin privileges)

@@ -69,2 +69,18 @@ Home-page: https://github.com/keygen-sh/py-machineid

## Building
To build a release, run:
```bash
python3 setup.py sdist bdist_wheel
```
## Publishing
To publish a release, run:
```bash
twine upload dist/*
```
## Thanks

@@ -71,0 +87,0 @@

@@ -61,4 +61,20 @@ # py-machineid

## Building
To build a release, run:
```bash
python3 setup.py sdist bdist_wheel
```
## Publishing
To publish a release, run:
```bash
twine upload dist/*
```
## Thanks
Special thanks to Denis Brodbeck for his Go package, [`machineid`](https://github.com/denisbrodbeck/machineid).