A Python module for accessing and managing Constitution data.
Project description
IndianConstitution (v0.5.6.1)
Python module to interact with the Constitution of India data and retrieve articles, details, summaries, and search functionalities.
Installation
You can install the package directly from PyPI:
pip install indianconstitution
Features
The indianconstitution module provides:
- Full access to the Constitution of India data.
- Retrieval of individual articles and summaries.
- Keyword-based search for articles.
- Count of total articles and search by title functionality.
Usage
Here is how to get started with indianconstitution:
Configuration Requirement
Ensure you load the Constitution data file correctly. By default, the file is included in the package directory. If not, you must provide the full path to the constitution_of_india.json file.
Example:
from indianconstitution import IndianConstitution
# Load the module with the correct path to the JSON file
india = IndianConstitution("D:\\indianconstitution\\indianconstitution\\indianconstitution\\constitution_of_india.json")
# Example usage
print(india.preamble())
Python Module Example
from indianconstitution import IndianConstitution
# Load the module with your Constitution data
india = IndianConstitution('constitution_data.json')
# Access the Preamble
print(india.preamble())
# Retrieve specific articles
print(india.get_article(14)) # Outputs details of Article 14
# List all articles
print(india.articles_list())
# Search for a keyword in the Constitution
print(india.search_keyword('equality'))
# Get a summary of an article
print(india.article_summary(21))
# Count the total number of articles
print(india.count_articles())
# Search articles by title
print(india.search_by_title('Fundamental'))
Key Functionalities
| Function | Description |
|---|---|
preamble() |
Returns the Preamble of the Constitution of India. |
get_article(number) |
Retrieves the full content of the specified article. |
articles_list() |
Lists all articles in the Constitution with titles. |
search_keyword(word) |
Finds all occurrences of a specific keyword in the Constitution text. |
article_summary(num) |
Returns a summary of the specified article. |
count_articles() |
Counts the total number of articles in the Constitution. |
search_by_title(title) |
Searches articles by their titles and returns matching results. |
Development
This project is actively maintained. Contributions, suggestions, and feedback are welcome. Please refer to the LICENSE file for usage terms.
License
This project is licensed under the Apache License 2.0. See the LICENSE file for more details.
Data Source
The Constitution data is compiled from publicly available resources, ensuring authenticity and accuracy.
Developer Information
Author: Vikhram S
Email: vikhrams@saveetha.ac.in
Copyright
© 2025 Vikhram S. All rights reserved.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file indianconstitution-0.5.6.1.tar.gz.
File metadata
- Download URL: indianconstitution-0.5.6.1.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0093f4b786ff7084d245fa98bfb4b96ca786b96a6f0a7535b03dd4847b55f64b
|
|
| MD5 |
c7bb01ab11f91a122cd83fd22680b809
|
|
| BLAKE2b-256 |
8b9457c03d4cd26c92bcfd0ec4d88f796e0ca6ec5210e8c69f33dbd0afb07bb1
|
File details
Details for the file IndianConstitution-0.5.6.1-py3-none-any.whl.
File metadata
- Download URL: IndianConstitution-0.5.6.1-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d46a8aed853a871e6ab0100bceffdc48da44bf48200b4d211ba7f1c70bd57d6
|
|
| MD5 |
76d378eaf5126182851dab562559670d
|
|
| BLAKE2b-256 |
4ed4b7d4121ebfeff9c3bec51d9d327dd02197f6205d75ebe7cebe1f695337c9
|