Metadata-Version: 2.4
Name: letprepup
Version: 0.1.0
Summary: Core engine library for the LetPrepUp AI Interview Platform
Home-page: https://github.com/Ishanv5/AI-Interviewer-Preparation---Using-Django-And-AWS-Services---Cloud-Platform-Programming-NCI.git
Author: LetPrepUp Team
Author-email: ishanvaghela01@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: boto3
Requires-Dist: openai
Requires-Dist: python-dotenv
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# LetPrepUp Core Engine

This is the core library for the LetPrepUp AI Interview Platform. It provides custom wrappers to gracefully connect the Django application to AWS and AI services securely and natively.

## Structure
- `letprepup.cloud`: Exposes `AWSManager`, `S3Service`, `DynamoDBService`, and `SQSService`.
- Connects automatically utilizing environmental variables.

## Usage

```python
from letprepup.cloud import S3Service

s3 = S3Service()
s3.upload_report("filename", data)
```
