
Research
6 Malicious Packagist Themes Ship Trojanized jQuery and FUNNULL Redirect Payloads
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.
ango
Advanced tools
A comprehensive Python SDK to interface programmatically with Ango Hub, iMerit's data annotation and AI training platform.
The iMerit-Ango SDK provides a powerful Python interface for interacting with Ango Hub, enabling you to:
Install the latest version from PyPI:
pip install imerit-ango
To upgrade to the latest version:
pip install -U imerit-ango
First, obtain your API key from your Ango Hub account page:
import os
from dotenv import load_dotenv
from imerit_ango.sdk import SDK
# Load environment variables
load_dotenv()
# Initialize SDK
sdk = SDK(api_key=os.getenv('API_KEY'))
# List your projects
projects = sdk.list_projects()
print(f"Found {len(projects)} projects")
# Get project details
project = sdk.get_project(project_id=os.getenv('PROJECT_ID'))
print(f"Project: {project['name']}")
create_project(), get_project(), list_projects()upload_files(), upload_files_cloud(), upload_chat_assets()create_batch(), assign_batches(), get_batches()get_tasks(), assign_task(), requeue_tasks()import_labels(), export(), exportV3()add_members_to_project()get_metrics(), get_project_performance()create_storage(), get_storages(), delete_storage()invite_members_to_org(), get_organization_members()update_organization_members_role()The SDK supports a wide variety of data types:
Full SDK documentation is available at: https://docs.imerit.net/sdk/sdk-documentation
# Create a new project
project = sdk.create_project(
organization_id=org_id,
name="My Annotation Project",
description="Object detection for autonomous vehicles"
)
# Upload images from local directory
sdk.upload_files(
project_id=project['_id'],
file_paths=['/path/to/images/*.jpg']
)
# Create batches for organized labeling
batch = sdk.create_batch(
project_id=project['_id'],
batch_name="Training Set Batch 1"
)
# Export annotations in COCO format
export_result = sdk.export(
project_id=project_id,
export_format='COCO'
)
# Download the export
import requests
response = requests.get(export_result['downloadUrl'])
with open('annotations.json', 'wb') as f:
f.write(response.content)
This SDK is provided by iMerit Technology Services for use with Ango Hub platform.
For the latest updates and detailed API reference, visit our complete documentation.
FAQs
Ango-Hub SDK
We found that ango demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.

Security News
The GCVE initiative operated by CIRCL has officially opened its publishing ecosystem, letting organizations issue and share vulnerability identifiers without routing through a central authority.

Security News
The project is retiring its odd/even release model in favor of a simpler annual cadence where every major version becomes LTS.