# AstroKundli
AstroKundli uses flatlib_sidereal.
flatlib was made by João Ventura and sidereal was added by joaoventura.
AstroKundli Generates Lagna Chart.
# Example
<h3>Lagna Chart</h3>
```
from AstroKundli import GKundli
# Largna Chart
Lagna_Chart = GKundli.GKundli(2007, 6, 28, 0, 0,"2:00", 25.7479, 28.2293).lagnaChart()
print(Lagna_Chart)
# Output:
# {
# '1': {'sign_num': 12, 'asc': '+11:21:18>', 'planets': {}},
# '2': {'sign_num': 1, 'planets': {'Ma': '+08:13:20'}},
# '3': {'sign_num': 2, 'planets': {}},
# '4': {'sign_num': 3, 'planets': {'Su': '+11:54:51', 'Me': '+13:14:45'}},
# '5': {'sign_num': 4, 'planets': {'Sa': '+28:02:18', 'Ve': '+25:42:01'}},
# '6': {'sign_num': 5, 'planets': {'Ke': '+16:17:07'}},
# '7': {'sign_num': 6, 'planets': {}},
# '8': {'sign_num': 7, 'planets': {}},
# '9': {'sign_num': 8, 'planets': {'Mo': '+10:56:37', 'Ju': '+18:17:44'}},
# '10': {'sign_num': 9, 'planets': {'Pl': '+03:27:17'}},
# '11': {'sign_num': 10, 'planets': {'Ne': '+27:46:35'}},
# '12': {'sign_num': 11, 'planets': {'Ra': '+16:17:07', 'Ur': '+24:43:19'}}
# }
# -------------------------------------------------------------------------
# 1 = First House
# 2 = Second House
# 3 = Third House
# ...
```
<h3>Transit Chart</h3>
```
from AstroKundli import GKundli
# Transit Chart
Lagna_Chart = GKundli.GKundli(2007, 6, 28, 0, 0,"2:00", 25.7479, 28.2293).lagnaChart()
Transit_Chart = GKundli.GKundli(2007, 6, 28, 0, 0,"2:00", 25.7479, 28.2293).transitChart(Lagna_Chart)
print(Transit_Chart)
# Output:
# {'1': {'sign_num': 12, 'asc': '+25:34:23>', 'planets': {'Ne': '+02:43:02'}},
# '2': {'sign_num': 1, 'asc': None, 'planets': {'Ju': '+21:16:05', 'Ra': '+03:25:39', 'Ur': '+28:53:15'}},
# '3': {'sign_num': 2, 'asc': None, 'planets': {}},
# '4': {'sign_num': 3, 'asc': None, 'planets': {}},
# '5': {'sign_num': 4, 'asc': None, 'planets': {'Ve': '+19:23:12'}},
# '6': {'sign_num': 5, 'asc': None, 'planets': {'Su': '+09:05:54', 'Me': '+27:14:48'}},
# '7': {'sign_num': 6, 'asc': None, 'planets': {'Ma': '+05:19:09'}},
# '8': {'sign_num': 7, 'asc': None, 'planets': {'Ke': '+03:25:39'}},
# '9': {'sign_num': 8, 'asc': None, 'planets': {}},
# '10': {'sign_num': 9, 'asc': None, 'planets': {'Mo': '+09:09:58'}},
# '11': {'sign_num': 10, 'asc': None, 'planets': {'Pl': '+04:09:25'}},
# '12': {'sign_num': 11, 'asc': None, 'planets': {'Sa': '+09:41:33'}}}
```
## Installation
You might need to install C++ build tools or install the **Desktop development with C++** from visual studio installer if you're on Windows.
```
pip install AstroKundli
```
or
download AstroKundli from https://github.com/EH30/AstroKundli/
run powershell as an Administrator and cd to the AstroKundli folder then enter
```
pip install .
```
Raw data
{
"_id": null,
"home_page": "https://github.com/EH30/AstroKundli",
"name": "AstroKundli",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "Astrology,Sidereal Astrology,Kundli",
"author": "EH",
"author_email": "",
"download_url": "https://files.pythonhosted.org/packages/c5/90/89865519eb547128458f72d7b4a7a93d28037b2da071cfd181f6d2911c59/AstroKundli-3.1.0.tar.gz",
"platform": null,
"description": "# AstroKundli\r\nAstroKundli uses flatlib_sidereal. \r\nflatlib was made by Jo\u00c3\u00a3o Ventura and sidereal was added by joaoventura. \r\n\r\nAstroKundli Generates Lagna Chart. \r\n\r\n# Example \r\n<h3>Lagna Chart</h3> \r\n\r\n```\r\nfrom AstroKundli import GKundli\r\n\r\n# Largna Chart \r\nLagna_Chart = GKundli.GKundli(2007, 6, 28, 0, 0,\"2:00\", 25.7479, 28.2293).lagnaChart()\r\nprint(Lagna_Chart)\r\n# Output: \r\n# {\r\n# '1': {'sign_num': 12, 'asc': '+11:21:18>', 'planets': {}}, \r\n# '2': {'sign_num': 1, 'planets': {'Ma': '+08:13:20'}}, \r\n# '3': {'sign_num': 2, 'planets': {}}, \r\n# '4': {'sign_num': 3, 'planets': {'Su': '+11:54:51', 'Me': '+13:14:45'}}, \r\n# '5': {'sign_num': 4, 'planets': {'Sa': '+28:02:18', 'Ve': '+25:42:01'}}, \r\n# '6': {'sign_num': 5, 'planets': {'Ke': '+16:17:07'}}, \r\n# '7': {'sign_num': 6, 'planets': {}}, \r\n# '8': {'sign_num': 7, 'planets': {}}, \r\n# '9': {'sign_num': 8, 'planets': {'Mo': '+10:56:37', 'Ju': '+18:17:44'}}, \r\n# '10': {'sign_num': 9, 'planets': {'Pl': '+03:27:17'}}, \r\n# '11': {'sign_num': 10, 'planets': {'Ne': '+27:46:35'}}, \r\n# '12': {'sign_num': 11, 'planets': {'Ra': '+16:17:07', 'Ur': '+24:43:19'}}\r\n# }\r\n# -------------------------------------------------------------------------\r\n# 1 = First House\r\n# 2 = Second House\r\n# 3 = Third House\r\n# ...\r\n``` \r\n\r\n<h3>Transit Chart</h3> \r\n\r\n```\r\nfrom AstroKundli import GKundli\r\n\r\n# Transit Chart \r\nLagna_Chart = GKundli.GKundli(2007, 6, 28, 0, 0,\"2:00\", 25.7479, 28.2293).lagnaChart()\r\nTransit_Chart = GKundli.GKundli(2007, 6, 28, 0, 0,\"2:00\", 25.7479, 28.2293).transitChart(Lagna_Chart)\r\nprint(Transit_Chart)\r\n\r\n# Output: \r\n# {'1': {'sign_num': 12, 'asc': '+25:34:23>', 'planets': {'Ne': '+02:43:02'}}, \r\n# '2': {'sign_num': 1, 'asc': None, 'planets': {'Ju': '+21:16:05', 'Ra': '+03:25:39', 'Ur': '+28:53:15'}}, \r\n# '3': {'sign_num': 2, 'asc': None, 'planets': {}}, \r\n# '4': {'sign_num': 3, 'asc': None, 'planets': {}}, \r\n# '5': {'sign_num': 4, 'asc': None, 'planets': {'Ve': '+19:23:12'}}, \r\n# '6': {'sign_num': 5, 'asc': None, 'planets': {'Su': '+09:05:54', 'Me': '+27:14:48'}}, \r\n# '7': {'sign_num': 6, 'asc': None, 'planets': {'Ma': '+05:19:09'}}, \r\n# '8': {'sign_num': 7, 'asc': None, 'planets': {'Ke': '+03:25:39'}}, \r\n# '9': {'sign_num': 8, 'asc': None, 'planets': {}}, \r\n# '10': {'sign_num': 9, 'asc': None, 'planets': {'Mo': '+09:09:58'}}, \r\n# '11': {'sign_num': 10, 'asc': None, 'planets': {'Pl': '+04:09:25'}}, \r\n# '12': {'sign_num': 11, 'asc': None, 'planets': {'Sa': '+09:41:33'}}}\r\n```\r\n\r\n\r\n\r\n## Installation\r\n\r\nYou might need to install C++ build tools or install the **Desktop development with C++** from visual studio installer if you're on Windows. \r\n```\r\npip install AstroKundli\r\n```\r\n \r\nor \r\n\r\ndownload AstroKundli from https://github.com/EH30/AstroKundli/ \r\nrun powershell as an Administrator and cd to the AstroKundli folder then enter \r\n``` \r\npip install .\r\n``` \r\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Python library for Astrology",
"version": "3.1.0",
"project_urls": {
"Homepage": "https://github.com/EH30/AstroKundli"
},
"split_keywords": [
"astrology",
"sidereal astrology",
"kundli"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "c59089865519eb547128458f72d7b4a7a93d28037b2da071cfd181f6d2911c59",
"md5": "d11f42c0c4983a91315d9a2a9660abc1",
"sha256": "be477b51466ff753b39f42dfdce9a9d6fb2545e005d4d089965c736ea1a828cd"
},
"downloads": -1,
"filename": "AstroKundli-3.1.0.tar.gz",
"has_sig": false,
"md5_digest": "d11f42c0c4983a91315d9a2a9660abc1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 5707969,
"upload_time": "2023-09-17T13:14:53",
"upload_time_iso_8601": "2023-09-17T13:14:53.384376Z",
"url": "https://files.pythonhosted.org/packages/c5/90/89865519eb547128458f72d7b4a7a93d28037b2da071cfd181f6d2911c59/AstroKundli-3.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-09-17 13:14:53",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "EH30",
"github_project": "AstroKundli",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [],
"lcname": "astrokundli"
}