Python

Thumbnail of post image 153

今回はPythonでNull合体演算子はどう書けば良いのかについてご紹介いたします。

PythonでNull合体演算子はどう書けば良いのか

Null合体演算子というのは、二つの値が与えられたときに、一つ目の値がnullでなけ ...

Django

Thumbnail of post image 072

今回はDjangoでquery_paramsを使っているときに「django.utils.datastructures.MultiValueDictKeyError」というエラーが出たときの原因と対処法についてご紹介いたします。

Django

Thumbnail of post image 046

今回はDjangoを使っているときに「django.db.utils.OperationalError: cannot ALTER TABLE 〇〇 because it has pending trigger events」というエ ...

Python

Thumbnail of post image 044

今回はPythonのFirebaseでユーザが最後にログインした日時を取得したいときどのようにすれば良いのかについてご紹介いたします。

PythonのFirebaseでユーザが最後にログインした日時を取得したいとき

結論を書 ...

Python

Thumbnail of post image 164

今回はPythonで「TypeError: can’t compare datetime.datetime to datetime.date」というエラーが起きたときの対処法についてご紹介いたします。

Pythonで ...

Django

Thumbnail of post image 018

今回はDjango+PostgreSQLの環境でconnectionを使ってSQLを流したときに、「column 〇〇 is of type date but expression is of type integer」というエラーが ...

Python

Thumbnail of post image 192

今回はPythonで (most likely due to a circular import)というエラーが起きたときの主な原因についてご紹介いたします。

Pythonで (most likely due to a circ ...

Django

Thumbnail of post image 029

今回はDjangoで「django.db.utils.ProgrammingError: there is no unique constraint matching given keys for referenced table 〇 ...

Django

Thumbnail of post image 188

今回はメモ書き程度ですがDjangoでunique_togetherからUniqueConstraintに変えたいときのサンプル、方法についてご紹介いたします。

Djangoでunique_togetherからUniqueCon ...

Django

Thumbnail of post image 191

今回はDjangoでSendGridを使っているときに、Substitution Tagsを使用するためのサンプルコードをご紹介いたします。

DjangoのSendGridでSubstitution Tagsを使用するサンプルコ ...

Django

Thumbnail of post image 038

今回はDjangoでSendGridを使っていて、toを複数指定して一斉送信をしたいときのサンプルコードについてご紹介いたします。

DjangoでSendGridを使っていてtoを複数指定して一斉送信をしたいときのサンプルコード ...

Django

Thumbnail of post image 094

今回はDjangoを使っているときにSendGridのメール送信において、send_atを指定して送信日時を予約するサンプルコードをご紹介したいと思います。

DjangoでSendGridのメール送信でsend_atを指定して送 ...

Python

Thumbnail of post image 155

今回はPythonを使っていて配列の中から配列を切り出す方法についてご紹介いたします。

Pythonで配列の中から配列を切り出す方法

例として、次のような配列があるとします。

この中から、4番目から5番目のリスト ...

Python

Thumbnail of post image 122

今回はPythonで日時(datetime)の形のバリデーションを行いたいときどのようにすれば良いのかについてご紹介いたします。

Python3です。

Pythonで日時(datetime)の形のバリデーションを行い ...

DRF

Thumbnail of post image 142

自分のメモ書き用です。

DjangoのDRFでpkを入れて型を指定しないときに、pkが末尾にあるとint、urlの途中にあるとstringになります。

Djangoのバージョンは2.2.24です。

DRF ...