skip to Main Content

Redis – Psycopg2 Error When Running Django Via Serverless

File "/var/task/django/db/backends/postgresql/base.py", line 29, in raise ImproperlyConfigured("Error loading psycopg2 module: %s" % e) django.core.exceptions.ImproperlyConfigured: Error loading psycopg2 module: libpq.so.5: cannot open shared object file: No such file or directory I'm receiving the following error after deploying a Django application via…

VIEW QUESTION

lamda funtion in @bot.message_handler() not working properly in telebot python – Telegram API

I tried to implement the following line of code in python script for a telegram bot building using telebot. @bot.message_handler(func=lambda msg:True if msg.text.startswith('/test')) def test_start(message): msg=bot.send_message(message.chat.id,'This feature is under developement') Above code gives me a syntax error. @bot.message_handler(func=lambda msg:True if…

VIEW QUESTION
Back To Top
Search