English | 中文
This is a calendar subscription application designed for university students. The application allows students to easily synchronize their school's course schedules, exam arrangements, and other important events to their personal calendars.
Currently supported schools:
- Xi'an University of Architecture and Technology (XAUAT)
- Northwest A&F University (NWAFU)
- Automatic synchronization of XAUAT and NWAFU student course schedules
- Import exam schedules and important school dates
- Support for various calendar applications (such as Google Calendar, Apple Calendar, Outlook, etc.)
- Real-time updates to ensure information is always up-to-date
- Visit our web application: Schedule
- Select your school
- Log in with your student account
- Click the "Subscribe" button
- Add the generated link to your preferred calendar application
We welcome and appreciate any form of contribution! Here are some ways to participate in the project:
If you find a bug or have a suggestion for a new feature, please create an issue on GitHub. Be sure to provide the following information:
- Detailed description of the issue
- Steps to reproduce the problem (if applicable)
- Expected behavior and actual behavior
- Screenshots (if they help illustrate the issue)
- Fork this repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
- For Python code, please follow the PEP 8 style guide
- For JavaScript/HTML/CSS, use 2 space indentation
- Ensure your code has appropriate comments
If you want to add support for a new school, please follow these steps:
- Create a new folder in the
backend/school
directory, named after the school - Implement the
*_client.py
file in the newly created folder, inheriting from theBaseAcademicSystemClient
class - Implement all necessary methods, including authentication, retrieving course and exam information, etc.
- Add the new school option to the school selection dropdown menu in the
web/index.html
file
- Before submitting a PR, make sure all existing tests pass
- If you add new features, please write corresponding tests for them
Thank you for your contribution to the project!