utilspy-g4


Nameutilspy-g4 JSON
Version 2.2.0 PyPI version JSON
download
home_pagehttps://github.com/Genzo4/utilspy
SummarySmall utils for Python
upload_time2023-04-06 00:31:17
maintainer
docs_urlNone
authorGenzo
requires_python>=3.6
licenseMIT
keywords utils utilspy g4 add ext add_ext del_ext del ext templated_remove_files templated remove files remove files get_ext get ext int_to_2str inttostr int2str get_files_count files count to_date date date_template date template
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![Language](https://img.shields.io/badge/English-brigthgreen)

# utilspy

![PyPI](https://img.shields.io/pypi/v/utilspy-g4)
![PyPI - License](https://img.shields.io/pypi/l/utilspy-g4)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/utilspy-g4)


Small utils for python

***

## Installation

### Package Installation from PyPi

```bash
$ pip install utilspy-g4
```

### Package Installation from Source Code

The source code is available on [GitHub](https://github.com/Genzo4/utilspy).  
Download and install the package:

```bash
$ git clone https://github.com/Genzo4/utilspy
$ cd utilspy
$ pip install .
```

***

## Utils

- ### add_ext
Add extension to path.

Support Windows and Linux paths.

```python
from utilspy_g4 import add_ext

path = '/test/test.png'
ext = '2'
new_path = add_ext(path, ext)     # new_path = '/test/test.2.png'
```

- ### del_ext
Del extension from path.

Support Windows and Linux paths.

```python
from utilspy_g4 import del_ext

path = '/test/test.png'
new_path = del_ext(path)     # new_path = '/test/test'

path = '/test/test.2.png'
new_path = del_ext(path)     # new_path = '/test/test.2'

path = '/test/test.2.png'
new_path = del_ext(path, 2)     # new_path = '/test/test'
```

- ### templated_remove_files
Remove files by template

```python
from utilspy_g4 import templated_remove_files

templated_remove_files('/tmp/test_*.txt')
```

- ### get_ext
Get extension from path.

Support Windows and Linux paths.

```python
from utilspy_g4 import get_ext

path = '/test/test.png'
ext = get_ext(path)     # ext = 'png'

path = '/test/test.jpeg.png'
ext = get_ext(path)     # ext = 'png'

path = '/test/test.jpeg.png'
ext = get_ext(path, 2)     # ext = 'jpeg'

path = '/test/test.jpeg.png'
ext = get_ext(path, 0)     # ext = ''
```

- ### int_to_2str
Convert integer to 2 chars string with 0.

```python
from utilspy_g4 import int_to_2str

time = f'{int_to_2str(2)}:{int_to_2str(23)}:{int_to_2str(5)}' # time = '02-23-05'
```

- ### get_files_count
Get files count from template.

Support Windows and Linux paths.

```python
from utilspy_g4 import get_files_count

get_files_count('/tmp/test_*.txt')
```

- ### date_template
Returns the date string representation template.

```python
from utilspy_g4 import date_template

template = date_template('2022/10/28')  # template = '%Y/%m/%d'
```

- ### to_date
Converts various representations of a date to the date format of the standard datetime library.

Currently supported:
- date
- datetime
- str ('2022/01/02', ...)

```python
from utilspy_g4 import to_date

d = to_date('2022/10/28')

# type(d) == date
# d.year = 2022
# d.month = 10
# d.day = 28
```

***

[Changelog](https://github.com/Genzo4/utilspy/blob/main/CHANGELOG.md)

***

![Language](https://img.shields.io/badge/Русский-brigthgreen)

# utilspy

![PyPI](https://img.shields.io/pypi/v/utilspy-g4)
![PyPI - License](https://img.shields.io/pypi/l/utilspy-g4)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/utilspy-g4)

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

***

## Установка

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

```bash
$ pip install utilspy-g4
```

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

Исходный код размещается на [GitHub](https://github.com/Genzo4/utilspy).  
Скачайте его и установите пакет:

```bash
$ git clone https://github.com/Genzo4/utilspy
$ cd utilspy
$ pip install .
```

***

## Утилиты

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

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

```python
from utilspy_g4 import add_ext

path = '/test/test.png'
ext = '2'
newPath = add_ext(path, ext)     # newPath = '/test/test.2.png'
```

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

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

```python
from utilspy_g4 import del_ext

path = '/test/test.png'
new_path = del_ext(path)     # newPath = '/test/test'

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

path = '/test/test.2.png'
new_path = del_ext(path, 2)     # newPath = '/test/test'
```

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

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

```python
from utilspy_g4 import templated_remove_files

templated_remove_files('/tmp/test_*.txt')
```

- ### get_ext
Возвращает расширение файла.
Можно указать какое по счёту расширение надо вернуть.

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

```python
from utilspy_g4 import get_ext

path = '/test/test.png'
ext = get_ext(path)     # ext = 'png'

path = '/test/test.jpeg.png'
ext = get_ext(path)     # ext = 'png'

path = '/test/test.jpeg.png'
ext = get_ext(path, 2)     # ext = 'jpeg'

path = '/test/test.jpeg.png'
ext = get_ext(path, 0)     # ext = ''
```

- ### int_to_2str
Преобразует число в строку из двух символов.
Если число состоит из одной цифры, то спереди добавляется '0'.

```python
from utilspy_g4 import int_to_2str

time = f'{int_to_2str(2)}:{int_to_2str(23)}:{int_to_2str(5)}' # time = '02-23-05'
```

- ### get_files_count
Возвращает количество файлов в папке по шаблону.

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

```python
from utilspy_g4 import get_files_count

get_files_count('/tmp/test_*.txt')
```

- ### date_template
Возвращает шаблон строкового представления даты.

```python
from utilspy_g4 import date_template

template = date_template('2022/10/28')  # template = '%Y/%m/%d'
```

- ### to_date
Преобразует различные представления даты в формат date стандартной библиотеки datetime.

На данный момент поддерживается:
- date
- datetime
- str ('2022/01/02', ...)

```python
from utilspy_g4 import to_date

d = to_date('2022/10/28')

# type(d) == date
# d.year = 2022
# d.month = 10
# d.day = 28
```

***

[Changelog](https://github.com/Genzo4/utilspy/blob/main/CHANGELOG.md)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Genzo4/utilspy",
    "name": "utilspy-g4",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "utils,utilspy,g4,add ext,add_ext,del_ext,del ext,templated_remove_files,templated remove files,remove files,get_ext,get ext,int_to_2str,inttostr,int2str,get_files_count,files count,to_date,date,date_template,date template",
    "author": "Genzo",
    "author_email": "genzo@bk.ru",
    "download_url": "https://files.pythonhosted.org/packages/0f/1b/6036382213a3d5c211e0a54e61daed728c45d8add91f5071409afe3032ab/utilspy_g4-2.2.0.tar.gz",
    "platform": null,
    "description": "![Language](https://img.shields.io/badge/English-brigthgreen)\r\n\r\n# utilspy\r\n\r\n![PyPI](https://img.shields.io/pypi/v/utilspy-g4)\r\n![PyPI - License](https://img.shields.io/pypi/l/utilspy-g4)\r\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/utilspy-g4)\r\n\r\n\r\nSmall utils for python\r\n\r\n***\r\n\r\n## Installation\r\n\r\n### Package Installation from PyPi\r\n\r\n```bash\r\n$ pip install utilspy-g4\r\n```\r\n\r\n### Package Installation from Source Code\r\n\r\nThe source code is available on [GitHub](https://github.com/Genzo4/utilspy).  \r\nDownload and install the package:\r\n\r\n```bash\r\n$ git clone https://github.com/Genzo4/utilspy\r\n$ cd utilspy\r\n$ pip install .\r\n```\r\n\r\n***\r\n\r\n## Utils\r\n\r\n- ### add_ext\r\nAdd extension to path.\r\n\r\nSupport Windows and Linux paths.\r\n\r\n```python\r\nfrom utilspy_g4 import add_ext\r\n\r\npath = '/test/test.png'\r\next = '2'\r\nnew_path = add_ext(path, ext)     # new_path = '/test/test.2.png'\r\n```\r\n\r\n- ### del_ext\r\nDel extension from path.\r\n\r\nSupport Windows and Linux paths.\r\n\r\n```python\r\nfrom utilspy_g4 import del_ext\r\n\r\npath = '/test/test.png'\r\nnew_path = del_ext(path)     # new_path = '/test/test'\r\n\r\npath = '/test/test.2.png'\r\nnew_path = del_ext(path)     # new_path = '/test/test.2'\r\n\r\npath = '/test/test.2.png'\r\nnew_path = del_ext(path, 2)     # new_path = '/test/test'\r\n```\r\n\r\n- ### templated_remove_files\r\nRemove files by template\r\n\r\n```python\r\nfrom utilspy_g4 import templated_remove_files\r\n\r\ntemplated_remove_files('/tmp/test_*.txt')\r\n```\r\n\r\n- ### get_ext\r\nGet extension from path.\r\n\r\nSupport Windows and Linux paths.\r\n\r\n```python\r\nfrom utilspy_g4 import get_ext\r\n\r\npath = '/test/test.png'\r\next = get_ext(path)     # ext = 'png'\r\n\r\npath = '/test/test.jpeg.png'\r\next = get_ext(path)     # ext = 'png'\r\n\r\npath = '/test/test.jpeg.png'\r\next = get_ext(path, 2)     # ext = 'jpeg'\r\n\r\npath = '/test/test.jpeg.png'\r\next = get_ext(path, 0)     # ext = ''\r\n```\r\n\r\n- ### int_to_2str\r\nConvert integer to 2 chars string with 0.\r\n\r\n```python\r\nfrom utilspy_g4 import int_to_2str\r\n\r\ntime = f'{int_to_2str(2)}:{int_to_2str(23)}:{int_to_2str(5)}' # time = '02-23-05'\r\n```\r\n\r\n- ### get_files_count\r\nGet files count from template.\r\n\r\nSupport Windows and Linux paths.\r\n\r\n```python\r\nfrom utilspy_g4 import get_files_count\r\n\r\nget_files_count('/tmp/test_*.txt')\r\n```\r\n\r\n- ### date_template\r\nReturns the date string representation template.\r\n\r\n```python\r\nfrom utilspy_g4 import date_template\r\n\r\ntemplate = date_template('2022/10/28')  # template = '%Y/%m/%d'\r\n```\r\n\r\n- ### to_date\r\nConverts various representations of a date to the date format of the standard datetime library.\r\n\r\nCurrently supported:\r\n- date\r\n- datetime\r\n- str ('2022/01/02', ...)\r\n\r\n```python\r\nfrom utilspy_g4 import to_date\r\n\r\nd = to_date('2022/10/28')\r\n\r\n# type(d) == date\r\n# d.year = 2022\r\n# d.month = 10\r\n# d.day = 28\r\n```\r\n\r\n***\r\n\r\n[Changelog](https://github.com/Genzo4/utilspy/blob/main/CHANGELOG.md)\r\n\r\n***\r\n\r\n![Language](https://img.shields.io/badge/\u0420\u0443\u0441\u0441\u043a\u0438\u0439-brigthgreen)\r\n\r\n# utilspy\r\n\r\n![PyPI](https://img.shields.io/pypi/v/utilspy-g4)\r\n![PyPI - License](https://img.shields.io/pypi/l/utilspy-g4)\r\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/utilspy-g4)\r\n\r\n\u041d\u0435\u0431\u043e\u043b\u044c\u0448\u0438\u0435 \u0443\u0442\u0438\u043b\u0438\u0442\u044b \u0434\u043b\u044f Python.\r\n\r\n***\r\n\r\n## \u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430\r\n\r\n### \u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u0430\u043a\u0435\u0442\u0430 \u0441 PyPi\r\n\r\n```bash\r\n$ pip install utilspy-g4\r\n```\r\n\r\n### \u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u0430\u043a\u0435\u0442\u0430 \u0438\u0437 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u043a\u043e\u0434\u0430\r\n\r\n\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u043e\u0434 \u0440\u0430\u0437\u043c\u0435\u0449\u0430\u0435\u0442\u0441\u044f \u043d\u0430 [GitHub](https://github.com/Genzo4/utilspy).  \r\n\u0421\u043a\u0430\u0447\u0430\u0439\u0442\u0435 \u0435\u0433\u043e \u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043f\u0430\u043a\u0435\u0442:\r\n\r\n```bash\r\n$ git clone https://github.com/Genzo4/utilspy\r\n$ cd utilspy\r\n$ pip install .\r\n```\r\n\r\n***\r\n\r\n## \u0423\u0442\u0438\u043b\u0438\u0442\u044b\r\n\r\n- ### add_ext\r\n\u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0435\u0442 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u043f\u0435\u0440\u0435\u0434 \u0435\u0433\u043e \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u043c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435\u043c.\r\n\r\n\u041e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0435\u0442 \u043a\u0430\u043a Windows \u043f\u0443\u0442\u0438, \u0442\u0430\u043a \u0438 Linux.\r\n\r\n```python\r\nfrom utilspy_g4 import add_ext\r\n\r\npath = '/test/test.png'\r\next = '2'\r\nnewPath = add_ext(path, ext)     # newPath = '/test/test.2.png'\r\n```\r\n\r\n- ### del_ext\r\n\u0423\u0434\u0430\u043b\u044f\u0435\u0442 \u043e\u0434\u043d\u043e \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0439 \u0444\u0430\u0439\u043b\u0430\r\n\r\n\u041e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0435\u0442 \u043a\u0430\u043a Windows \u043f\u0443\u0442\u0438, \u0442\u0430\u043a \u0438 Linux.\r\n\r\n```python\r\nfrom utilspy_g4 import del_ext\r\n\r\npath = '/test/test.png'\r\nnew_path = del_ext(path)     # newPath = '/test/test'\r\n\r\npath = '/test/test.2.png'\r\nnew_path = del_ext(path)     # newPath = '/test/test.2'\r\n\r\npath = '/test/test.2.png'\r\nnew_path = del_ext(path, 2)     # newPath = '/test/test'\r\n```\r\n\r\n- ### templated_remove_files\r\n\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u043e\u0432 \u043f\u043e \u0448\u0430\u0431\u043b\u043e\u043d\u0443\r\n\r\n\u041e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0435\u0442 \u043a\u0430\u043a Windows \u043f\u0443\u0442\u0438, \u0442\u0430\u043a \u0438 Linux.\r\n\r\n```python\r\nfrom utilspy_g4 import templated_remove_files\r\n\r\ntemplated_remove_files('/tmp/test_*.txt')\r\n```\r\n\r\n- ### get_ext\r\n\u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u0442 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430.\r\n\u041c\u043e\u0436\u043d\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u043a\u0430\u043a\u043e\u0435 \u043f\u043e \u0441\u0447\u0451\u0442\u0443 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u043d\u0430\u0434\u043e \u0432\u0435\u0440\u043d\u0443\u0442\u044c.\r\n\r\n\u041e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0435\u0442 \u043a\u0430\u043a Windows \u043f\u0443\u0442\u0438, \u0442\u0430\u043a \u0438 Linux.\r\n\r\n```python\r\nfrom utilspy_g4 import get_ext\r\n\r\npath = '/test/test.png'\r\next = get_ext(path)     # ext = 'png'\r\n\r\npath = '/test/test.jpeg.png'\r\next = get_ext(path)     # ext = 'png'\r\n\r\npath = '/test/test.jpeg.png'\r\next = get_ext(path, 2)     # ext = 'jpeg'\r\n\r\npath = '/test/test.jpeg.png'\r\next = get_ext(path, 0)     # ext = ''\r\n```\r\n\r\n- ### int_to_2str\r\n\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442 \u0447\u0438\u0441\u043b\u043e \u0432 \u0441\u0442\u0440\u043e\u043a\u0443 \u0438\u0437 \u0434\u0432\u0443\u0445 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432.\r\n\u0415\u0441\u043b\u0438 \u0447\u0438\u0441\u043b\u043e \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0438\u0437 \u043e\u0434\u043d\u043e\u0439 \u0446\u0438\u0444\u0440\u044b, \u0442\u043e \u0441\u043f\u0435\u0440\u0435\u0434\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f '0'.\r\n\r\n```python\r\nfrom utilspy_g4 import int_to_2str\r\n\r\ntime = f'{int_to_2str(2)}:{int_to_2str(23)}:{int_to_2str(5)}' # time = '02-23-05'\r\n```\r\n\r\n- ### get_files_count\r\n\u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u0442 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0444\u0430\u0439\u043b\u043e\u0432 \u0432 \u043f\u0430\u043f\u043a\u0435 \u043f\u043e \u0448\u0430\u0431\u043b\u043e\u043d\u0443.\r\n\r\n\u041e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0435\u0442 \u043a\u0430\u043a Windows \u043f\u0443\u0442\u0438, \u0442\u0430\u043a \u0438 Linux.\r\n\r\n```python\r\nfrom utilspy_g4 import get_files_count\r\n\r\nget_files_count('/tmp/test_*.txt')\r\n```\r\n\r\n- ### date_template\r\n\u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u0442 \u0448\u0430\u0431\u043b\u043e\u043d \u0441\u0442\u0440\u043e\u043a\u043e\u0432\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u0442\u044b.\r\n\r\n```python\r\nfrom utilspy_g4 import date_template\r\n\r\ntemplate = date_template('2022/10/28')  # template = '%Y/%m/%d'\r\n```\r\n\r\n- ### to_date\r\n\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u0430\u0442\u044b \u0432 \u0444\u043e\u0440\u043c\u0430\u0442 date \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 datetime.\r\n\r\n\u041d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f:\r\n- date\r\n- datetime\r\n- str ('2022/01/02', ...)\r\n\r\n```python\r\nfrom utilspy_g4 import to_date\r\n\r\nd = to_date('2022/10/28')\r\n\r\n# type(d) == date\r\n# d.year = 2022\r\n# d.month = 10\r\n# d.day = 28\r\n```\r\n\r\n***\r\n\r\n[Changelog](https://github.com/Genzo4/utilspy/blob/main/CHANGELOG.md)\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Small utils for Python",
    "version": "2.2.0",
    "split_keywords": [
        "utils",
        "utilspy",
        "g4",
        "add ext",
        "add_ext",
        "del_ext",
        "del ext",
        "templated_remove_files",
        "templated remove files",
        "remove files",
        "get_ext",
        "get ext",
        "int_to_2str",
        "inttostr",
        "int2str",
        "get_files_count",
        "files count",
        "to_date",
        "date",
        "date_template",
        "date template"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffaff6ab8954c7ec2b8f0e6a20c71d92a67662fb36a5610961c54f6c100200e9",
                "md5": "83caf3beca7746b8fdfcfdcf9401fa3c",
                "sha256": "7feafcb926e77e871ab910de57ed871227fafb0077ae90e9771416febb7d043d"
            },
            "downloads": -1,
            "filename": "utilspy_g4-2.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "83caf3beca7746b8fdfcfdcf9401fa3c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 5954,
            "upload_time": "2023-04-06T00:31:10",
            "upload_time_iso_8601": "2023-04-06T00:31:10.498903Z",
            "url": "https://files.pythonhosted.org/packages/ff/af/f6ab8954c7ec2b8f0e6a20c71d92a67662fb36a5610961c54f6c100200e9/utilspy_g4-2.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f1b6036382213a3d5c211e0a54e61daed728c45d8add91f5071409afe3032ab",
                "md5": "ac3b945490d441412022cb18f6ced41f",
                "sha256": "07a3e472c6585b4dc47eb4cc1a97c0d669aef9bff65658e48bab36ebe9599a76"
            },
            "downloads": -1,
            "filename": "utilspy_g4-2.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ac3b945490d441412022cb18f6ced41f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 9225,
            "upload_time": "2023-04-06T00:31:17",
            "upload_time_iso_8601": "2023-04-06T00:31:17.806449Z",
            "url": "https://files.pythonhosted.org/packages/0f/1b/6036382213a3d5c211e0a54e61daed728c45d8add91f5071409afe3032ab/utilspy_g4-2.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-06 00:31:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "Genzo4",
    "github_project": "utilspy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "utilspy-g4"
}
        
Elapsed time: 0.05824s