| Name | ultron-analyzer JSON | 
            
| Version | 
                  1.2
                   
                  JSON | 
            
 | download  | 
            
| home_page | https://github.com/ompandey07/Ultron  | 
            
| Summary | 🤖 Advanced website performance analyzer and optimizer | 
            | upload_time | 2025-08-10 11:59:32 | 
            | maintainer | None | 
            
            | docs_url | None | 
            | author | Om Pandey | 
            
            | requires_python | >=3.7 | 
            
            
            | license | MIT License
        
        Copyright (c) 2025 Om Pandey
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE. | 
            | keywords | 
                
                    website
                
                     analyzer
                
                     performance
                
                     seo
                
                     security
                
                     optimization
                 | 
            | VCS | 
                
                     | 
                
            
            | bugtrack_url | 
                
                 | 
             
            
            | requirements | 
                
                   
                       requests
                   
                       beautifulsoup4
                   
                       lxml
                   
                       openpyxl
                   
                       pandas
                   
                       numpy
                   
                       matplotlib
                   
                       seaborn
                   
                
             | 
            
| Travis-CI | 
                
                   No Travis.
                
             | 
            | coveralls test coverage | 
                
                   No coveralls.
                
             | 
        
        
            
            # ULTRON
Ultron is a comprehensive Python tool for analyzing website performance, security, SEO, accessibility, and technical issues. Get instant insights and actionable recommendations to supercharge your website's performance and outrank the competition!
**Key Features:**
- ⚡ Lightning fast analysis - Complete site audit in under 30 seconds
- 📊 Professional Excel reports with 7 detailed sheets and color-coded insights
- 🔒 Security assessment - Validates critical security headers and vulnerabilities
- 📝 SEO analysis - Meta tags, headings, image alt text, and link optimization
- 🖼️ Image optimization - Size analysis, format suggestions, and compression tips
- 🔗 Broken link detection - Identifies and reports 404s and failed requests
- 📱 Mobile-friendly checks - Responsive design and viewport validation
- 💡 Performance boost guide - Step-by-step improvement recommendations
- 🎯 Rating system - Get scored from Beginner to Champion level
- 🤖 Both CLI and Python API - Use in terminal or integrate into your projects

## Installation
```bash
pip install ultron-analyzer
```
## Python Usage
```python
from ultron import UltronAnalyzer
# Initialize analyzer
analyzer = UltronAnalyzer()
# Analyze website
results = analyzer.run_comprehensive_check("https://example.com")
# Print results
analyzer.print_results(results)
# Generate Excel report
analyzer.save_report(results, 'excel')
# Get performance suggestions
suggestions = analyzer.generate_performance_suggestions(results)
analyzer.print_performance_suggestions(suggestions)
```
## CLI Usage
```
usage: ultron [-h] [--version] {analyze} ...
🤖 Ultron - Advanced Website Performance Analyzer
positional arguments:
  {analyze}   Available commands
    analyze   Analyze a website performance
options:
  -h, --help  show this help message and exit
  --version   show program's version number and exit
Examples:
  ultron analyze https://example.com
  ultron analyze https://example.com --format excel
  ultron analyze https://example.com --format all --timeout 60
  ultron --version
Report formats:
  json     - Technical data in JSON format
  html     - Web-friendly HTML report  
  excel    - Professional Excel report (requires openpyxl)
  all      - Generate all format types
  console  - Display results in terminal only
```
## Screenshots
### CLI Interface

### Excel Reports




