検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 133 for module (0.011 sec.)
Advanced testing topics — Django 4.0.6 ドキュメント 6428
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » Advanced testing topics ... __ == "__main__" : os . environ [ 'DJANGO_SETTINGS_MODULE' ] = 'tests.test_settings' django . setup () TestR ... ify the directory containing your top-level Python modules. Usually Django can figure this out automatically ... class that loads tests, whether from TestCases or modules or otherwise and bundles them into test suites fo ...
https://man.plustar.jp/django/topics/testing/advanced.html - [similar]
django.db.utils — Django 4.0.6 ドキュメント 6368
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .6 ドキュメント Home | Table of contents | Index | Modules up django.db.utils のソースコード import pkgutil ... from importlib import import_module from django.conf import settings from django.core. ... unctional import cached_property from django.utils.module_loading import import_string DEFAULT_DB_ALIAS = "d ... end_name ): """ Return a database backend's "base" module given a fully qualified database backend name, or ...
https://man.plustar.jp/django/_modules/django/db/utils.html - [similar]
Django 1.3 release notes — Django 4.0.6 ドキュメント 6368
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » Django 1.3 release notes ... adds framework-level support for Python's logging module. This means you can now easily configure and contr ... library, Django provides the django.utils.unittest module alias. If you are using Python 2.7, or you have in ... ault, but may be turned on using Python's warnings module, or by running Python with a -Wd or -Wall flag. In ...
https://man.plustar.jp/django/releases/1.3.html - [similar]
Django 1.9 リリースノート — Django 4.0.6 ドキュメント 6368
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » Django 1.9 リリースノート ... were moved to a new django.contrib.auth.base_user module so that they can be imported without including dja ... ances. When supplying None as a value in MIGRATION_MODULES , Django will consider the app an app without mig ... be set using an app_name attribute on the included module or object. It can also be set by passing a 2-tuple ...
https://man.plustar.jp/django/releases/1.9.html - [similar]
django.contrib.postgres — Django 4.0.6 ドキュメント 6271
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » django.contrib.postgres ... the other databases Django supports. This optional module contains model fields and form fields for a number ... ndamental reason why (for example) a contrib.mysql module does not exist, except that PostgreSQL has the ric ...
https://man.plustar.jp/django/ref/contrib/postgres/index.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 6162
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » Django 1.4 release notes ... __" : os . environ . setdefault ( "DJANGO_SETTINGS_MODULE" , "{{ project_name }}.settings" ) from django.cor ... , but not settings , urls , or myapp as top-level modules. Anything imported as a top-level module can be p ... . For instance, to decouple myapp from the project module and import it as just myapp , place it outside the ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
How to configure and use logging — Django 4.0.6 ドキュメント 6114
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » How to configure and use ... which will provide the name of the current Python module as a dotted path: import logging logger = logging ... s a good convention to perform this declaration at module level. And then in a function, for example in a vi ... se' : { 'format' : ' {name} {levelname} {asctime} {module} {process:d} {thread:d} {message} ' , 'style' : '{ ...
https://man.plustar.jp/django/howto/logging.html - [similar]
Installing SpatiaLite — Django 4.0.6 ドキュメント 6114
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » Installing SpatiaLite ¶ ... Check first if SQLite is compiled with the R*Tree module . Run the sqlite3 command line interface and enter ... ustomized so that SQLite knows to build the R*Tree module: $ CFLAGS="-DSQLITE_ENABLE_RTREE=1" ./configure $ ...
https://man.plustar.jp/django/ref/contrib/gis/install/spatialite.html - [similar]
Django 1.2 リリースノート — Django 4.0.6 ドキュメント 6114
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » Django 1.2 リリースノート ... ault, but may be turned on using Python's warnings module, or by running Python with a -Wd or -Wall flag. In ... ackends must now be specified by a fully qualified module name (i.e., django.db.backends.postgresql_psycopg2 ... are , has likewise been deprecated. Also, the CSRF module has moved from contrib to core, and the old import ...
https://man.plustar.jp/django/releases/1.2.html - [similar]
Signals — Django 4.0.6 ドキュメント 6054
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » Signals ¶ Django include ... h it's recommended to avoid the application's root module and its models module to minimize side-effects of ... ignal handlers are usually defined in a signals submodule of the application they relate to. Signal receiver ... ng the receiver() decorator, import the signals submodule inside ready() , this will implicitly connect sign ...
https://man.plustar.jp/django/topics/signals.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT