(Yet Another Luxmed Monitoring App)
Yalma is an application that allows monitoring visits availability in Luxmed for helping you to take care of your health. If any visits that fulfill your criteria become available, Yalma will notify you about that by email. Currently, the app supports to monitor availability considering the city, service, clinic, doctor, time of day and date range which you are interested in.
-
Install required dependencies by
pip install -r requirements.txt
-
Before you run the app, please create a
config.ini
file at path (this is a manual procedure for now):$HOME/.config/yalma/
if you are using GNU/Linux or Mac;C:\Users\your_username\AppData\Local\yalma\
if you are on Windows.
Here is a template of that
config.ini
file:[luxmed] username = password = language = en [email_settings] username = password = smtp_server = smtp_port =
- you have to provide your
username
andpassword
there; language
position has 2 possible values:en
orpl
- this setting has an influence on returned data (like specialization names) from the Luxmed system and errors. This flag doesn't affect the language used by the doctor during a visit
These are settings for sending email to you when any visits are available. Your
username
is an email address from which the email will be sent as a notification about newly available visits.username
andpassword
is pretty obvious ;)- SMTP server and port depend on your mail server. For instance, for Gmail it will be
smtp.gmail.com
and465
as a port.
First of all, just run the app by the python yalma.py
command. To start to monitor available visits, you have to know
in which city you are going to monitor visits and decide what the service will be. The service is a consultation
with a doctor or an examination. Those data are represented by IDs. So let's get them! Let's start by getting
your city ID:
python yalma.py cities
Yalma will return identifiers for all cities where Luxmed has its clinics. Now you have to choose a service which you are interested in:
python yalma services
Now you can start to monitor visits for your criteria. To check how to do that, you can use a --help
option on the
monitor
command:
python yalma.py monitor --help
Keep in mind that Yalma doesn't have any scheduling mechanism implemented, so in order to check the visits availability
every - for instance - 15 minutes, you can add above mentioned monitor
command with required parameters
to your crontab to let Cron do its job ;) For example:
*/15 * * * * /usr/bin/python /home/your_user_name/yalma.py monitor --email [email protected] --city-id 1 --service-id 13410 --to-date 2020-11-30
Once visits will be available, you will get an email notification with a short report which contains a number of available visits on a particular day in each clinic in your city.
It's worth to add, that Yalma supports the --help
option in every step, so to see which commands you can run
in the app, you can just invoke:
python yalma.py --help
Now it's your turn - try to invoke this option on each command (cities
, clinics
, doctors
, services
and monitor
) - thanks to that you will know every functionality in the app.
- Implement some basic configuration wizard to get rid of manual procedure for creation a config.ini in manually way ;)
- Create a more user-friendly report sent by email - maybe it should be sent as HTML with well-defined sections.
- Write the whole app like a pr0, with proper tests and using Python syntax like a pr0 - sorry, I'm a Java developer ;)