## About
**Om Pandey** - Software Developer who loves building awesome tools and applications.
📧 Email: iamompandey.it@gmail.com
            
         
        Raw data
        
            {
    "_id": null,
    "home_page": "https://github.com/ompandey07/Ultron",
    "name": "ultron-analyzer",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "Om Pandey <iamompandey.it@gmail.com>",
    "keywords": "website, analyzer, performance, seo, security, optimization",
    "author": "Om Pandey",
    "author_email": "Om Pandey <iamompandey.it@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/74/01/e55bba19fbfa22984757b89950f47434e1b3665ddd709ae04ac6ee510353/ultron_analyzer-1.2.tar.gz",
    "platform": null,
    "description": "# ULTRON\n\nUltron is a comprehensive Python tool for analyzing website performance, security, SEO, accessibility, and technical issues. Get instant insights and actionable recommendations to supercharge your website's performance and outrank the competition!\n\n**Key Features:**\n- \u26a1 Lightning fast analysis - Complete site audit in under 30 seconds\n- \ud83d\udcca Professional Excel reports with 7 detailed sheets and color-coded insights\n- \ud83d\udd12 Security assessment - Validates critical security headers and vulnerabilities\n- \ud83d\udcdd SEO analysis - Meta tags, headings, image alt text, and link optimization\n- \ud83d\uddbc\ufe0f Image optimization - Size analysis, format suggestions, and compression tips\n- \ud83d\udd17 Broken link detection - Identifies and reports 404s and failed requests\n- \ud83d\udcf1 Mobile-friendly checks - Responsive design and viewport validation\n- \ud83d\udca1 Performance boost guide - Step-by-step improvement recommendations\n- \ud83c\udfaf Rating system - Get scored from Beginner to Champion level\n- \ud83e\udd16 Both CLI and Python API - Use in terminal or integrate into your projects\n\n\n\n## Installation\n\n```bash\npip install ultron-analyzer\n```\n\n## Python Usage\n\n```python\nfrom ultron import UltronAnalyzer\n\n# Initialize analyzer\nanalyzer = UltronAnalyzer()\n\n# Analyze website\nresults = analyzer.run_comprehensive_check(\"https://example.com\")\n\n# Print results\nanalyzer.print_results(results)\n\n# Generate Excel report\nanalyzer.save_report(results, 'excel')\n\n# Get performance suggestions\nsuggestions = analyzer.generate_performance_suggestions(results)\nanalyzer.print_performance_suggestions(suggestions)\n```\n\n## CLI Usage\n\n```\nusage: ultron [-h] [--version] {analyze} ...\n\n\ud83e\udd16 Ultron - Advanced Website Performance Analyzer\n\npositional arguments:\n  {analyze}   Available commands\n    analyze   Analyze a website performance\n\noptions:\n  -h, --help  show this help message and exit\n  --version   show program's version number and exit\n\nExamples:\n  ultron analyze https://example.com\n  ultron analyze https://example.com --format excel\n  ultron analyze https://example.com --format all --timeout 60\n  ultron --version\n\nReport formats:\n  json     - Technical data in JSON format\n  html     - Web-friendly HTML report  \n  excel    - Professional Excel report (requires openpyxl)\n  all      - Generate all format types\n  console  - Display results in terminal only\n```\n\n## Screenshots\n\n### CLI Interface\n\n\n### Excel Reports\n\n\n\n\n\n\n\n\n## About\n\n**Om Pandey** - Software Developer who loves building awesome tools and applications.\n\n\ud83d\udce7 Email: iamompandey.it@gmail.com\n",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2025 Om Pandey\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.",
    "summary": "\ud83e\udd16 Advanced website performance analyzer and optimizer",
    "version": "1.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/yourusername/ultron-analyzer/issues",
        "Documentation": "https://github.com/yourusername/ultron-analyzer#readme",
        "Homepage": "https://github.com/yourusername/ultron-analyzer",
        "Repository": "https://github.com/yourusername/ultron-analyzer.git"
    },
    "split_keywords": [
        "website",
        " analyzer",
        " performance",
        " seo",
        " security",
        " optimization"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56341147187f23779a98d62744a10d0d08699ae7982a89e042eb823d02a27aa5",
                "md5": "0a0f7960dd07b11dcfbbb4d5105a0171",
                "sha256": "1e4539505512b43a95393bf711efa089b63e10311b35bec65814fa3f151f4f61"
            },
            "downloads": -1,
            "filename": "ultron_analyzer-1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0a0f7960dd07b11dcfbbb4d5105a0171",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 19078,
            "upload_time": "2025-08-10T11:59:28",
            "upload_time_iso_8601": "2025-08-10T11:59:28.090124Z",
            "url": "https://files.pythonhosted.org/packages/56/34/1147187f23779a98d62744a10d0d08699ae7982a89e042eb823d02a27aa5/ultron_analyzer-1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7401e55bba19fbfa22984757b89950f47434e1b3665ddd709ae04ac6ee510353",
                "md5": "ec0c0f0c98890d446edc40ca25320e9c",
                "sha256": "b859476447fdd7afdfdcbad944ecfa636c39ef75df7aba9fecb55251f27d0cd6"
            },
            "downloads": -1,
            "filename": "ultron_analyzer-1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "ec0c0f0c98890d446edc40ca25320e9c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 764714,
            "upload_time": "2025-08-10T11:59:32",
            "upload_time_iso_8601": "2025-08-10T11:59:32.521165Z",
            "url": "https://files.pythonhosted.org/packages/74/01/e55bba19fbfa22984757b89950f47434e1b3665ddd709ae04ac6ee510353/ultron_analyzer-1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-10 11:59:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ompandey07",
    "github_project": "Ultron",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "requests",
            "specs": [
                [
                    ">=",
                    "2.28.0"
                ]
            ]
        },
        {
            "name": "beautifulsoup4",
            "specs": [
                [
                    ">=",
                    "4.11.0"
                ]
            ]
        },
        {
            "name": "lxml",
            "specs": [
                [
                    ">=",
                    "4.9.0"
                ]
            ]
        },
        {
            "name": "openpyxl",
            "specs": [
                [
                    ">=",
                    "3.0.0"
                ]
            ]
        },
        {
            "name": "pandas",
            "specs": [
                [
                    ">=",
                    "1.4.0"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.22.0"
                ]
            ]
        },
        {
            "name": "matplotlib",
            "specs": [
                [
                    ">=",
                    "3.5.0"
                ]
            ]
        },
        {
            "name": "seaborn",
            "specs": [
                [
                    ">=",
                    "0.11.2"
                ]
            ]
        }
    ],
    "lcname": "ultron-analyzer"
}