some small helpers used in many scripts
Project description
lib_platform
some convenience functions used in many scripts
supports python 2.7 - python 3.7, pypy and possibly other dialects.
this is also a working example for travis.yml for multi-platform testing :
install WINE
install python 2.7 on wine 32 Bit
install python 2.7 on wine 64 Bit
install python 3.7 on wine 32 Bit
install python 3.7 on wine 64 Bit
run pytest on wine (all Versions mentioned above)
run code coverage on wine (all Versions mentioned above)
osx Build for Python 2.7, Python 3.7
pypy Build for Python 2.7, Python 3.7
Windows Build Python 2.7
Windows Build Python 3.7
100% code coverage, tested under Linux, OsX, Windows and Wine
Try it in Jupyter Notebook
You might try it right away in Jupyter Notebook by using the “launch binder” badge, or click here
Installation and Upgrade
From source code:
# normal install
python setup.py install
# test without installing
python setup.py test
via pip latest Release:
# latest Release from pypi
pip install lib_platform
via pip latest Development Version:
# upgrade all dependencies regardless of version number (PREFERRED)
pip install --upgrade https://github.com/bitranox/lib_platform/archive/master.zip --upgrade-strategy eager
# normal install
pip install --upgrade https://github.com/bitranox/lib_platform/archive/master.zip
# test without installing
pip install https://github.com/bitranox/lib_platform/archive/master.zip --install-option test
via requirements.txt:
# Insert following line in Your requirements.txt:
# for the latest Release:
lib_platform
# for the latest Development Version :
https://github.com/bitranox/lib_platform/archive/master.zip
# to install and upgrade all modules mentioned in requirements.txt:
pip install --upgrade -r /<path>/requirements.txt
via python:
# for the latest Release
python -m pip install --upgrade lib_platform
# for the latest Development Version
python -m pip install --upgrade https://github.com/bitranox/lib_platform/archive/master.zip
Basic Usage
>>> from lib_platform import *
>>> # possible values : lowercase, returns: 'darwin', 'linux', 'windows', 'windows_xp', 'windows_wine', 'windows_wine_xp'
>>> system
'linux'
>>> is_platform_linux
True
>>> is_platform_darwin
False
>>> is_platform_posix # either darwin or linux
True
>>> is_platform_windows # also True for windows_xp or windows_wine
False
>>> is_platform_windows_xp
False
>>> is_platform_windows_wine
False
>>> is_platform_windows_wine_xp
False
>>> username
'root'
>>> hostname
'test.host.com'
>>> hostname_short
'test'
>>> is_python2
False
>>> is_python3
True
>>> path_userhome
'/home/user'
Requirements
pytest, see : https://github.com/pytest-dev/pytest
typing, see : https://pypi.org/project/typing/
lib_registry, see: https://pypi.org/project/lib-registry/
Acknowledgement
special thanks to “uncle bob” Robert C. Martin, especially for his books on “clean code” and “clean architecture”
Contribute
I would love for you to fork and send me pull request for this project. Please contribute.
License
This software is licensed under the MIT license
See License file
Changelog
1.0.0
2019-03-28: Initial public release, PyPi Release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for lib_platform-1.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13d77b347ea5059bc86fcec12e326414e3964c3559b443cb2f07bdad21b54e2b |
|
MD5 | f16638151f9fa76f5b783cd4fb133b85 |
|
BLAKE2b-256 | b5d4915586ca26f0e7ed3d4aac344b476982abb35d0b64acf2ec2c056d561e30 |