{"id":45516286,"url":"https://github.com/devadathanmb/rit-etlab-api","last_synced_at":"2026-02-22T20:19:54.161Z","repository":{"id":193911410,"uuid":"682891251","full_name":"devadathanmb/rit-etlab-api","owner":"devadathanmb","description":"Unoffical API for ETLab portal so that you can make all the cool stuff","archived":false,"fork":false,"pushed_at":"2026-02-15T17:27:46.000Z","size":49,"stargazers_count":24,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-16T00:09:45.873Z","etag":null,"topics":["etlab","flask-api","wrapper-api"],"latest_commit_sha":null,"homepage":"https://rit-etlab-api.onrender.com/apidocs","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devadathanmb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-08-25T05:43:50.000Z","updated_at":"2026-02-15T17:27:42.000Z","dependencies_parsed_at":"2024-04-07T16:46:26.459Z","dependency_job_id":null,"html_url":"https://github.com/devadathanmb/rit-etlab-api","commit_stats":null,"previous_names":["devadathanmb/rit-etlab-wrapperapi"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devadathanmb/rit-etlab-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devadathanmb%2Frit-etlab-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devadathanmb%2Frit-etlab-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devadathanmb%2Frit-etlab-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devadathanmb%2Frit-etlab-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devadathanmb","download_url":"https://codeload.github.com/devadathanmb/rit-etlab-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devadathanmb%2Frit-etlab-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29725571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T20:09:16.275Z","status":"ssl_error","status_checked_at":"2026-02-22T20:09:13.750Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["etlab","flask-api","wrapper-api"],"created_at":"2026-02-22T20:19:52.428Z","updated_at":"2026-02-22T20:19:54.150Z","avatar_url":"https://github.com/devadathanmb.png","language":"Python","readme":"# RIT Etlab Portal API\n\nUnofficial API for accessing useful data for students from the [RIT Etlab portal](https://rit.etlab.in/user/login). This API allows you to perform actions such as login, logout, view attendance, access timetable, retrieve basic profile information, and more.\n\n\u003e [!NOTE]\n\u003e This API relies on web scraping techniques and may be subject to potential bugs if the structure of the RIT Etlab portal changes.\n\n\u003e [!TIP]\n\u003e Even though this project was made specifically for [RIT Etlab portal](https://rit.etlab.in/user/login), this project could be used for any **Etlab** implementations by making required changes to the `BASE_URL` and `COOKIE_KEY` present in `config.py`\n\n## Table of Contents\n\n- [Features](#features)\n- [Installation](#installation)\n  - [With Docker](#with-docker)\n  - [Without Docker](#without-docker)\n- [Usage](#usage)\n- [Documentation](#documentation)\n- [Known Issues](#known-issues)\n- [Deployment](#deployment)\n  - [Availability](#availability)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Features\n\n- Login to RIT Etlab portal\n- View attendance details\n- Access timetable information\n- Retrieve basic profile information\n- View present attendance information\n- View absent attendance information\n\n## Installation\n\n### With Docker\n\n1. Ensure you have Docker and Docker compose installed on your machine.\n\n2. Clone the repository:\n\n   ```bash\n   git clone https://github.com/devadathanmb/rit-etlab-api.git\n   ```\n\n3. Navigate to the project directory:\n\n   ```bash\n   cd rit-etlab-api/\n   ```\n\n4. Build and run the docker container\n\n   ```bash\n   docker compose up\n   ```\n\n5. That's it. The API would be live now. Check the status using\n\n   ```bash\n   curl http://localhost:5000/api/status\n   ```\n\n### Without Docker\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/devadathanmb/rit-etlab-api.git\n   ```\n\n2. Navigate to the project directory:\n\n   ```bash\n   cd rit-etlab-api\n   ```\n\n3. Create and activate a virtual environment (optional):\n\n   ```bash\n   python -m venv venv\n   source venv/bin/activate  # On Windows, use `venv\\Scripts\\activate`\n   ```\n\n4. Install dependencies:\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n5. Run the application:\n\n   ```bash\n   python run.py\n   ```\n\n   The API will be accessible at `http://127.0.0.1:5000/` by default.\n\n---\n\n## Usage\n\nFor detailed information on API endpoints and usage, refer to the [Swagger Documentation](https://rit-etlab-api.onrender.com/apidocs).\n\n## Known Issues\n\n- The API relies on web scraping and may encounter issues if the structure of the RIT Etlab portal changes.\n\n## Deployment\n\nThe API is deployed at **https://rit-etlab-api.onrender.com/apidocs**. Visit the deployment for live usage.\n\n### Availability\n\nMonitor the API's availability in real-time using [Uptime Robot Status Page](https://stats.uptimerobot.com/pplYnfQOZQ).\n\n## Contributing\n\nFeel free to contribute to the development of this API. Fork the repository, make your changes, and submit a pull request.\n\n## License\n\nThis project is licensed under the [GPL 3.0 License](./LICENSE.md).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevadathanmb%2Frit-etlab-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevadathanmb%2Frit-etlab-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevadathanmb%2Frit-etlab-api/lists"}