Metadata-Version: 2.1
Name: swaggerwithgroq
Version: 0.0.3
Summary: Generate realistic API data from Swagger json using Groq
Home-page: https://github.com/TowsifAhamed/swaggerwithgroq/
Author: Towsif Ahamed Labib
Author-email: towsif.kuet.ac.bd@gmail.com
License: MIT
Description: ## swaggerwithgroq
        
        **swaggerwithgroq** is a Python library that retrieves Swagger JSON schemas and generates realistic sample data for API endpoints using Groq's LLaMA3 model. This tool allows developers to quickly generate mock API responses, making testing, prototyping, and documentation faster and easier.
        
        ### Features:
        - **Fetch Swagger JSON**: Automatically pulls Swagger JSON schema from a given URL.
        - **Realistic Data Generation**: Utilizes Groq's LLaMA3 model to generate contextually accurate and realistic data for API endpoints.
        - **Easy Integration**: Designed for use with any API that provides a Swagger JSON schema, making it simple to simulate API responses for testing or documentation purposes.
        - **Lightweight Python Library**: Import and use this library in your Python projects with minimal setup—just provide the Swagger URL and Groq API key.
        
        ### Installation:
        
        ```bash
        pip install swaggerwithgroq
        ```
        
        ### Usage:
        
        ```python
        from swaggerwithgroq.generate_data import SwaggerWithGroq
        
        # Your Groq API key and the Swagger URL
        groq_api_key = 'your_groq_api_key'
        swagger_url = 'http://your-api.com/swagger.json'
        
        # Create the generator object
        generator = SwaggerWithGroq(groq_api_key)
        
        # Fetch generated sample API responses
        generated_data = generator.get_generated_data(swagger_url)
        
        # Print the generated sample data
        print(generated_data)
        ```
        
        ### Why Use This Library?
        
        - **Mock APIs Quickly**: Generate realistic mock data for API endpoints automatically from Swagger JSON.
        - **Accelerate Prototyping**: Speed up development by simulating real-world API responses without manually creating mock data.
        - **Improve Documentation**: Enhance API documentation with generated sample responses, making it easier for users to understand API behavior.
        - **Groq-Powered**: Leverage Groq's LLaMA3 model to generate realistic and accurate mock data for API testing.
        
        ### Contributing:
        We welcome contributions to improve swaggerwithgroq! To contribute, please:
        1. Fork the repository.
        2. Make your changes.
        3. Submit a pull request with a clear description of your changes.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
