検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 243 for python (0.073 sec.)
URL ディスパッチャ — Django 4.0.6 ドキュメント 5697
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... るには、俗に URLconf (URL configuration) と呼ばれる Python モジュールを作る必要があります。このモジュールは p ... ure Python コードであり、URLパス表記とあなたの書いたビューの ... もできます。他のマッピングも参照できます。また、pure Python コードなので、動的に生成できます。 Django は有効に ... で作られたサイト上のページをリクエストした時に、どの Python コードが実行されるかは以下のアルゴリズムで決定され ...
https://man.plustar.jp/django/topics/http/urls.html - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 5616
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e key you want to use. An install of some required Python packages: $ python -m pip install wheel twine Acce ... s deprecated, and that they mention any changes in Python version support. Double-check that the release not ... teps. Provided you have an account on Transifex: $ python scripts/manage_translations.py fetch and then comm ... ERSION = ` echo $RELEASE_VERSION | cut -c 1 -3 ` $ python -m venv django-easy-install $ . django-easy-instal ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
Django 1.8 リリースノート — Django 4.0.6 ドキュメント 5616
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... end 6 months from the release date of Django 1.8. Python バージョン間の互換性 ¶ Django 1.8 requires Python ... series. Django 1.8 is the first release to support Python 3.5. Due to the end of upstream support for Python ... .2 in February 2016, we won't test Django 1.8.x on Python 3.2 after the end of 2016. What's new in Django 1. ... tionField for storing periods of time - modeled in Python by timedelta . It is stored in the native interval ...
https://man.plustar.jp/django/releases/1.8.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 5575
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... begun the deprecation process for some features . Python バージョン間の互換性 ¶ Django 1.6, like Django 1.5 ... , requires Python 2.6.5 or above. Python 3 is also officially suppor ... ommend the latest minor release for each supported Python series (2.6.X, 2.7.X, 3.2.X, and 3.3.X). Django 1. ... 6 will be the final release series to support Python 2.6; beginning with Django 1.7, the minimum suppor ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
PostgreSQL specific model fields — Django 4.0.6 ドキュメント 5535
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... slices use 0-based indexing to be consistent with Python. Slice transforms ¶ Slice transforms take a slice ... reate ( name = 'Third post' , tags = [ 'django' , 'python' , 'thoughts' ]) >>> Post . objects . filter ( tag ... indexes use 0-based indexing to be consistent with Python. Multidimensional arrays with indexes and slices P ... tions ) ¶ A field for storing key-value pairs. The Python data type used is a dict . Keys must be strings, a ...
https://man.plustar.jp/django/ref/contrib/postgres/fields.html - [similar]
Django の例外 — Django 4.0.6 ドキュメント 5535
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ious | up | next » Django の例外 ¶ Django は普通の Python の例外の他に、いくつか独自の例外も起こします。 Dja ... ised when code that is only allowed in synchronous Python code is called from an asynchronous context (a thr ... underlying database exceptions. See PEP 249 , the Python Database API Specification v2.0, for further infor ... に長いリダイレクトチェーンを検出した時に発生します。 Python の例外 ¶ Django は、十分適切な場合にはビルトインの ...
https://man.plustar.jp/django/ref/exceptions.html - [similar]
django.urls functions for use in URLconfs — Django 4.0.6 ドキュメント 5535
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... that contains a regular expression compatible with Python's re module. Strings typically use raw string synt ... e) , namespace=None ) A function that takes a full Python import path to another URLconf module that should ... 00 ¶ A callable, or a string representing the full Python import path to the view that should be called if t ... 03 ¶ A callable, or a string representing the full Python import path to the view that should be called if t ...
https://man.plustar.jp/django/ref/urls.html - [similar]
ロギング — Django 4.0.6 ドキュメント 5535
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... configure and use logging Django logging reference Python programmers will often use print() in their code a ... f your application. 概要 ¶ Django uses and extends Python's builtin logging module to perform system logging ... . This module is discussed in detail in Python's own documentation; this section provides a quick ... overview. 登場人物 ¶ Pythonのロギングは4つの部分で構成されます。 ロガー ハンドラ ...
https://man.plustar.jp/django/topics/logging.html - [similar]
How to create custom template tags and filters — Django 4.0.6 ドキュメント 5494
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... いない機能が必要になることもあるでしょう。そのときは Python を使用し、独自のタグやフィルタを定義することによっ ... むべきです。まだ存在していない場合は、ディレクトリが Python パッケージとして扱われるようにするため、"__init__. ... ホストマシン上の多数のテンプレートライブラリに対して Python のコードをホストできるようにします。 templatetags ... メントは、アプリケーションの名前ではなく、与えられた Python のモジュール名に対してタグ/フィルタをロードすること ...
https://man.plustar.jp/django/howto/custom-template-tags.html - [similar]
GEOS API — Django 4.0.6 ドキュメント 5494
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nada. Features ¶ GeoDjango implements a high-level Python wrapper for the GEOS library, its features include ... the GEOS geometry routines, implemented purely in Python using ctypes . Loosely-coupled to GeoDjango. For e ... ting GEOS objects at the top level of some of your Python modules. Then, due to a race condition in the garb ... al scope of your functions/methods. Geometries are Pythonic ¶ GEOSGeometry objects are 'Pythonic', in other ...
https://man.plustar.jp/django/ref/contrib/gis/geos.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT