Trying to save a date in PostgreSQL using Python, it gives me an UTC+2 for my timezone while it is UTC+1 (dont mind the difference, I just used a Python test to get how the timezone is)
In [8]: datetime.datetime.now(pytz.timezone("Africa/Algiers"))
Out[8]: datetime.datetime(2018, 7, 7, 15, 27, 43, 756977, tzinfo=<DstTzInfo 'Africa/Algiers' CET+1:00:00 STD>)
On PostgreSQL, I get
2018-07-07 14:28:04.144505+02
This is like postgresql adds a daylight saving while we dont have it in Algeria ?
NB: I use asyncpg