An open API service indexing awesome lists of open source software.

https://github.com/apexal/trp

Third-party Regis Python Module
https://github.com/apexal/trp

Last synced: 2 months ago
JSON representation

Third-party Regis Python Module

Awesome Lists containing this project

README

        

***DISCONTINUED***: *TRP has been replaced with my new scraper TRMS found under Aedificem https://github.com/Aedificem/trms*
# TRP Module - The Sidekick to OnTrac

**T** - Third-party

**R** - Regis High School

**P** - Python

```$ pip2 install trp```

```python
from trp import TRP
# TRP will initialize everything
t = TRP(secretsPATH, dbIP, dbPORT, dbNAME) # all arguments are optional
# TRP("./secrets.json", "localhost", "27107", "regis") <--- defaults
t.scraper.scrape(1199, "person")
```

***secrets.json*** format:
```json
{
"regis_username": "usernamehere",
"regis_password": "passwordhere"
}
```