Skip to main content

Small utils for Python

Project description

Language

utilspy

PyPI PyPI - License PyPI - Python Version

Small utils for python


Installation

Package Installation from PyPi

$ pip install utilspy-g4

Package Installation from Source Code

The source code is available on GitHub.
Download and install the package:

$ git clone https://github.com/Genzo4/utilspy
$ cd utilspy
$ pip install -r requirements.txt
$ pip install .

Utils

  • addExt

Add ext to path.

Support Windows and Linux paths.

from utilspy_g4 import addExt

path = '/test/test.png'
ext = '2'
newPath = addExt(path, ext)     # newPath = '/test/test.2.png'
  • compareFrames

Compare 2 frames.

from utilspy_g4 import compareFrames

is_equal = compareFrames('path_to_frame_1.png', 'path_to_frame_2.png')
  • delExt

Del ext from path.

Support Windows and Linux paths.

from utilspy_g4 import delExt

path = '/test/test.png'
newPath = delExt(path)     # newPath = '/test/test'

path = '/test/test.2.png'
newPath = delExt(path)     # newPath = '/test/test.2'

path = '/test/test.2.png'
newPath = delExt(path, 2)     # newPath = '/test/test'
  • templatedRemoveFiles

Remove files by template

from utilspy_g4 import templatedRemoveFiles

templatedRemoveFiles('/tmp/test_*.txt')

Changelog


Language

utilspy

PyPI PyPI - License PyPI - Python Version

Небольшие утилитки для Python.


Установка

Установка пакета с PyPi

$ pip install utilspy-g4

Установка пакета из исходного кода

Исходный код размещается на GitHub.
Скачайте его и установите пакет:

$ git clone https://github.com/Genzo4/utilspy
$ cd utilspy
$ pip install -r requirements.txt
$ pip install .

Утилиты

  • addExt

Добавляет дополнительное расширение файла перед его последним расширением.

Обрабатывает как Windows пути, так и Linux.

from utilspy_g4 import addExt

path = '/test/test.png'
ext = '2'
newPath = addExt(path, ext)     # newPath = '/test/test.2.png'
  • compareFrames

Сравнение двух кадров (изображений).

from utilspy_g4 import compareFrames

is_equal = compareFrames('path_to_frame_1.png', 'path_to_frame_2.png')
  • delExt

Удаляет одно или несколько расширений файла

Обрабатывает как Windows пути, так и Linux.

from utilspy_g4 import delExt

path = '/test/test.png'
newPath = delExt(path)     # newPath = '/test/test'

path = '/test/test.2.png'
newPath = delExt(path)     # newPath = '/test/test.2'

path = '/test/test.2.png'
newPath = delExt(path, 2)     # newPath = '/test/test'
  • templatedRemoveFiles

Удаление файлов по шаблону

from utilspy_g4 import templatedRemoveFiles

templatedRemoveFiles('/tmp/test_*.txt')

Changelog

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

utilspy_g4-1.3.0.tar.gz (5.0 kB view hashes)

Uploaded Source

Built Distribution

utilspy_g4-1.3.0-py3-none-any.whl (4.9 kB view hashes)

Uploaded Python 3

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