Official Python SDK for Ediq AI Detection API by Wyzcon
Project description
Ediq - AI Detection SDK
Official Python client for Ediq AI Detection API by Wyzcon.
Detect AI-generated content in essays, assignments, and student work with 96% accuracy.
Installation
pip install ediq
Quick Start
from ediq import Ediq
# Initialize client with your API key
client = Ediq("wyz_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx")
# Detect AI in text
result = client.detect("Your text to analyze here...")
print(f"AI Probability: {result.probability}%")
print(f"Assessment: {result.assessment}")
print(f"Confidence: {result.confidence}%")
Get Your API Key
- Sign up at wyzcon.com
- Get your free API key
- Start detecting AI content
Features
- ✅ 96% accuracy on 10,000+ tested essays
- ✅ 9-layer detection system
- ✅ Student baselines - Protect good writers
- ✅ Photo scanning - OCR for handwritten essays
- ✅ Comprehensive reports - Detailed analysis
- ✅ Type hints - Full autocomplete support
Usage Examples
Basic Detection
from ediq import Ediq
client = Ediq("your_api_key")
result = client.detect("Text to analyze...")
print(result.probability) # 75.3
print(result.assessment) # "likely_ai"
With Student Baseline
result = client.detect(
text="Current submission...",
student_id="john_doe",
baseline="Previous authentic work..."
)
print(f"Similarity: {result.baseline_similarity:.1%}")
Detect from File
result = client.detect_file("essay.pdf")
print(f"AI: {result.probability}%")
Detect from Image (OCR)
result = client.detect_image(
"handwritten_essay.jpg",
handwritten=True
)
Documentation
Full documentation at docs.wyzcon.com
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ediq-1.0.0.tar.gz
(5.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
ediq-1.0.0-py3-none-any.whl
(5.9 kB
view details)
File details
Details for the file ediq-1.0.0.tar.gz.
File metadata
- Download URL: ediq-1.0.0.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00d4d0775ce86c080bc8633c579053b33d555c44e5f7e84600b464d56a8fe78e
|
|
| MD5 |
81a199b99dae596dc99b6e6f6d841c2a
|
|
| BLAKE2b-256 |
c12f8e1905edfb1e3b9082edf2c5d01cf2c47b809de77f96e3cdc3ce30211a33
|
File details
Details for the file ediq-1.0.0-py3-none-any.whl.
File metadata
- Download URL: ediq-1.0.0-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13289f44aed3ae1581615796fdc7bd7ec07acf7646f4c70689da67389b8db07f
|
|
| MD5 |
5e21aabf1a1bb3ebbe9057aa4379d619
|
|
| BLAKE2b-256 |
5f2410c99cc4ab72fc1c6c15d4094ce05212e04542cd32630c030728b5c069a0
|