Add net/py-wmi-query, Python scripts to get wmi data classes in a dict

Simple Python lib to get wmi data classes in a dict.
The script wmi_query make a query and print on the screen the wmi class object.
Both keys and values will be printed for each object returned by the query.

WWW: https://github.com/kanazux/wmi-query

PR:		222451
Submitted by:	Silvio Ap Silva <alvolivre@live.com>
This commit is contained in:
Danilo G. Baio 2017-09-20 01:55:00 +00:00
parent 9d6c86011a
commit 2a0a2852b4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=450185
4 changed files with 31 additions and 0 deletions

View File

@ -1079,6 +1079,7 @@
SUBDIR += py-upnp-inspector
SUBDIR += py-uritemplate
SUBDIR += py-urllib3
SUBDIR += py-wmi-query
SUBDIR += py-wolframalpha
SUBDIR += py-xmlrpc
SUBDIR += py-zope.proxy

22
net/py-wmi-query/Makefile Normal file
View File

@ -0,0 +1,22 @@
# Created by: Silvio Ap Silva aka kanazuchi <alvolivre@live.com>
# $FreeBSD$
PORTNAME= wmi-query
PORTVERSION= 0.1.3
CATEGORIES= net python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= alvolivre@live.com
COMMENT= Python scripts to get wmi data classes in a dict
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}impacket>=0:net/py-impacket
NO_ARCH= yes
USES= python
USE_PYTHON= autoplist distutils
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1505868209
SHA256 (wmi-query-0.1.3.tar.gz) = 143137c2bdbf208e693055332b63cafde7a76ae4fb4a5894c174d436994814aa
SIZE (wmi-query-0.1.3.tar.gz) = 3709

View File

@ -0,0 +1,5 @@
Simple Python lib to get wmi data classes in a dict.
The script wmi_query make a query and print on the screen the wmi class object.
Both keys and values will be printed for each object returned by the query.
WWW: https://github.com/kanazux/wmi-query