検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 172 for create (0.027 sec.)
django.core.mail.message — Django 4.0.6 ドキュメント 7621
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... self . content_subtype , encoding ) msg = self . _create_message ( msg ) msg [ "Subject" ] = self . subject ... . attach ( path . name , content , mimetype ) def _create_message ( self , msg ): return self . _create_atta ... chments ( msg ) def _create_attachments ( self , msg ): if self . attachments ... ttach ( attachment ) else : msg . attach ( self . _create_attachment ( * attachment )) return msg def _creat ...
https://man.plustar.jp/django/_modules/django/core/mail/message.html - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 7509
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and email announcement. Update version numbers and create the release package(s). Upload the package(s) to t ... all wheel twine Access to Django's record on PyPI. Create a file with your credentials: ~/.pypirc ¶ [pypi] u ... age. If this is the alpha release of a new series, create a new stable branch from main. For example, when r ... If this is the "dot zero" release of a new series, create a new branch from the current stable branch in the ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
多対一 (many-to-one) 関係 — Django 4.0.6 ドキュメント 7104
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... can be performed using the Python API facilities. Create a few Reporters: >>> r = Reporter ( first_name = ' ... s' , email = 'paul@example.com' ) >>> r2 . save () Create an Article: >>> from datetime import date >>> a = ... ail = 'john@example.com' ) >>> Article . objects . create ( headline = "This is a test" , pub_date = date ( ... eir related Reporter objects: >>> r = a . reporter Create an Article via the Reporter object: >>> new_articl ...
https://man.plustar.jp/django/topics/db/examples/many_to_one.html - [similar]
How to create CSV output — Django 4.0.6 ドキュメント 6992
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | Index | Modules « previous | up | next » How to create CSV output ¶ このドキュメントでは、Django のビュー ... p import HttpResponse def some_view ( request ): # Create the HttpResponse object with the appropriate CSV h ... emplate import loader def some_view ( request ): # Create the HttpResponse object with the appropriate CSV h ... ときにも、ここでのテクニックが参考になります; How to create PDF files で例を参照してください。 目次 How to cre ...
https://man.plustar.jp/django/howto/outputting-csv.html - [similar]
Database migration operations — Django 4.0.6 ドキュメント 6992
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ule. Creating extension using migrations ¶ You can create a PostgreSQL extension in your database using a mi ... gration file. This example creates an hstore extension, but the same principles appl ... he hstore extension in PostgreSQL before the first CreateModel or AddField operation that involves HStoreFie ... 't have the appropriate privileges, you'll have to create the extension outside of Django migrations with a ...
https://man.plustar.jp/django/ref/contrib/postgres/operations.html - [similar]
はじめての Django アプリ作成、その2 — Django 4.0.6 ドキュメント 6936
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... re Tutorial 1 left off. We'll set up the database, create your first model, and get a quick introduction to ... 場合、 database を今のうちに作っておいてください。 " CREATE DATABASE database_name; " とデータベースのインタラ ... te command looks at the INSTALLED_APPS setting and creates any necessary database tables according to the da ... USER_TABLES; (Oracle) to display the tables Django created. ミニマリストのために すでに述べたように、一般的な ...
https://man.plustar.jp/django/intro/tutorial02.html - [similar]
Full text search — Django 4.0.6 ドキュメント 6879
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... se on Toast recipes>, <Entry: Pizza Recipes>] This creates a to_tsvector in the database from the body_text ... are contained within one particular model, you can create a functional GIN or GiST index which matches the s ... ch import TrigramSimilarity >>> Author . objects . create ( name = 'Katy Stevens' ) >>> Author . objects . c ... mport TrigramWordSimilarity >>> Author . objects . create ( name = 'Katy Stevens' ) >>> Author . objects . c ...
https://man.plustar.jp/django/ref/contrib/postgres/search.html - [similar]
Windows での Django のインストール方法 — Django 4.0.6 ドキュメント 6756
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dedicated environment for each Django project you create. There are many options to manage environments and ... environments which we will use for this guide. To create a virtual environment for your project, open a new ... d prompt, navigate to the folder where you want to create your project and then enter the following: ...\> p ... y -m venv project-name This will create a folder called 'project-name' if it does not alre ...
https://man.plustar.jp/django/howto/windows.html - [similar]
Advanced testing topics — Django 4.0.6 ドキュメント 6756
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... = RequestFactory () self . user = User . objects . create_user ( username = 'jacob' , email = 'jacob@…' , pa ... word = 'top_secret' ) def test_details ( self ): # Create an instance of a GET request. request = self . fac ... _code , 200 ) AsyncRequestFactory ¶ RequestFactory creates WSGI-like requests. If you want to create ASGI-li ... bases poses a problem. When the test databases are created, there won't be any replication, and as a result, ...
https://man.plustar.jp/django/topics/testing/advanced.html - [similar]
Django 2.2 リリースノート — Django 4.0.6 ドキュメント 6700
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... colorization of the command output. inspectdb now creates models for foreign tables on PostgreSQL. inspectd ... b --include-views now creates models for materialized views on Oracle and Postg ... ables on PostgreSQL. In older versions, models are created child tables instead the parent. inspectdb now in ... he new ignore_conflicts parameter of QuerySet.bulk_create() to True tells the database to ignore failure to ...
https://man.plustar.jp/django/releases/2.2.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT