web-dev-qa-db-ja.com

Djangoアプリですべてのテーブル名を取得します

Djangoアプリですべてのテーブル名を取得する方法は?

次のコードを使用しますが、ManyToManyFieldによって作成されたテーブルを取得しません

from Django.db.models import get_app, get_models
app = get_app(app_name)
for model in get_models(app):
    print model._meta.db_table
37
jack
from Django.db import connection
tables = connection.introspection.table_names()
seen_models = connection.introspection.installed_models(tables)

Manage.pyのsyncdbコマンドで見られるように。

以下のコメントで、上記の回答から数年後の ThePhi は(私はテストしていません)と言っています:

from Django.apps import apps 
from Django.contrib import admin 
from Django.contrib.admin.sites import AlreadyRegistered 

app_models = apps.get_app_config('my_app').get_models()
65
cethegeek

最も簡単な答えは、必要なアプリを選択できるようにするために、1つの追加引数 "include_auto_created"を使用してコードを変更することです。

from Django.db.models import get_app, get_models
app = get_app(app_name)
for model in get_models(app, include_auto_created=True):
    print model._meta.db_table

明らかに、celopeのアドバイスに従ってsyncdbソースを読むことでこれを取得しました。そのおかげで、アプリ名を含む正確な回答を文書化しました。

9
George Lund

これは

>>> python -m Django version
2.0.7

OK、その方法は次のとおりです。

>>> from Django.apps import apps 
>>> polls_tables = apps.get_app_config("polls")
>>> polls_tables.models
OrderedDict([('question', <class 'polls.models.Question'>), ('choice', <class 'polls.models.Choice'>), ('reporter', <class 'polls.models.Reporter'>), ('article', <class 'polls.models.Article'>), ('publication', <class 'polls.models.Publication'>), ('publicationarticle_publications', <class 'polls.models.PublicationArticle_publications'>), ('publicationarticle', <class 'polls.models.PublicationArticle'>), ('person', <class 'polls.models.Person'>), ('group', <class 'polls.models.Group'>), ('membership', <class 'polls.models.Membership'>), ('place', <class 'polls.models.Place'>), ('restaurant', <class 'polls.models.Restaurant'>), ('waiter', <class 'polls.models.Waiter'>), ('student', <class 'polls.models.Student'>), ('assembler', <class 'polls.models.Assembler'>), ('bike', <class 'polls.models.Bike'>), ('blog', <class 'polls.models.Blog'>), ('author', <class 'polls.models.Author'>), ('entry_authors', <class 'polls.models.Entry_authors'>), ('entry', <class 'polls.models.Entry'>), ('themeblog', <class 'polls.models.ThemeBlog'>), ('bookauthor', <class 'polls.models.BookAuthor'>), ('publisher', <class 'polls.models.Publisher'>), ('book_authors', <class 'polls.models.Book_authors'>), ('book', <class 'polls.models.Book'>), ('store_books', <class 'polls.models.Store_books'>), ('store', <class 'polls.models.Store'>), ('dummy', <class 'polls.models.Dummy'>)])
>>> polls_tables.models.keys()
odict_keys(['question', 'choice', 'reporter', 'article', 'publication', 'publicationarticle_publications', 'publicationarticle', 'person', 'group', 'membership', 'place', 'restaurant', 'waiter', 'student', 'assembler', 'bike', 'blog', 'author', 'entry_authors', 'entry', 'themeblog', 'bookauthor', 'publisher', 'book_authors', 'book', 'store_books', 'store', 'dummy'])

特定のモデルのフィールド名を取得することもできます

>>> questionTable = polls_tables.get_model("question")
>>> questionTable._meta.get_fields()
(<ManyToOneRel: polls.choice>, <Django.db.models.fields.AutoField: id>, <Django.db.models.fields.CharField: question_text>, <Django.db.models.fields.DateTimeField: pub_date>)

さらに、必要に応じて、その数を取得できます

>>> len(questionTable._meta.get_fields())
4

データベースのすべての値を取得するには、次のようにします。

>>> list = [entry for entry in Entry.objects.values()]
>>> for dict in list:
...     print()
...     for key in dict:
...             print(key," : ", dict[key]) 
... 

id  :  1
blog_id  :  5
headline  :  i have blog entry named Django
pub_date  :  2018-06-10
n_comments  :  5
n_pingbacks  :  1

id  :  2
blog_id  :  5
headline  :  i have blog entry named Django
pub_date  :  2018-06-10
n_comments  :  7
0
Gambitier

最も簡単な方法は、DjangoでデータベースリフレクションAPIを使用して直接データベースに移動することです。これの欠点は、同期する前にテーブルを取得できないことです。

0
boxed