Metadata-Version: 2.4
Name: gk_hi
Version: 1.0.0
Summary: A collection of 200+ General Knowledge questions in Hindi
Author-email: Lakshy Chaurasia <lpg.m19012008@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# GK_HI

A Python library containing 200+ General Knowledge questions in Hindi.

## Installation
```bash
pip install GK-HI
```

##How to Use

```python
import GK_HI

# Get all questions
all_questions = gkhindi.get_all()
print(f"Total questions: {len(all_questions)}")

# Get 5 random questions
random_questions = gkhindi.get_random(5)
for q in random_questions:
    print(q)

# Search for questions containing "भारत"
search_results = gkhindi.search("भारत")
print(f"Found {len(search_results)} questions with 'भारत'")
```

##Structure
The library has the following structure:
```
gkhindi/
├── __init__.py
├── main.py
└── questions.py
```
