K
K
Kt0T02021-04-21 17:03:35
Python
Kt0T0, 2021-04-21 17:03:35

Python like system?

I would like to implement a system of likes under posts in Telegram, for example:

60803063b8a7e095035959.png

But I got confused, how can I make a separate system of likes for each post, so that the numbers are not the same!

Answer the question

In order to leave comments, you need to log in

2 answer(s)
Y
Yupiter7575, 2021-04-21
@yupiter7575

Database is our future!

O
o5a, 2021-04-22
@o5a

It is possible so for example. Table for storing likes by post and user:

CREATE TABLE IF NOT EXISTS post_likes (
id integer primary key,
post_id integer, -- id поста
user_id integer, -- id пользователя
likes integer
);

Likes can be recorded in one "likes" field. 1 - like, 0 - nothing, -1 - dislike.
Accordingly, to collect the totals, you can use the following query:
select sum(likes) total_score, -- общий счет
sum(case likes when 1 then 1 end) sum_likes, -- кол-во лайков
sum(case likes when -1 then 1 end) sum_dislikes -- кол-во дизлайков
from post_likes where post_id = нужный_id_поста

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question