Skip to main content

A utility library for everyday use.

Project description

安装:

pip install long-utils

图像

图中找图

from long_utils.image.search import ImgFindImg

img = ImgFindImg(img_source='static/big.png', img_search='static/small.png')
img.find_coord(is_debug=True)

# 或者只拿取小图在原图中的坐标rectangle, 小图在原图中的大小result,confidence表示准确率
res = img.find_coord()
# [{'result': (539.0, 21.5), 'rectangle': ((524, 10), (524, 33), (554, 10), (554, 33)), 'confidence': 1.0}]
print(res)

其他

日志输出

from long_utils import Log

logger = Log(show_line=True, show_file_name=True, show_time=True)

logger.error(message="xxxx")
logger.success(message="xxxx")
logger.warning(message="xxxx")
logger.info(message="xxxx")
logger.debug(message="xxxx")

logger.success_bg('xxxx')
logger.error_bg('xxxx')
logger.warning_bg('xxxx')
logger.debug_bg('xxxx')
logger.info_bg('xxxx')
logger.color('xxxx', fg='blue', bg='black')

对象存储OSS

配置

from long_utils.storage.config import SSconfig
from long_utils.storage.aliyun.oss import AliyumOss

access_key = 'xxx'
access_key_secret = 'xxx'
endpoint = 'https://oss-cn-shanghai.aliyuncs.com'
bucket_name = 'xxx'
ss_config = SSconfig(
    access_key_id=access_key,
    access_key_secret=access_key_secret,
    bucket_url=endpoint,
    bucket_name=bucket_name
)
aliyun_client = AliyumOss(
    config=ss_config
)

分片下载文件到本地

aliyun_client.multipart_upload_file(key='xxx.pth', local_file='xxx.pth')

如果需要知道下载进度,可以:

def progress_callback(block_size, total_size):
    print(f"正在下载: {block_size / total_size * 100:.2f}%")

aliyun_client.multipart_upload_file(key='xxx.pth', local_file='xxx.pth', progress_callback=progress_callback)

分片上传本地文件

aliyun_client.multipart_upload_file(key='xxx.pth', file='xxxx.pth')

如果需要知道上传进度,可以:

def progress_callback(block_size, total_size):
    print(f"正在上传: {block_size / total_size * 100:.2f}%")

aliyun_client.multipart_upload_file(key='xxx.pth', file='xxx.pth', progress_callback=progress_callback)

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

long-utils-0.7.tar.gz (8.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

long_utils-0.7-py3-none-any.whl (15.0 kB view details)

Uploaded Python 3

File details

Details for the file long-utils-0.7.tar.gz.

File metadata

  • Download URL: long-utils-0.7.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.5

File hashes

Hashes for long-utils-0.7.tar.gz
Algorithm Hash digest
SHA256 f905507d8544f655afeb55bcca1cc011c8763b62e92fa894fbc2b947215668d9
MD5 4cac60a87acec3bc57f561c8dfba0b18
BLAKE2b-256 0c563a46180bc5c857098b61f13ce2bdcf5693aaab2daf4cf84388b459835657

See more details on using hashes here.

File details

Details for the file long_utils-0.7-py3-none-any.whl.

File metadata

  • Download URL: long_utils-0.7-py3-none-any.whl
  • Upload date:
  • Size: 15.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.5

File hashes

Hashes for long_utils-0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 3c67b93083ff98f184b84b6c21c23cb66ba509a4c1ae0f9fbdc64665e158318f
MD5 fc9b4f69bf9e4464cdbba7d6d893c853
BLAKE2b-256 acbdcd72ac9d9cac7826bbb6e161f8f4e791f240e8c16ef43e52861c415f9001

See more details on using hashes here.

Supported by

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