Metadata-Version: 2.4
Name: scalableContentGenerations
Version: 0.2.0
Summary: My Python package related to scaling content generations
Author-email: Prakhar Gandhi <gprakhar0@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: mpire
Requires-Dist: htbuilder

# scalableContentGenerations


Python package related to scaling lime plots

```python
import scalableContentGenerations 
from scalableContentGenerations import contentGeneration
from pprint import pprint


if __name__ == "__main__":

    tag_names = [

        {
            "div": {
                "p": [
                    "p1",
                ]*1000,

                "b": {
                    "b": [
                        "b1"
                    ],

                    "b": [
                        "b2"
                    ],

                    "h1": [
                        "h1"
                    ]
                },

                "img": {
                    "img1": {
                        "src": "image1.jpg",
                        "width": 500,
                        "height": 300
                    },

                    "img2": {
                        "src": "image2.jpg",
                        "width": 800,
                        "height": 600
                    }
                }
            }
        }

    ]
    html_pages = contentGeneration.automate_html_generation(
        tag_names,
        "From a boy with a dream!",
        int(pow(10,7))
    )
    print((html_pages)[0])
    print(len(html_pages))
```

