Welcome! This guide will get you up and running in under 5 minutes.
Select the path that matches what you want to accomplish:
Convert legal documents to verified mathematical proofs
# 1. Install with theorem proving support
pip install ipfs-datasets-py[theorem_proving]
# 2. Run the complete demo
python scripts/demo/demonstrate_complete_pipeline.py --install-all
# 3. Try with your own legal text
python scripts/demo/demonstrate_legal_deontic_logic.py --text "Citizens must vote"What you get: Website text extraction → GraphRAG processing → Formal logic → Mathematical proof verification
AI-powered document processing with knowledge graphs
# 1. Install with GraphRAG support
pip install ipfs-datasets-py[graphrag]
# 2. Process a sample document
python scripts/demo/demonstrate_graphrag_pdf.py --create-sample
# 3. Try with your own PDF
python scripts/demo/demonstrate_graphrag_pdf.py your_document.pdf --test-queriesWhat you get: PDF processing → Entity extraction → Knowledge graphs → Semantic querying
Download and process media from 1000+ platforms
# 1. Install multimedia support
pip install ipfs-datasets-py[multimedia]
# 2. Try the multimedia demo
python examples/demo_multimedia_final.py
# 3. Download your first video
python -c "
from ipfs_datasets_py.data_transformation.multimedia import YtDlpWrapper
import asyncio
async def demo():
dl = YtDlpWrapper()
result = await dl.download_video('https://youtube.com/watch?v=dQw4w9WgXcQ')
print(f'Downloaded: {result[\"title\"]}')
asyncio.run(demo())
"
What you get: Universal media downloading → Format conversion → Metadata extraction → IPFS storage
200+ development tools for AI assistants
# 1. Install development features
pip install ipfs-datasets-py[dev]
# 2. Start the MCP server
python -m ipfs_datasets_py.mcp_server --port 8080
# 3. Test tool availability
python -c "
from ipfs_datasets_py.mcp_server.tools.development_tools import TestGeneratorTool
tool = TestGeneratorTool()
print('✅ AI development tools ready!')
"What you get: Test generation → Documentation automation → Code analysis → Performance profiling
Full-featured deployment with security and monitoring
# 1. Install all features
pip install ipfs-datasets-py[all]
# 2. Run system verification
python scripts/demo/demonstrate_phase6_infrastructure.py
# 3. Start production services
docker-compose up -d # See deployment/ directoryWhat you get: Complete platform → Security & audit → Monitoring & analytics → Scalable deployment
Want to see everything working together? Run this single command:
git clone https://github.com/endomorphosis/ipfs_datasets_py.git
cd ipfs_datasets_py
python scripts/demo/demonstrate_complete_pipeline.py --install-all --prove-long-statementsThis will:
- ✅ Install all theorem provers (Z3, CVC5, Lean 4, Coq)
- ✅ Extract text from a website
- ✅ Process it through GraphRAG
- ✅ Convert to formal deontic logic
- ✅ Execute mathematical proofs
- ✅ Show you the complete pipeline working
Expected output: 12 legal statements proven with 100% success rate in under 30 seconds.
After completing your chosen path, explore these advanced topics:
- 🔧 Configuration Guide - Customize for your needs
- 🔍 Advanced Examples - Real-world use cases
- 🚀 Production Deployment - Scale to production
- 🤝 Contributing - Join the community
- Quick Questions: Check the FAQ
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Email: starworks5@gmail.com
⏱️ Total time to value: Under 5 minutes
🎯 Success rate: 100% with proper dependencies
🚀 Ready for production: Yes