This tool is specifically designed to help students who want to publish on the BEEI (Bulletin of Electrical Engineering and Informatics) website by checking their journal review status instantly. By using this tool, you do not need to open a browser and enter credentials every time you want to get the latest information about the status of your publication on BEEI. This tool only works for the BEEI website and cannot be used for other websites.
- Check journal review status in one click.
- Retrieve information from journal websites using scraping techniques.
- Uses
.envfiles to securely store credentials.
Before running this tool, make sure you have Python 3.x installed on your system.
- Clone this repository:
git clone https://github.com/tarokeitaro/beei-status.git
cd beei-status- Create Virtual Environment: It is recommended that you use a virtual environment to manage the dependencies of this project. You can create a virtual environment with the following command:
python -m venv venv- Enable Virtual Environment:
- In Windows:
venv\Scripts\activate- In macOS/Linux:
source venv/bin/activate- Install Dependencies: Once the virtual environment is active, install the required dependencies by running:
pip install -r requirements.txt- Create File
.env: Create a.envfile in the root directory of your project and add your credentials:
USERNAME=your_username
PASSWORD=your_password
REMEMBER=1
TARGET_URL=https://beei.org/index.php/EEI/author/submission/00000
After all the steps above are completed, you can run the script to check the journal review status:
python main.pySample output:
Status: In Review
Initiated: 2025-02-09
Last modified: 2025-02-10If you would like to contribute to this project, please create a pull request or open an issue for discussion.
This project is licensed under the MIT License.