Skip to main content

python useful function

Project description

License: AGPL-3

Overview

python-plus adds various features to python 2 and python 3 programs. It is designed to be used as integration of pypi future to help to port your code from Python 2 to Python 3 and still have it run on Python 2.

Python supplemental features

list_requirements.py: list environment requirements

This command is an internal command of python-plus but may be used as own command. list_requirements.py displays the pypi and binaries packages needed to create a virtual environment. It is specially designed to show Odoo requirements. Passing Odoo path it reads requirements.txt files in path and setup directories of OCA repositories.

vem: virtual environment manager

This command is an interactive tool with some nice features to manage standard virtual environment. Mainly it works ad standard pip but inside a specific virtual environment.

Usage

Code example

Simple examples of code

class / type test

Test if a string is unicode.

On Py2, this gives us:

>>> s = 'Hello World'
>>> isinstance(object, str)
True

On Py3, this gives us:

>>> s = b'Hello World'
>>> isinstance(object, bytes)
True

Then, for example, the following code has the same effect on Py2 as on Py3:

>>> from python_plus import isbytestr
>>> s = b'Hello World'
>>> isbytestr(s)
True

quoted string

Using class __:

>>> from python_plus import __
>>> my_str_list = __('abc,"d,e",fgh')
>>> my_list = my_str_list.qsplit(my_str_list)
>>> print my_list
['abc', 'd,e', 'fgh']

General function:

>>> from python_plus import qsplit
>>> my_str_list = 'abc,"d,e",fgh'
>>> my_list = qsplit(my_str_list)
>>> print my_list
['abc', 'd,e', 'fgh']

Code reference

`` str.qslit(sep=None, maxsplit=-1, quotes=[‘”’, ‘”’], escape=None, enquote=None, strip=None)``

Like split function return a list of the words in the string, using sep as the delimiter string. If maxsplit is given, at most maxsplit splits are done (thus, the list will have at most maxsplit+1 elements). If maxsplit is not specified or -1, then there is no limit on the number of splits (all possible splits are made).

If sep is given, consecutive delimiters are not grouped together and are deemed to delimit empty strings (for example, ‘1,,2’.split(‘,’) returns [‘1’, ‘’, ‘2’]). The sep argument may consist of multiple characters (for example, ‘1<>2<>3’.split(‘<>’) returns [‘1’, ‘2’, ‘3’]). Splitting an empty string with a specified separator returns [‘’].

If quotes is given, it is used to recognize quoted string: the sep tokens inside quoted string are ignored. The paramters quotes may be a string or a list. If it is a string trailing and ending delimiters are the same, like usual python string; if list is given, the first element is initial delimiter and the second element is the final delimiter like in html tag.

If escape is given, it is used to escape delimiters.

If enquote is True, returned list elements are enquoted by delimiters.

If strip is Tru, trailing and tailing spaces in returned list elements are removed.

For example:

>>> my_str_list = __('abc,"d,e",fgh')
>>> print my_str_list.qsplit(my_str_list)
['abc', 'd,e', 'fgh']

vem: virtual environment manager

Usage: vem.sh [-h][-a list][-BCD][-d paths][-E distro][-f][-F name][-gkIi][-l iso][-n][-O version][-o dir][-p pyver][-q][-r file][-stVvy] p3 p4 p5 p6 p7 p8 p9
Manage virtual environment
action may be: help amend cp check create exec info inspect install merge mv python shell rm show uninstall update test
 -h --help            this help
 -a list              bin packages to install (* means wkhtmltopdf,lessc)
 -B                   use unstable packages: -B testpypi / -BB from ~/tools / -BBB from ~/pypi / -BBBB link to local ~/pypi
 -C                   clear cache before executing pip command
 -D --devel           create v.environment with development packages
 -d --dep-path paths
                      odoo dependencies paths (comma separated)
 -E --distro distro
                      simulate Linux distro: like Ubuntu20 Centos7 etc (requires -n switch)
 -f --force           force v.environment create, even if exists or inside another virtual env
 -F name              simulate Linux family: may be RHEL or Debian (requires -n switch)
 -g --global          install npm packages globally
 -k --keep            keep python2 executable as python (deprecated)
 -I --indipendent     run pip in an isolated mode and set home virtual directory
 -i --isolated        run pip in an isolated mode, ignoring environment variables and user configuration
 -l --lang iso
                      set default language
 -n --dry_run         do nothing (dry-run)
 -O --odoo-ver version
                      install pypi required by odoo version (amend or create)
 -o --odoo-path dir
                      odoo path used to search odoo requirements
 -p --python pyver
                      python version
 -q --quiet           silent mode
 -r --requirement file
                      after created v.environment install from the given requirements file
 -s --system-site-pack
                      create v.environment with access to the global site-packages
 -t --travis          activate environment for travis test
 -V --version         show version
 -v --verbose         verbose mode
 -y --yes             assume yes

