{"id":34512474,"url":"https://github.com/ireddragonicy/umpsa-connect","last_synced_at":"2026-03-16T05:04:29.471Z","repository":{"id":313851651,"uuid":"867727971","full_name":"IRedDragonICY/umpsa-connect","owner":"IRedDragonICY","description":"UMPSA Connect is a Python application with a GUI interface that streamlines the process of mass registration, email retrieval, and automatic login to the UMPSA portal.","archived":false,"fork":false,"pushed_at":"2025-10-27T09:32:31.000Z","size":9869,"stargazers_count":1,"open_issues_count":5,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-25T15:16:41.279Z","etag":null,"topics":["api","application","automation","cisco","connect","desktop","gmail","network","python","selenium","software","wifi"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/IRedDragonICY.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-10-04T15:50:49.000Z","updated_at":"2025-09-09T04:20:06.000Z","dependencies_parsed_at":"2025-09-09T06:58:36.268Z","dependency_job_id":null,"html_url":"https://github.com/IRedDragonICY/umpsa-connect","commit_stats":null,"previous_names":["ireddragonicy/umpsa-connect"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/IRedDragonICY/umpsa-connect","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IRedDragonICY%2Fumpsa-connect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IRedDragonICY%2Fumpsa-connect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IRedDragonICY%2Fumpsa-connect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IRedDragonICY%2Fumpsa-connect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IRedDragonICY","download_url":"https://codeload.github.com/IRedDragonICY/umpsa-connect/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IRedDragonICY%2Fumpsa-connect/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30566855,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-16T04:42:47.996Z","status":"ssl_error","status_checked_at":"2026-03-16T04:42:44.668Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["api","application","automation","cisco","connect","desktop","gmail","network","python","selenium","software","wifi"],"created_at":"2025-12-24T04:11:02.107Z","updated_at":"2026-03-16T05:04:29.465Z","avatar_url":"https://github.com/IRedDragonICY.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UMPSA Connect\n\nUMPSA Connect is a Python application with a GUI interface that streamlines the process of mass registration, email retrieval, and automatic login to the UMPSA portal.\n\n## Features\n\n- **Mass Registration**: Automate the registration of up to 5,000 accounts.\n- **Email Retrieval**: Fetch credential emails from Gmail and extract login information.\n- **Automatic Login**: Use extracted credentials to log in to the portal seamlessly.\n- **User-Friendly GUI**: Intuitive interface with real-time progress updates.\n\n## Prerequisites\n\n- **Python 3.x**\n- **Microsoft Edge WebDriver**\n- **Google API Credentials**: A `client_secret.json` file for Gmail authentication.\n\n### Python Packages\n\nEnsure the following packages are installed:\n\n- `beautifulsoup4`\n- `google-auth`\n- `google-auth-oauthlib`\n- `google-api-python-client`\n- `selenium`\n- `tk`\n\nInstall the packages using pip:\n\n```bash\npip install -r requirements.txt\n```\n\n\u003e **Note**: Create a `requirements.txt` file with the list of packages above.\n\n## Installation\n\n1. **Clone the Repository**\n\n   ```bash\n   git clone https://github.com/username/umpsa-connect.git\n   cd umpsa-connect\n   ```\n\n2. **Install Dependencies**\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n3. **Set Up Google API Credentials**\n\n   - Obtain the `client_secret.json` file from the Google Cloud Console.\n   - Place the file in the project directory.\n\n4. **Configure Edge WebDriver**\n\n   - Download the [Microsoft Edge WebDriver](https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/).\n   - Ensure the WebDriver is added to your system's PATH environment variable.\n\n## Usage\n\n1. **Run the Application**\n\n   Execute the main script:\n\n   ```bash\n   python main.py\n   ```\n\n2. **GUI Interface**\n\n   - **Register**: Start the mass registration process.\n   - **Fetch Email**: Retrieve emails and extract credentials.\n   - **Login**: Automatically log in using available credentials.\n\n## Project Structure\n\n```\numpsa-connect/\n├── credentials.csv        # Stores extracted credentials\n├── main.py                # Main application script\n├── requirements.txt       # Python package dependencies\n├── client_secret.json     # Google API credentials file\n├── token.json             # Token file for Gmail API authentication\n└── README.md              # Project documentation\n```\n\n## Contributing\n\nContributions are welcome! Please fork the repository and submit a pull request for any enhancements or bug fixes.\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the Branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License\n\nDistributed under the [MIT License](LICENSE).\n---\n\n*Crafted with ❤️ by IRedDragonICY.*","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fireddragonicy%2Fumpsa-connect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fireddragonicy%2Fumpsa-connect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fireddragonicy%2Fumpsa-connect/lists"}