検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 243 for python (0.021 sec.)
Django 1.9 リリースノート — Django 4.0.6 ドキュメント 5494
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Django to a newer version ガイドに従ってください。 Python バージョン間の互換性 ¶ Django 1.9 の動作には Pytho ... いずれかが必要です。各バージョン系列の最終リリースの Python を使用することを 強く推奨 し、公式には最終リリース ... しかサポートしません。 Django 1.8 シリーズが Python 3.2 および 3.3 をサポートする最後のバージョンになり ... rage.get_valid_name() が呼ばれるようになりました。 Python 3 を使用している場合に File が seekable() メソッド ...
https://man.plustar.jp/django/releases/1.9.html - [similar]
Django 2.0 リリースノート — Django 4.0.6 ドキュメント 5494
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Django to a newer version ガイドに従ってください。 Python バージョン間の互換性 ¶ Django 2.0 supports Python ... icially support the latest release of each series. Python 2.7 をサポートするのは、Django 1.11.x シリーズで最 ... 後になります。 Django 2.0 は Python 3.4 をサポートする最後のリリース系列になる予定です ... 。Django 2.0 (April 2019) の end-of-life 後もまだ Python 3.4 を使用する予定であれば、代わりに Django 1.11 L ...
https://man.plustar.jp/django/releases/2.0.html - [similar]
モデル — Django 4.0.6 ドキュメント 5494
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... スのテーブルに対応付けられます。 基本: モデルは各々 Python のクラスであり django.db.models.Model のサブクラス ... 名にいくつかの制約を課しています。 フィールド名には Python の予約語が使えない。もし使用した場合、Python の構文 ... 特によく定義することになるものがあります: __str__() Python の "魔法のメソッド" で、オブジェクトを表す文字列を ... 返しま。 Python と Django は、モデルのインスタンスを文字列で表示す ...
https://man.plustar.jp/django/topics/db/models.html - [similar]
データベース — Django 4.0.6 ドキュメント 5454
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rs ¶ MySQL has a couple drivers that implement the Python Database API described in PEP 249 : mysqlclient is ... ver. It's the recommended choice . MySQL Connector/Python is a pure Python driver from Oracle that does not ... require the MySQL client library or any Python modules outside the standard library. These driver ... s an adapter for mysqlclient while MySQL Connector/Python includes its own . mysqlclient ¶ Django requires m ...
https://man.plustar.jp/django/ref/databases.html - [similar]
クエリー式 — Django 4.0.6 ドキュメント 5454
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and the power operator on query expressions, using Python constants, variables, and even other expressions. ... ually having to pull them out of the database into Python memory. Instead, Django uses the F() object to gen ... base into memory and manipulated it using familiar Python operators, and then saved the object back to the d ... filed = F('stories_filed') + 1 looks like a normal Python assignment of value to an instance attribute, in f ...
https://man.plustar.jp/django/ref/models/expressions.html - [similar]
Django 4.0 release notes — Django 4.0.6 ドキュメント 5454
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Django to a newer version ガイドに従ってください。 Python バージョン間の互換性 ¶ Django 4.0 supports Python ... es. The Django 3.2.x series is the last to support Python 3.6 and 3.7. What's new in Django 4.0 ¶ zoneinfo d ... efault timezone implementation ¶ The Python standard library's zoneinfo is now the default tim ... be removed in Django 5.0. zoneinfo is part of the Python standard library from Python 3.9. The backports.zo ...
https://man.plustar.jp/django/releases/4.0.html - [similar]
How to use Django with Daphne — Django 4.0.6 ドキュメント 5373
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... » How to use Django with Daphne ¶ Daphne is a pure-Python ASGI server for UNIX, maintained by members of the ... talling Daphne ¶ You can install Daphne with pip : python -m pip install daphne Running Django in Daphne ¶ W ... 0.1:8000 . It requires that your project be on the Python path; to ensure that run this command from the sam ...
https://man.plustar.jp/django/howto/deployment/asgi/daphne.html - [similar]
アプリケーション — Django 4.0.6 ドキュメント 5373
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... の web アプリケーションを指します。プロジェクトの Python パッケージは主に settings モジュールで定義されます ... asgi.py 、 wsgi.py などのファイルが含まれる mysite Python パッケージが作られます。プロジェクトパッケージは、 ... (application) という言葉は、何らかの機能を提供する Python パッケージを意味します。アプリケーションはさまざま ... read-only. 設定可能な属性 ¶ AppConfig. name ¶ Full Python path to the application, e.g. 'django.contrib.admi ...
https://man.plustar.jp/django/ref/applications.html - [similar]
How to use Django with Gunicorn — Django 4.0.6 ドキュメント 5332
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... th Gunicorn ¶ Gunicorn ('Green Unicorn') is a pure-Python WSGI server for UNIX. It has no dependencies and c ... Installing Gunicorn ¶ Install gunicorn by running python -m pip install gunicorn . For more details, see th ... 0.1:8000 . It requires that your project be on the Python path; the simplest way to ensure that is to run th ...
https://man.plustar.jp/django/howto/deployment/wsgi/gunicorn.html - [similar]
How to configure and use logging — Django 4.0.6 ドキュメント 5332
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... suggested in the example below. First, import the Python logging library, and then obtain a logger instance ... n this) which will provide the name of the current Python module as a dotted path: import logging logger = l ... ettings are merged with Django's defaults. See the Python logging documentation for details of other ways of ... configures a single handler named file , that uses Python's FileHandler to save logs of level DEBUG and high ...
https://man.plustar.jp/django/howto/logging.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT