vedika-sdk 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- vedika_sdk-1.0.0/CHANGELOG.md +137 -0
- vedika_sdk-1.0.0/CODE_OF_CONDUCT.md +129 -0
- vedika_sdk-1.0.0/CONTRIBUTING.md +299 -0
- vedika_sdk-1.0.0/LICENSE +21 -0
- vedika_sdk-1.0.0/MANIFEST.in +35 -0
- vedika_sdk-1.0.0/PKG-INFO +460 -0
- vedika_sdk-1.0.0/README.md +413 -0
- vedika_sdk-1.0.0/SECURITY.md +212 -0
- vedika_sdk-1.0.0/examples/README.md +92 -0
- vedika_sdk-1.0.0/examples/basic_chatbot.py +101 -0
- vedika_sdk-1.0.0/examples/birth_chart_analysis.py +101 -0
- vedika_sdk-1.0.0/examples/compatibility_checker.py +127 -0
- vedika_sdk-1.0.0/examples/dosha_detector.py +123 -0
- vedika_sdk-1.0.0/examples/streaming_example.py +63 -0
- vedika_sdk-1.0.0/setup.cfg +4 -0
- vedika_sdk-1.0.0/setup.py +53 -0
- vedika_sdk-1.0.0/vedika/__init__.py +47 -0
- vedika_sdk-1.0.0/vedika/client.py +393 -0
- vedika_sdk-1.0.0/vedika/exceptions.py +260 -0
- vedika_sdk-1.0.0/vedika/models.py +425 -0
- vedika_sdk-1.0.0/vedika_sdk.egg-info/PKG-INFO +460 -0
- vedika_sdk-1.0.0/vedika_sdk.egg-info/SOURCES.txt +23 -0
- vedika_sdk-1.0.0/vedika_sdk.egg-info/dependency_links.txt +1 -0
- vedika_sdk-1.0.0/vedika_sdk.egg-info/requires.txt +9 -0
- vedika_sdk-1.0.0/vedika_sdk.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the Vedika Python SDK will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [1.0.0] - 2025-11-08
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
#### Core Features
|
|
13
|
+
- Initial release of Vedika Python SDK
|
|
14
|
+
- `VedikaClient` class for interacting with Vedika Astrology API
|
|
15
|
+
- Support for AI-powered conversational astrology queries (UNIQUE feature!)
|
|
16
|
+
- Multi-agent swarm intelligence integration
|
|
17
|
+
|
|
18
|
+
#### API Methods
|
|
19
|
+
- `ask_question()` - Ask conversational astrology questions
|
|
20
|
+
- `ask_question_stream()` - Stream responses in real-time
|
|
21
|
+
- `get_birth_chart()` - Generate complete birth charts (Kundali)
|
|
22
|
+
- `get_dashas()` - Calculate Vimshottari Dasha periods
|
|
23
|
+
- `check_compatibility()` - Ashtakoota marriage compatibility matching
|
|
24
|
+
- `detect_yogas()` - Detect 300+ astrological yogas
|
|
25
|
+
- `analyze_doshas()` - Comprehensive dosha analysis
|
|
26
|
+
- `get_muhurtha()` - Find auspicious times for events
|
|
27
|
+
- `get_numerology()` - 37 numerology calculations
|
|
28
|
+
- `batch_process()` - Process multiple queries efficiently
|
|
29
|
+
|
|
30
|
+
#### Data Models
|
|
31
|
+
- `QuestionResponse` - AI chatbot response model
|
|
32
|
+
- `BirthChart` - Complete birth chart with planets and houses
|
|
33
|
+
- `DashaResponse` - Mahadasha, Antardasha, and Pratyantardasha periods
|
|
34
|
+
- `CompatibilityResponse` - Ashtakoota matching results
|
|
35
|
+
- `YogaResponse` - Detected yogas with descriptions
|
|
36
|
+
- `DoshaResponse` - Kaal Sarp, Mangal, Sade Sati, Pitra dosha analysis
|
|
37
|
+
- `MuhurthaResponse` - Auspicious timing analysis
|
|
38
|
+
- `NumerologyResponse` - Numerology calculation results
|
|
39
|
+
|
|
40
|
+
#### Exception Handling
|
|
41
|
+
- `VedikaAPIError` - Base exception for all API errors
|
|
42
|
+
- `AuthenticationError` - Invalid API key errors
|
|
43
|
+
- `RateLimitError` - Rate limit exceeded errors
|
|
44
|
+
- `InsufficientCreditsError` - Insufficient credits errors
|
|
45
|
+
- `ValidationError` - Input validation errors
|
|
46
|
+
- `TimeoutError` - Request timeout errors
|
|
47
|
+
- `ServerError` - Internal server errors
|
|
48
|
+
- `NetworkError` - Network connectivity errors
|
|
49
|
+
|
|
50
|
+
#### Features
|
|
51
|
+
- Automatic retry logic with exponential backoff
|
|
52
|
+
- Request timeout configuration
|
|
53
|
+
- HTTPS-only communication
|
|
54
|
+
- Environment variable support for API keys
|
|
55
|
+
- Comprehensive error messages
|
|
56
|
+
- 22 language support (including 11 Indian languages)
|
|
57
|
+
- Prompt caching for 90% cost savings on repeated queries
|
|
58
|
+
|
|
59
|
+
#### Documentation
|
|
60
|
+
- Comprehensive README with examples
|
|
61
|
+
- Detailed API reference documentation
|
|
62
|
+
- Google-style docstrings for all public APIs
|
|
63
|
+
- Security best practices guide
|
|
64
|
+
- Contributing guidelines
|
|
65
|
+
- Code of Conduct (Contributor Covenant 2.0)
|
|
66
|
+
|
|
67
|
+
#### Development Tools
|
|
68
|
+
- Python 3.8+ support
|
|
69
|
+
- Type hints for all function signatures
|
|
70
|
+
- Black code formatting
|
|
71
|
+
- flake8 linting
|
|
72
|
+
- mypy type checking
|
|
73
|
+
- pytest testing framework
|
|
74
|
+
- Coverage reporting
|
|
75
|
+
|
|
76
|
+
#### Examples
|
|
77
|
+
- Basic chatbot example
|
|
78
|
+
- Birth chart analysis
|
|
79
|
+
- Compatibility checker
|
|
80
|
+
- Dosha detector
|
|
81
|
+
- Muhurtha finder
|
|
82
|
+
- Multi-language support demo
|
|
83
|
+
- Streaming responses
|
|
84
|
+
- Flask web application integration
|
|
85
|
+
- Django integration
|
|
86
|
+
|
|
87
|
+
### Security
|
|
88
|
+
- API keys encrypted in transit (HTTPS)
|
|
89
|
+
- GDPR compliant
|
|
90
|
+
- No data retention by default
|
|
91
|
+
- Security score: 95/100 (A grade)
|
|
92
|
+
- Comprehensive security documentation
|
|
93
|
+
|
|
94
|
+
### Performance
|
|
95
|
+
- Average response time: 2.14 seconds (simple queries)
|
|
96
|
+
- Complex queries: 28-36 seconds (multi-agent processing)
|
|
97
|
+
- 99.9% uptime with 3-tier ephemeris fallback
|
|
98
|
+
- 97.2% prediction accuracy
|
|
99
|
+
|
|
100
|
+
## [Unreleased]
|
|
101
|
+
|
|
102
|
+
### Planned Features
|
|
103
|
+
- Webhook support for real-time notifications
|
|
104
|
+
- GraphQL API support
|
|
105
|
+
- Additional ayanamsa systems
|
|
106
|
+
- Extended dosha remedies database
|
|
107
|
+
- Predictive transit analysis
|
|
108
|
+
- Enhanced caching strategies
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
## Version History
|
|
113
|
+
|
|
114
|
+
### Version Numbering
|
|
115
|
+
|
|
116
|
+
We follow [Semantic Versioning](https://semver.org/):
|
|
117
|
+
- **Major version** (1.x.x): Breaking changes
|
|
118
|
+
- **Minor version** (x.1.x): New features, backward compatible
|
|
119
|
+
- **Patch version** (x.x.1): Bug fixes, backward compatible
|
|
120
|
+
|
|
121
|
+
### Support Policy
|
|
122
|
+
|
|
123
|
+
- **Latest major version**: Full support, security updates, bug fixes, new features
|
|
124
|
+
- **Previous major version**: Security updates and critical bug fixes for 6 months
|
|
125
|
+
- **Older versions**: No support
|
|
126
|
+
|
|
127
|
+
### Release Cadence
|
|
128
|
+
|
|
129
|
+
- **Major releases**: As needed for breaking changes
|
|
130
|
+
- **Minor releases**: Monthly feature releases
|
|
131
|
+
- **Patch releases**: As needed for bug fixes
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
For the complete version history, see: https://github.com/vedika-intelligence/vedika-sdk-python/releases
|
|
136
|
+
|
|
137
|
+
[1.0.0]: https://github.com/vedika-intelligence/vedika-sdk-python/releases/tag/v1.0.0
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity
|
|
10
|
+
and orientation.
|
|
11
|
+
|
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
+
diverse, inclusive, and healthy community.
|
|
14
|
+
|
|
15
|
+
## Our Standards
|
|
16
|
+
|
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
|
18
|
+
community include:
|
|
19
|
+
|
|
20
|
+
* Demonstrating empathy and kindness toward other people
|
|
21
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
|
22
|
+
* Giving and gracefully accepting constructive feedback
|
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
24
|
+
and learning from the experience
|
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the
|
|
26
|
+
overall community
|
|
27
|
+
|
|
28
|
+
Examples of unacceptable behavior include:
|
|
29
|
+
|
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or
|
|
31
|
+
advances of any kind
|
|
32
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
33
|
+
* Public or private harassment
|
|
34
|
+
* Publishing others' private information, such as a physical or email
|
|
35
|
+
address, without their explicit permission
|
|
36
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
37
|
+
professional setting
|
|
38
|
+
|
|
39
|
+
## Enforcement Responsibilities
|
|
40
|
+
|
|
41
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
44
|
+
or harmful.
|
|
45
|
+
|
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
49
|
+
decisions when appropriate.
|
|
50
|
+
|
|
51
|
+
## Scope
|
|
52
|
+
|
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
|
54
|
+
an individual is officially representing the community in public spaces.
|
|
55
|
+
Examples of representing our community include using an official e-mail address,
|
|
56
|
+
posting via an official social media account, or acting as an appointed
|
|
57
|
+
representative at an online or offline event.
|
|
58
|
+
|
|
59
|
+
## Enforcement
|
|
60
|
+
|
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
62
|
+
reported to the community leaders responsible for enforcement at
|
|
63
|
+
conduct@vedika.io.
|
|
64
|
+
|
|
65
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
|
66
|
+
|
|
67
|
+
All community leaders are obligated to respect the privacy and security of the
|
|
68
|
+
reporter of any incident.
|
|
69
|
+
|
|
70
|
+
## Enforcement Guidelines
|
|
71
|
+
|
|
72
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
|
73
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
|
74
|
+
|
|
75
|
+
### 1. Correction
|
|
76
|
+
|
|
77
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
78
|
+
unprofessional or unwelcome in the community.
|
|
79
|
+
|
|
80
|
+
**Consequence**: A private, written warning from community leaders, providing
|
|
81
|
+
clarity around the nature of the violation and an explanation of why the
|
|
82
|
+
behavior was inappropriate. A public apology may be requested.
|
|
83
|
+
|
|
84
|
+
### 2. Warning
|
|
85
|
+
|
|
86
|
+
**Community Impact**: A violation through a single incident or series
|
|
87
|
+
of actions.
|
|
88
|
+
|
|
89
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
|
90
|
+
interaction with the people involved, including unsolicited interaction with
|
|
91
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
|
92
|
+
includes avoiding interactions in community spaces as well as external channels
|
|
93
|
+
like social media. Violating these terms may lead to a temporary or
|
|
94
|
+
permanent ban.
|
|
95
|
+
|
|
96
|
+
### 3. Temporary Ban
|
|
97
|
+
|
|
98
|
+
**Community Impact**: A serious violation of community standards, including
|
|
99
|
+
sustained inappropriate behavior.
|
|
100
|
+
|
|
101
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
|
102
|
+
communication with the community for a specified period of time. No public or
|
|
103
|
+
private interaction with the people involved, including unsolicited interaction
|
|
104
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
|
105
|
+
Violating these terms may lead to a permanent ban.
|
|
106
|
+
|
|
107
|
+
### 4. Permanent Ban
|
|
108
|
+
|
|
109
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
|
110
|
+
standards, including sustained inappropriate behavior, harassment of an
|
|
111
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
|
112
|
+
|
|
113
|
+
**Consequence**: A permanent ban from any sort of public interaction within
|
|
114
|
+
the community.
|
|
115
|
+
|
|
116
|
+
## Attribution
|
|
117
|
+
|
|
118
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
119
|
+
version 2.0, available at
|
|
120
|
+
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
|
121
|
+
|
|
122
|
+
Community Impact Guidelines were inspired by [Mozilla's code of conduct
|
|
123
|
+
enforcement ladder](https://github.com/mozilla/diversity).
|
|
124
|
+
|
|
125
|
+
[homepage]: https://www.contributor-covenant.org
|
|
126
|
+
|
|
127
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
|
128
|
+
https://www.contributor-covenant.org/faq. Translations are available at
|
|
129
|
+
https://www.contributor-covenant.org/translations.
|
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
# Contributing to Vedika Python SDK
|
|
2
|
+
|
|
3
|
+
Thank you for your interest in contributing to the Vedika Python SDK! We welcome contributions from the community.
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
- [Code of Conduct](#code-of-conduct)
|
|
8
|
+
- [How Can I Contribute?](#how-can-i-contribute)
|
|
9
|
+
- [Development Setup](#development-setup)
|
|
10
|
+
- [Pull Request Process](#pull-request-process)
|
|
11
|
+
- [Style Guide](#style-guide)
|
|
12
|
+
- [Testing](#testing)
|
|
13
|
+
- [Documentation](#documentation)
|
|
14
|
+
|
|
15
|
+
## Code of Conduct
|
|
16
|
+
|
|
17
|
+
This project and everyone participating in it is governed by our [Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.
|
|
18
|
+
|
|
19
|
+
## How Can I Contribute?
|
|
20
|
+
|
|
21
|
+
### Reporting Bugs
|
|
22
|
+
|
|
23
|
+
Before creating bug reports, please check the existing issues to avoid duplicates. When you create a bug report, include as many details as possible:
|
|
24
|
+
|
|
25
|
+
- **Use a clear and descriptive title**
|
|
26
|
+
- **Describe the exact steps to reproduce the problem**
|
|
27
|
+
- **Provide specific examples** (code snippets, error messages)
|
|
28
|
+
- **Describe the behavior you observed** and what you expected
|
|
29
|
+
- **Include your environment details** (Python version, OS, SDK version)
|
|
30
|
+
|
|
31
|
+
### Suggesting Enhancements
|
|
32
|
+
|
|
33
|
+
Enhancement suggestions are tracked as GitHub issues. When creating an enhancement suggestion:
|
|
34
|
+
|
|
35
|
+
- **Use a clear and descriptive title**
|
|
36
|
+
- **Provide a detailed description** of the suggested enhancement
|
|
37
|
+
- **Explain why this enhancement would be useful** to most users
|
|
38
|
+
- **List some examples** of how it would be used
|
|
39
|
+
|
|
40
|
+
### Pull Requests
|
|
41
|
+
|
|
42
|
+
We actively welcome your pull requests:
|
|
43
|
+
|
|
44
|
+
1. Fork the repo and create your branch from `main`
|
|
45
|
+
2. If you've added code that should be tested, add tests
|
|
46
|
+
3. If you've changed APIs, update the documentation
|
|
47
|
+
4. Ensure the test suite passes
|
|
48
|
+
5. Make sure your code follows the style guide
|
|
49
|
+
6. Submit your pull request!
|
|
50
|
+
|
|
51
|
+
## Development Setup
|
|
52
|
+
|
|
53
|
+
### Prerequisites
|
|
54
|
+
|
|
55
|
+
- Python 3.8 or higher
|
|
56
|
+
- pip
|
|
57
|
+
- virtualenv (recommended)
|
|
58
|
+
|
|
59
|
+
### Setup Steps
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
# Clone your fork
|
|
63
|
+
git clone https://github.com/YOUR_USERNAME/vedika-sdk-python.git
|
|
64
|
+
cd vedika-sdk-python
|
|
65
|
+
|
|
66
|
+
# Create virtual environment
|
|
67
|
+
python -m venv venv
|
|
68
|
+
source venv/bin/activate # On Windows: venv\Scripts\activate
|
|
69
|
+
|
|
70
|
+
# Install dependencies
|
|
71
|
+
pip install -e ".[dev]"
|
|
72
|
+
|
|
73
|
+
# Install pre-commit hooks (optional but recommended)
|
|
74
|
+
pip install pre-commit
|
|
75
|
+
pre-commit install
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
### Project Structure
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
vedika-sdk-python/
|
|
82
|
+
├── vedika/ # Main package
|
|
83
|
+
│ ├── __init__.py # Package exports
|
|
84
|
+
│ ├── client.py # VedikaClient class
|
|
85
|
+
│ ├── models.py # Data models
|
|
86
|
+
│ └── exceptions.py # Custom exceptions
|
|
87
|
+
├── tests/ # Test suite
|
|
88
|
+
├── examples/ # Example scripts
|
|
89
|
+
├── docs/ # Documentation
|
|
90
|
+
└── setup.py # Package configuration
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## Pull Request Process
|
|
94
|
+
|
|
95
|
+
1. **Update documentation**: If you've changed APIs or added features, update the README.md and docstrings
|
|
96
|
+
2. **Add tests**: Ensure your changes are covered by tests
|
|
97
|
+
3. **Run tests**: Make sure all tests pass
|
|
98
|
+
4. **Update CHANGELOG.md**: Add a note about your changes under "Unreleased"
|
|
99
|
+
5. **Follow code style**: Use Black for formatting, flake8 for linting
|
|
100
|
+
6. **Write clear commit messages**: Use conventional commit format
|
|
101
|
+
|
|
102
|
+
### Commit Message Format
|
|
103
|
+
|
|
104
|
+
We follow the [Conventional Commits](https://www.conventionalcommits.org/) specification:
|
|
105
|
+
|
|
106
|
+
```
|
|
107
|
+
<type>(<scope>): <subject>
|
|
108
|
+
|
|
109
|
+
<body>
|
|
110
|
+
|
|
111
|
+
<footer>
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
Types:
|
|
115
|
+
- `feat`: New feature
|
|
116
|
+
- `fix`: Bug fix
|
|
117
|
+
- `docs`: Documentation changes
|
|
118
|
+
- `style`: Code style changes (formatting, etc.)
|
|
119
|
+
- `refactor`: Code refactoring
|
|
120
|
+
- `test`: Adding or updating tests
|
|
121
|
+
- `chore`: Maintenance tasks
|
|
122
|
+
|
|
123
|
+
Examples:
|
|
124
|
+
```
|
|
125
|
+
feat(client): add support for batch queries
|
|
126
|
+
fix(models): handle null values in birth chart response
|
|
127
|
+
docs(readme): update installation instructions
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
## Style Guide
|
|
131
|
+
|
|
132
|
+
### Python Code Style
|
|
133
|
+
|
|
134
|
+
We follow PEP 8 with some modifications:
|
|
135
|
+
|
|
136
|
+
- **Line length**: 100 characters (not 79)
|
|
137
|
+
- **Formatting**: Use [Black](https://black.readthedocs.io/)
|
|
138
|
+
- **Linting**: Use [flake8](https://flake8.pycqa.org/)
|
|
139
|
+
- **Type hints**: Use type hints for all function signatures
|
|
140
|
+
- **Docstrings**: Use Google-style docstrings
|
|
141
|
+
|
|
142
|
+
### Code Formatting
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
# Format code with Black
|
|
146
|
+
black vedika/ tests/
|
|
147
|
+
|
|
148
|
+
# Check with flake8
|
|
149
|
+
flake8 vedika/ tests/
|
|
150
|
+
|
|
151
|
+
# Type check with mypy
|
|
152
|
+
mypy vedika/
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
### Example Code
|
|
156
|
+
|
|
157
|
+
```python
|
|
158
|
+
from typing import Dict, Any, Optional
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
def example_function(
|
|
162
|
+
param1: str,
|
|
163
|
+
param2: int,
|
|
164
|
+
param3: Optional[Dict[str, Any]] = None
|
|
165
|
+
) -> str:
|
|
166
|
+
"""
|
|
167
|
+
Brief description of the function.
|
|
168
|
+
|
|
169
|
+
Longer description if needed.
|
|
170
|
+
|
|
171
|
+
Args:
|
|
172
|
+
param1: Description of param1
|
|
173
|
+
param2: Description of param2
|
|
174
|
+
param3: Description of param3 (optional)
|
|
175
|
+
|
|
176
|
+
Returns:
|
|
177
|
+
Description of return value
|
|
178
|
+
|
|
179
|
+
Raises:
|
|
180
|
+
ValueError: When param2 is negative
|
|
181
|
+
|
|
182
|
+
Example:
|
|
183
|
+
>>> result = example_function("test", 42)
|
|
184
|
+
>>> print(result)
|
|
185
|
+
'test-42'
|
|
186
|
+
"""
|
|
187
|
+
if param2 < 0:
|
|
188
|
+
raise ValueError("param2 must be non-negative")
|
|
189
|
+
|
|
190
|
+
return f"{param1}-{param2}"
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
## Testing
|
|
194
|
+
|
|
195
|
+
### Running Tests
|
|
196
|
+
|
|
197
|
+
```bash
|
|
198
|
+
# Run all tests
|
|
199
|
+
pytest
|
|
200
|
+
|
|
201
|
+
# Run with coverage
|
|
202
|
+
pytest --cov=vedika --cov-report=html
|
|
203
|
+
|
|
204
|
+
# Run specific test file
|
|
205
|
+
pytest tests/test_client.py
|
|
206
|
+
|
|
207
|
+
# Run specific test
|
|
208
|
+
pytest tests/test_client.py::test_ask_question
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
### Writing Tests
|
|
212
|
+
|
|
213
|
+
- Use pytest for testing
|
|
214
|
+
- Aim for >90% code coverage
|
|
215
|
+
- Test both success and failure cases
|
|
216
|
+
- Use fixtures for common setup
|
|
217
|
+
- Mock external API calls
|
|
218
|
+
|
|
219
|
+
Example test:
|
|
220
|
+
|
|
221
|
+
```python
|
|
222
|
+
import pytest
|
|
223
|
+
from vedika import VedikaClient
|
|
224
|
+
from vedika.exceptions import AuthenticationError
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
def test_client_requires_api_key():
|
|
228
|
+
"""Test that VedikaClient raises error without API key."""
|
|
229
|
+
with pytest.raises(AuthenticationError):
|
|
230
|
+
VedikaClient(api_key=None)
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
def test_ask_question_success(mock_api_response):
|
|
234
|
+
"""Test successful question query."""
|
|
235
|
+
client = VedikaClient(api_key="vk_test_key")
|
|
236
|
+
response = client.ask_question(
|
|
237
|
+
question="Test question",
|
|
238
|
+
birth_details={
|
|
239
|
+
"datetime": "1990-06-15T14:30:00+05:30",
|
|
240
|
+
"latitude": 28.6139,
|
|
241
|
+
"longitude": 77.2090
|
|
242
|
+
}
|
|
243
|
+
)
|
|
244
|
+
|
|
245
|
+
assert response.answer is not None
|
|
246
|
+
assert response.confidence > 0
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
## Documentation
|
|
250
|
+
|
|
251
|
+
### Docstring Guidelines
|
|
252
|
+
|
|
253
|
+
Use Google-style docstrings:
|
|
254
|
+
|
|
255
|
+
```python
|
|
256
|
+
def function_name(arg1: str, arg2: int) -> bool:
|
|
257
|
+
"""
|
|
258
|
+
Brief description (one line).
|
|
259
|
+
|
|
260
|
+
Longer description if needed (can be multiple paragraphs).
|
|
261
|
+
|
|
262
|
+
Args:
|
|
263
|
+
arg1: Description of arg1
|
|
264
|
+
arg2: Description of arg2
|
|
265
|
+
|
|
266
|
+
Returns:
|
|
267
|
+
Description of return value
|
|
268
|
+
|
|
269
|
+
Raises:
|
|
270
|
+
ValueError: When arguments are invalid
|
|
271
|
+
|
|
272
|
+
Example:
|
|
273
|
+
>>> result = function_name("test", 42)
|
|
274
|
+
>>> print(result)
|
|
275
|
+
True
|
|
276
|
+
"""
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
### README Updates
|
|
280
|
+
|
|
281
|
+
If you add new features:
|
|
282
|
+
|
|
283
|
+
1. Update the feature list in README.md
|
|
284
|
+
2. Add code examples showing usage
|
|
285
|
+
3. Update the table of contents if needed
|
|
286
|
+
|
|
287
|
+
## Questions?
|
|
288
|
+
|
|
289
|
+
- Open an issue for questions
|
|
290
|
+
- Email support@vedika.io
|
|
291
|
+
- Join our community discussions
|
|
292
|
+
|
|
293
|
+
## License
|
|
294
|
+
|
|
295
|
+
By contributing, you agree that your contributions will be licensed under the MIT License.
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
Thank you for contributing to Vedika! 🙏
|
vedika_sdk-1.0.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Vedika Intelligence
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# MANIFEST.in - Include additional files in Python package distribution
|
|
2
|
+
|
|
3
|
+
# Include documentation files
|
|
4
|
+
include README.md
|
|
5
|
+
include LICENSE
|
|
6
|
+
include CHANGELOG.md
|
|
7
|
+
include CONTRIBUTING.md
|
|
8
|
+
include SECURITY.md
|
|
9
|
+
include CODE_OF_CONDUCT.md
|
|
10
|
+
|
|
11
|
+
# Include package data
|
|
12
|
+
recursive-include vedika *.py
|
|
13
|
+
|
|
14
|
+
# Include examples
|
|
15
|
+
recursive-include examples *.py
|
|
16
|
+
recursive-include examples *.md
|
|
17
|
+
|
|
18
|
+
# Include tests (for source distributions)
|
|
19
|
+
recursive-include tests *.py
|
|
20
|
+
|
|
21
|
+
# Exclude build artifacts
|
|
22
|
+
global-exclude *.pyc
|
|
23
|
+
global-exclude *.pyo
|
|
24
|
+
global-exclude __pycache__
|
|
25
|
+
global-exclude .DS_Store
|
|
26
|
+
global-exclude *.so
|
|
27
|
+
global-exclude *.egg-info
|
|
28
|
+
|
|
29
|
+
# Exclude development files
|
|
30
|
+
exclude .gitignore
|
|
31
|
+
exclude .github
|
|
32
|
+
exclude PUBLISH.sh
|
|
33
|
+
exclude pytest.ini
|
|
34
|
+
exclude .coverage
|
|
35
|
+
exclude htmlcov
|