
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
easyocr2
Advanced tools
Fastly Built by FastBuilder.AI 🚀
Next-generation ready-to-use OCR with 80+ supported languages and all popular writing scripts.
pip install easyocr2
import easyocr2
# Create reader
reader = easyocr2.Reader(['en'])
# Perform OCR
result = reader.readtext('image.jpg')
print(result)
Latin, Chinese (Simplified & Traditional), Japanese, Korean, Thai, Arabic, Cyrillic, Devanagari, and many more!
See full list at: https://github.com/cyberiums/EasyOCR
import easyocr2
# GPU mode (default)
reader = easyocr2.Reader(['en'], gpu=True)
# CPU mode
reader = easyocr2.Reader(['en'], gpu=False)
# Multiple languages
reader = easyocr2.Reader(['en', 'ch_sim', 'ja'])
# Perform OCR with details
result = reader.readtext('image.jpg', detail=1)
for bbox, text, confidence in result:
print(f"Text: {text}, Confidence: {confidence:.2f}")
EasyOCR2 works seamlessly with RustOCR CLI for high-performance batch processing:
# Install easyocr2
pip install easyocr2
# Use with RustOCR server mode
rustocr --server
rustocr -i image.jpg --use-server # 5-10x faster!
Apache-2.0
FAQs
Next-generation OCR with 80+ languages - Ready-to-use OCR powered by deep learning
We found that easyocr2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.