vem is an interactive tool with some nice features to manage standard virtual environment.

Action is one of:

  • help

  • amend [OPTIONS] [VENV]

  • check [OPTIONS] [VENV]

  • cp [OPTIONS] SRC_VENV TGT_ENV

  • create -p PYVER [OPTIONS] [VENV]

  • exec [OPTIONS] [VENV] CMD

  • info [OPTIONS] [VENV] PKG

  • inspect [OPTIONS] [VENV]

  • install [OPTIONS] [VENV] PKG

  • merge [OPTIONS] SRC_VENV TGT_ENV

  • mv [OPTIONS] SRC_VENV TGT_ENV

  • python VENV

  • shell VENV

  • show [OPTIONS] [VENV] PKG

  • uninstall [OPTIONS] [VENV] PKG

  • update [OPTIONS] [VENV] PKG

  • test VENV

amend [OPTIONS] [VENV]

Amend package versions against requirements. May used after ‘create’ when requirements are changed.

check [OPTIONS] [VENV]

Compare package versions against requirements. May be used after ‘create’ to check virtual environment consistency.

cp [OPTIONS] SRC_VENV TGT_ENV

Copy SOURCE environment directory to TGT_ENV, like the bash command ‘cp’ and set relative path inside virtual environment to aim the new directory name. Copying virtual environments is not well supported. Each virtualenv has path information hard-coded into it, and there may be cases where the copy code does not know it needs to update a particular file. Use with caution.

create -p PYVER [OPTIONS] VENV

Create a new virtual environment directory VENV like virtualenv command but with some nice features. Switch -p declare which python version will be used to create new environment. This action can install various python packages to create a ready to use environment directory. See -I -D -O -o -r switches to furthermore information.

exec [OPTIONS] [SRC_VENV] CMD …

Execute a command in virtual environment. Enclose command by quotes.

info [OPTIONS] [SRC_VENV] PKG

Show information about pypi package if installed in virtual environment (alias of show).

inspect [OPTIONS] [VENV]

Show internal configuration.

install [OPTIONS] [SRC_VENV] PKG

Install pypi package or bin package into virtual environment. Warning! currently just 2 bin packages can be installed: wkhtmltopdf and lessc.

merge [OPTIONS] SRC_VENV TGT_ENV

Merge 2 virtual environments.

mv [OPTIONS] SRC_VENV TGT_ENV

Move a virtual environment.

python VENV

Execute python interpreter of virtual environment with packages.

shell VENV

Execute bash inside virtual environment, with packages commands.

show [OPTIONS] [SRC_VENV] PKG

Show information about pypi package if installed in virtual environment (alias of info).

uninstall [OPTIONS] [SRC_VENV] PKG

Uninstall pypi package from virtual environment.

update [OPTIONS] [SRC_VENV] PKG

Upgrade pypi package in virtual environment.

test VENV

Execute pip check inside vritual environment.

Getting started

Prerequisites

Zeroincombenze(R) tools requires:

  • Linux Centos 7/8 or Debian 9/10/11 or Ubuntu 16/18/20/22/24

  • python 2.7+, some tools require python 3.7+, best python 3.9+

  • bash 5.0+

Installation

Stable version via Python Package

pip install python_plus

Current version via Git

cd $HOME
[[ ! -d ./tools ]] && git clone https://github.com/zeroincombenze/tools.git
cd ./tools
./install_tools.sh -pUT
source $HOME/devel/activate_tools

Upgrade

Stable version via Python Package

pip install --upgrade python_plus

