Return facts of server
Project description
Returns facts of local machine.
Installation
pip install facts
CLI Usage
Get all facts:
facts all
Get one fact:
fact read foo
Get the human readable memory usage:
fact read memory --human
Set one custom fact:
fact write foo 'It is nice'
When value is a mapping, then you can choose between 2 merging strategies:
fact write foo '{is: bar}' --format yaml --replace fact write foo '{not: baz}' --format yaml --merge
Delete a custom fact:
fact delete foo
Targeting
By convention key facts can’t have colon marks. Because facts can be nested, and it’s possible to target these sub data. Each parts must be seperated by a colon. For example if:
fact read foo
returns:
is: bar not: baz
Then:
fact read foo:is
returns:
bar
But:
fact read foo:wrong:key
will return nothing.
Matching
It is also possible to check if a certain fact turns out true:
fact match foo:is:bar
Grafting
Facts allow you to extends with ‘grafts’. There is 2 ways
1. by modules
You can extend with your own facts. Any python modules under ~/.facts/grafts will be loaded. For example:
# ~/.facts/grafts/my_grafts.py from facts import graft, mark @graft def hello_world(): return { 'hello': 'world', 'size': mark(1234567890, 'bytes') }
Will append the fact hello with the value world, and the fact size with one of these values (depending the –human switch) 1234567890 or 1.1G.
2. with setuptools
You also write python libraries that will contribute to facts with using setuptools. Add the following to the setup.py function:
entry_points={ 'facts.graft': [ 'plugin-1 = mylib:plugin_1', 'plugin-2 = mylib:plugin_2' ] }
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file facts-0.4.tar.gz
.
File metadata
- Download URL: facts-0.4.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c899c226ad527bc4d9bc4f71dbafed51728063ce22acf6436bfc5fd294956857 |
|
MD5 | 9bf5fbc1815e1eb08f7f3a361d7b03e2 |
|
BLAKE2b-256 | 33889a719b12018e4e4387c1f5d75e1631e85da04f0675b095d8561f851576e0 |
File details
Details for the file facts-0.4-py3-none-any.whl
.
File metadata
- Download URL: facts-0.4-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e29229275171a71ef08ca0cbd634fcc3e62d7c095c39d788d9f0f32a1f07fe8 |
|
MD5 | f958399abad0e644a344e5cddb1b700a |
|
BLAKE2b-256 | 04526e9832fe1d439585f107c4b909a46688b17ed3721cf3d37323a46e80fc3e |
File details
Details for the file facts-0.4-py2.py3-none-any.whl
.
File metadata
- Download URL: facts-0.4-py2.py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68bffb019692e4aa4fe5ee467459da55f63724bad3f002c951893dc30e485c8e |
|
MD5 | f8509ac685f4e55f6b4110feee4564e3 |
|
BLAKE2b-256 | 67de1456ac14385015255d9dc3c23b08e5636257cf650df18fa5038bfb17a1dd |