Loadimg

Latest version: v0.4.0

Safety actively analyzes 715032 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 3

0.4.0

What's Changed
* Add ascii and ansii by not-lain in https://github.com/not-lain/loadimg/pull/20
* add extra dependencies and update github workflow by not-lain in https://github.com/not-lain/loadimg/pull/21
* add cli command by not-lain in https://github.com/not-lain/loadimg/pull/22

Terminal

>>> loadimg https://icon-library.com/images/50x50-icon/50x50-icon-0.jpg --output-type ascii



*%
%********%
****
%****%
%***
**
**
%**
%%%%**
%****%**
***%**%
%***%%***%
**%%**
%*%%**
%%%%***%
%%%%%%**
%%%%%%%%%%***%
%%%**
%***
%***
*****
%*****%
%*****
%*****%
%*****
%****
****%
*****%
****%
%****%
%***%
%***
%**
**
%**%
%*
*
%*%
%*
%%*%

%%%%*%
%%
%%%*%
%%
%%%%*%
%%%%
%%
%%%%%
%%%%%%
%%..=%
= :=%+*%
%%. .. :=%+:. .%%%
%% ..... :=%*-. . +%
%* ..... -%+. :=%: .... :%
* .... .%+ .:%. ... :%
* .... -* ... *.: ..:%
. ... :- .. . +* .-+*%%%
%: ... :++: . .+-...+%%%
%%* . -%%%+%%%
%=-=*%%%%*=--=%
%%%%%%%%=------=%
%%%%+----------=%%%
%%%--------------*%%
%*----------------=%%
%+-------------------%%
%%+---------------------%
%%+-----------------------%
%%-------------------------%%
=--------------------------%
%**++=====*:--------------------------=
%*+==---------*---------------------------*%%
*+=-------------%%*+=-----------------------
%+=----------------.:=*%%*++==---------------*%
%+=------------------ .-%*+=---------=%
%%*=--------------------%. :+*+++**%%*=------
%%=----------------------++ -+=---------==+*%+----%
%%*-------------------------%*=--===========---+%%%+--%
%%+---------------------------+--=============--*%%=%
%%=-----------------------------++-============-=%%
%%=-------------------------------=%*=-========--+%
%%=----------------------------------*%+--=====-=-=
%=------------------------------------=%%+----=**---*
%=---------------------------------------*%+=+%%=----=
%+---------------------------------------=-------*%
=---------------------------------------=%+--------
=---------------------------------------=--------+%
=--------------------------------------------=
%+=---------------------------------------+
+=---------------------------------=*%
*=---------------------------=*%
%*+==---------------==+*
%%******%%




`




**LOADIMG FUTURE RELEASES █████░**

**Full Changelog**: https://github.com/not-lain/loadimg/compare/v0.3.6...v0.4.0

0.3.6

What's Changed
* add tests by not-lain in https://github.com/not-lain/loadimg/pull/17
* add python 3.9 tests by not-lain in https://github.com/not-lain/loadimg/pull/18
* update readme by not-lain in https://github.com/not-lain/loadimg/pull/19

**LOADIMG FUTURE RELEASES █████░**

**Full Changelog**: https://github.com/not-lain/loadimg/compare/v0.3.5...v0.3.6

0.3.5

What's Changed
* hotfix for huggingface and drive urls 🛠️ not-lain
* more chill url handling
py
from loadimg import load_img
url = "https://storage.googleapis.com/isolate-dev-hot-rooster_toolkit_bucket/github_110602490/0127d6b615a64c2ab68a5460a7913067_95628e8b60354f2982f4d2af22696f8a.png?X-Goog-Algorithm=GOOG4-RSA-SHA256&X-Goog-Credential=gke-service-account%40isolate-dev-hot-rooster.iam.gserviceaccount.com%2F20241125%2Fauto%2Fstorage%2Fgoog4_request&X-Goog-Date=20241125T221525Z&X-Goog-Expires=604800&X-Goog-SignedHeaders=host&X-Goog-Signature=85e87080a622d05d2904518fdbf780c10fecc34de12603361fa3a2822b6ca4c4547ed336ab4faa76ce6320bbd62d309f1687f2ba6bcf30b1e1c48dc5b7089c8d1fb4fa42549e24dc5b62b62654f699cbeb68ad5a27f16d689709b394392837d7f43f8fd1043542e3edb8582f7c5477bf726db996c10af112dc3a8cd2ace41e08743b2126242f65cfc57afa8add10dc467028f67be0cd9c97c64d1ab21d547710650f63a3b0145f1ef903eef3269d522d75429a342995326b254d3ad5c09f03f2fb413c5dfad8b2703844e2ed5eb11a3595a4f666428134f20019ae4d7cce09460d3de8a1bf4c1eed6a09596320f7c168f96ae833c7d5e74bdb870c5de48ea21e"
load_img(url)

![image](https://github.com/user-attachments/assets/6933a109-071f-4084-9f31-b621ccadb416)




**LOADIMG FUTURE RELEASES █████░**
**Full Changelog**: https://github.com/not-lain/loadimg/compare/v0.3.4...v0.3.5

0.3.4

What's Changed
* more robust url handling by not-lain in https://github.com/not-lain/loadimg/pull/14


**LOADIMG FUTURE RELEASES █████░**

**Full Changelog**: https://github.com/not-lain/loadimg/compare/v0.3.3...v0.3.4

0.3.3

What's Changed
* update base64 implementation to support huggingface inference by not-lain in https://github.com/not-lain/loadimg/pull/13

this will support sending images to huggingface inference API as base64

python
from loadimg import load_img
from huggingface_hub import InferenceClient

or load a local image
my_b64_img = load_img("https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg", output_type="base64" )

client = InferenceClient(api_key="hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx")

messages = [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Describe this image in one sentence."
},
{
"type": "image_url",
"image_url": {
"url": my_b64_img base64 allows using images without uploading them to the web
}
}
]
}
]

stream = client.chat.completions.create(
model="meta-llama/Llama-3.2-11B-Vision-Instruct",
messages=messages,
max_tokens=500,
stream=True
)

for chunk in stream:
print(chunk.choices[0].delta.content, end="")


**LOADIMG FUTURE RELEASES █████░**

**Full Changelog**: https://github.com/not-lain/loadimg/compare/v0.3.2...v0.3.3

0.3.2

What's Changed
* fix huggingface file download

**Full Changelog**: https://github.com/not-lain/loadimg/compare/v0.3.1...v0.3.2

**LOADIMG FUTURE RELEASES █████░**

Page 1 of 3

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.