Current version via Git

cd ./tools
./install_tools.sh -pUT
source $HOME/devel/activate_tools

ChangeLog History

2.0.15 (2024-10-02)

  • [FIX] vem.py: some packages line invoice2data on python 10.0

  • [FIX] vem: upgrade wkhtmltopdf naming

  • [FIX] list_requirements.py: packages with similar name (numpy -> numpy-financial)

  • [IMP] list_requirements.py: package versions improvements

2.0.14 (2024-07-08)

  • [IMP] list_requirements.py: package versions improvements

  • [IMP] Python 3.6 deprecated

2.0.13 (2024-05-11)

  • [IMP] list_requirements.py: package versions improvements

  • [FIX] list_requirements.py: in some rare cases wrong version to apply (factur-x)

  • [IMP] vem: now pip<23 and setuptools<58 are applied just if neeeded

  • [IMP] vem: pip is always updated to last version

2.0.12 (2024-02-29)

  • [IMP] New function str2bool()

2.0.11 (2024-02-05)

  • [FIX] vem: show right python version if 3.10+

  • [IMP] list_requirements.py improvements

  • [IMP] new python version assignment from odoo version

2.0.10 (2023-07-18)

  • [IMP] list_requirements.py: werkzeug for Odoo 16.0

  • [FIX] vem create: sometimes “virtualenv create” fails for python 2.7

  • [IMP] pip install packages with use2to3 is backupgrdae to < 23

2.0.9 (2023-06-26)

  • [IMP] list_requirements.py: werkzeug for Odoo 16.0

  • [IMP] list_requirements.py: best recognize mixed version odoo/python

  • [FIX] vem: commands return application status

2.0.7 (2023-05-08)

  • [IMP] list_requirements.py: upgrade version for Odoo 16.0

  • [REF] vem: partial refactoring

  • [IMP] Mots coverage test

2.0.6 (2023-03-24)

  • [IMP] list_requirements.py: cryptography, pypdf2, requests & urllib3 version adjustment

  • [IMP] list_requirements.py: pypdf and pypdf2 version adjustment

  • [IMP] list_requirements.py: best resolution when versions conflict

  • [IMP] vem: set list_requirements.py executable

2.0.5 (2022-12-23)

  • [IMP] list_requirements.py: refactoring version control

  • [IMP] vem: now amend can check current version (with -f switch)

2.0.4 (2022-12-15)

  • [IMP] Package version adjustment

  • [IMP] vem: amend show current package version

  • [IMP] vem: no python2 warning in linux kernel 3

  • [FIX] vem: best recognition of python version

2.0.3 (2022-11-08)

  • [IMP] npm management

  • [IMP] compute_date: refdate may be a string

2.0.2.1 (2022-11-01)

  • [FIX] Ensure coverage 5.0+

2.0.2 (2022-10-20)

  • [FIX] vem: wrong behavior with > o < in version

  • [IMP] list_requirements.py: “Crypto.Cipher”: “pycrypto”

2.0.1 (2022-10-12)

  • [IMP] stable version

2.0.0.3 (2022-09-14)

  • [FIX] vem: install package with list_requirements.py

2.0.0.2 (2022-09-10)

  • [FIX] vem: no input inquire

2.0.0.1 (2022-09-06)

  • [IMP] vem: new switch -d for Odoo dependencies path

  • [FIX] vem: create with best package list

  • [FIX] vem: install odoo/openerp

2.0.0 (2022-08-10)

  • [IMP] Stable version

Credits

Authors

Contributors



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

python_plus-2.0.15.tar.gz (303.9 kB view details)

Uploaded Source

File details

Details for the file python_plus-2.0.15.tar.gz.

File metadata

  • Download URL: python_plus-2.0.15.tar.gz
  • Upload date:
  • Size: 303.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.15

File hashes

Hashes for python_plus-2.0.15.tar.gz
Algorithm Hash digest
SHA256 f3bf3eaa99f113b06503901710ed2d4757a319e48d6576769d30ff39d5608b04
MD5 1861372e2b6a2621eae5883f12a114e3
BLAKE2b-256 dbdbd1d3c4653e969bc2b31dbbb3558ff6b95aa925c9750a5e2aede1d18e6a3c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page