Metadata-Version: 2.2
Name: NectaPy
Version: 0.3.0
Summary: A Python package for accessing NECTA (National Examinations Council of Tanzania) results
Home-page: https://github.com/Henryle-hd/NectaPy
Author: Henrylee
Author-email: henrydionizi@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4>=4.12.3
Requires-Dist: requests>=2.25.1
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# NectaPy

A Python package for accessing NECTA (National Examinations Council of Tanzania) examination results.

## Installation

```bash
pip install NectaPy

```

## Usage

```python
from NectaPy import st_result
# Get student result
result = st_result('XXXX/0003/2023', 'ftna');
print(result)
```

## Supported Examinations

Primary Level:

> - SFNA (Standard 2): 2017-2024
> - PSLE (Standard 7): 2016-2024

Secondary Level:

> - FTNA (Form 2): 2022-2024
> - CSEE (Form 4): 2015-2024
> - ACSEE (Form 6): 2014-2024

College Level:

> - GATCE: 2019-2024
> - DSEE: 2019-2024
> - GATSCCE: 2019-2024

### Example Output

```json
{
"CNO": "XXXX/0003",
"PReM NO": "xxxxxxx"
"CANDIDATE NAME": "XXXXX XXXXX XXXXX",
"SEX": "F",
"AGGT": "18",
"DIV": "II",
"DETAILED SUBJECTS": "CIV-'D' HIST-'C' GEO-'B' KISW-'C' ENGL-'B' PHY-'D' CHEM-'B' BIO-'C' B/MATH-'C'"
}

```
