import os from weasyprint import HTML # Completely simplified HTML content with plain, direct wording html_simple_content = """ Webrix Technologies - Pricing Proposal
WEBRIX TECHNOLOGIES
Project Pricing Proposal
LMS & Competition Platform Development

Webrix Technologies ki taraf se aapki requirements ke mutabiq asaan aur simple software development packages niche diye gaye hain. Aap apni zaroorat aur budget ke mutabiq behtareen option select kar sakte hain.

Development Packages

Basic
Essential Package
Rs. 3,50,000
One-time — No post-launch support
What is included:
Payment Terms: 50% Advance | 50% on Final Delivery
Premium
Enterprise Package
Rs. 8,00,000
Full System + 90 Days Priority Support
What is included:
Payment Terms: 5 installments linked with weekly project milestones

Monthly Maintenance & Support (Post-Warranty)

Free warranty support khatam hone ke baad, system ko smoothly chalane, security updates lagane aur backup rakhne ke liye Webrix Technologies yeh monthly packages provide karti hai:

Support Plan Monthly Fee Services & Scope
Basic Retainer Rs. 25,000 / mo • Server health monitoring & daily database backups.
• Regular security patches & minor bug fixes.
• Standard email/chat support (48 hours response time).
Standard Growth Rs. 50,000 / mo • Server optimization for small user traffic spikes.
• Flutter & Firebase core system updates.
• Small UI changes & extra bug fixes (up to 8 hours of work/mo).
• 24-hour response time for critical system errors.
Enterprise SLA Rs. 95,000 / mo • Dedicated support for heavy traffic events (20,000+ live users).
• Continuous database tuning & performance checks.
• App feature updates & design modifications (up to 20 hours of work/mo).
• Emergency urgent hotline support with an instant 2-hour response guarantee.
""" # Saving the simplified file html_file_path = "Webrix_Simple_Proposal.html" pdf_file_path = "Webrix_Simple_Proposal.pdf" with open(html_file_path, "w", encoding="utf-8") as f: f.write(html_simple_content) # Render to PDF HTML(html_file_path).write_pdf(pdf_file_path) print("Simple PDF successfully generated!")