How do I make a CLI with Django for a database
I'm a student and I got assigned for a project where I'm using Django + PostgreSQL and I'm supposed to make a CLI (Command Line Interface) possibly with Django showing my database modules. What's the easiest way to do that? I only have some knowledge in C++ programming so I was thinking like a switch statement where a user has an option to choose from different queries, but I don't know how to do that in Django.
Thank you :)
django postgresql
add a comment |
I'm a student and I got assigned for a project where I'm using Django + PostgreSQL and I'm supposed to make a CLI (Command Line Interface) possibly with Django showing my database modules. What's the easiest way to do that? I only have some knowledge in C++ programming so I was thinking like a switch statement where a user has an option to choose from different queries, but I don't know how to do that in Django.
Thank you :)
django postgresql
add a comment |
I'm a student and I got assigned for a project where I'm using Django + PostgreSQL and I'm supposed to make a CLI (Command Line Interface) possibly with Django showing my database modules. What's the easiest way to do that? I only have some knowledge in C++ programming so I was thinking like a switch statement where a user has an option to choose from different queries, but I don't know how to do that in Django.
Thank you :)
django postgresql
I'm a student and I got assigned for a project where I'm using Django + PostgreSQL and I'm supposed to make a CLI (Command Line Interface) possibly with Django showing my database modules. What's the easiest way to do that? I only have some knowledge in C++ programming so I was thinking like a switch statement where a user has an option to choose from different queries, but I don't know how to do that in Django.
Thank you :)
django postgresql
django postgresql
asked Nov 14 '18 at 12:48
EmbryoyoEmbryoyo
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
If you want to access the database shell, just run ./manage.py dbshell
. But if you want to show your tables directly from command line, you can use custom django management command, but showing the table is not related to Django, rather than just using a SQL query using python. For example:
You can add a new python file in any_django_app/management/commands
and name it show_tables.py
, and inside it, put the following code:
from django.core.management.base import BaseCommand, CommandError
from django.db import DEFAULT_DB_ALIAS, connections
class Command(BaseCommand):
help = (
"Shows DB tables, also you can pass your DATABASE NAME through this command"
)
requires_system_checks = False
def add_arguments(self, parser):
parser.add_argument(
'--database', default=DEFAULT_DB_ALIAS,
help='Nominates a database onto which to open a shell. Defaults to the "default" database.',
)
def handle(self, **options):
connection = connections[options['database']]
try:
cursor = connection.cursor()
cursor.execute("""SELECT table_name FROM information_schema.tables
WHERE table_schema = 'public'""")
for table in cursor.fetchall():
print(table[0])
except OSError:
# Note that we're assuming OSError means that the client program
# isn't installed. There's a possibility OSError would be raised
# for some other reason, in which case this error message would be
# inaccurate. Still, this message catches the common case.
raise CommandError(
'You appear not to have the %r program installed or on your path.' %
connection.client.executable_name
)
Now, run ./manage.py show_tables
, then it will show the tables from database.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53300626%2fhow-do-i-make-a-cli-with-django-for-a-database%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you want to access the database shell, just run ./manage.py dbshell
. But if you want to show your tables directly from command line, you can use custom django management command, but showing the table is not related to Django, rather than just using a SQL query using python. For example:
You can add a new python file in any_django_app/management/commands
and name it show_tables.py
, and inside it, put the following code:
from django.core.management.base import BaseCommand, CommandError
from django.db import DEFAULT_DB_ALIAS, connections
class Command(BaseCommand):
help = (
"Shows DB tables, also you can pass your DATABASE NAME through this command"
)
requires_system_checks = False
def add_arguments(self, parser):
parser.add_argument(
'--database', default=DEFAULT_DB_ALIAS,
help='Nominates a database onto which to open a shell. Defaults to the "default" database.',
)
def handle(self, **options):
connection = connections[options['database']]
try:
cursor = connection.cursor()
cursor.execute("""SELECT table_name FROM information_schema.tables
WHERE table_schema = 'public'""")
for table in cursor.fetchall():
print(table[0])
except OSError:
# Note that we're assuming OSError means that the client program
# isn't installed. There's a possibility OSError would be raised
# for some other reason, in which case this error message would be
# inaccurate. Still, this message catches the common case.
raise CommandError(
'You appear not to have the %r program installed or on your path.' %
connection.client.executable_name
)
Now, run ./manage.py show_tables
, then it will show the tables from database.
add a comment |
If you want to access the database shell, just run ./manage.py dbshell
. But if you want to show your tables directly from command line, you can use custom django management command, but showing the table is not related to Django, rather than just using a SQL query using python. For example:
You can add a new python file in any_django_app/management/commands
and name it show_tables.py
, and inside it, put the following code:
from django.core.management.base import BaseCommand, CommandError
from django.db import DEFAULT_DB_ALIAS, connections
class Command(BaseCommand):
help = (
"Shows DB tables, also you can pass your DATABASE NAME through this command"
)
requires_system_checks = False
def add_arguments(self, parser):
parser.add_argument(
'--database', default=DEFAULT_DB_ALIAS,
help='Nominates a database onto which to open a shell. Defaults to the "default" database.',
)
def handle(self, **options):
connection = connections[options['database']]
try:
cursor = connection.cursor()
cursor.execute("""SELECT table_name FROM information_schema.tables
WHERE table_schema = 'public'""")
for table in cursor.fetchall():
print(table[0])
except OSError:
# Note that we're assuming OSError means that the client program
# isn't installed. There's a possibility OSError would be raised
# for some other reason, in which case this error message would be
# inaccurate. Still, this message catches the common case.
raise CommandError(
'You appear not to have the %r program installed or on your path.' %
connection.client.executable_name
)
Now, run ./manage.py show_tables
, then it will show the tables from database.
add a comment |
If you want to access the database shell, just run ./manage.py dbshell
. But if you want to show your tables directly from command line, you can use custom django management command, but showing the table is not related to Django, rather than just using a SQL query using python. For example:
You can add a new python file in any_django_app/management/commands
and name it show_tables.py
, and inside it, put the following code:
from django.core.management.base import BaseCommand, CommandError
from django.db import DEFAULT_DB_ALIAS, connections
class Command(BaseCommand):
help = (
"Shows DB tables, also you can pass your DATABASE NAME through this command"
)
requires_system_checks = False
def add_arguments(self, parser):
parser.add_argument(
'--database', default=DEFAULT_DB_ALIAS,
help='Nominates a database onto which to open a shell. Defaults to the "default" database.',
)
def handle(self, **options):
connection = connections[options['database']]
try:
cursor = connection.cursor()
cursor.execute("""SELECT table_name FROM information_schema.tables
WHERE table_schema = 'public'""")
for table in cursor.fetchall():
print(table[0])
except OSError:
# Note that we're assuming OSError means that the client program
# isn't installed. There's a possibility OSError would be raised
# for some other reason, in which case this error message would be
# inaccurate. Still, this message catches the common case.
raise CommandError(
'You appear not to have the %r program installed or on your path.' %
connection.client.executable_name
)
Now, run ./manage.py show_tables
, then it will show the tables from database.
If you want to access the database shell, just run ./manage.py dbshell
. But if you want to show your tables directly from command line, you can use custom django management command, but showing the table is not related to Django, rather than just using a SQL query using python. For example:
You can add a new python file in any_django_app/management/commands
and name it show_tables.py
, and inside it, put the following code:
from django.core.management.base import BaseCommand, CommandError
from django.db import DEFAULT_DB_ALIAS, connections
class Command(BaseCommand):
help = (
"Shows DB tables, also you can pass your DATABASE NAME through this command"
)
requires_system_checks = False
def add_arguments(self, parser):
parser.add_argument(
'--database', default=DEFAULT_DB_ALIAS,
help='Nominates a database onto which to open a shell. Defaults to the "default" database.',
)
def handle(self, **options):
connection = connections[options['database']]
try:
cursor = connection.cursor()
cursor.execute("""SELECT table_name FROM information_schema.tables
WHERE table_schema = 'public'""")
for table in cursor.fetchall():
print(table[0])
except OSError:
# Note that we're assuming OSError means that the client program
# isn't installed. There's a possibility OSError would be raised
# for some other reason, in which case this error message would be
# inaccurate. Still, this message catches the common case.
raise CommandError(
'You appear not to have the %r program installed or on your path.' %
connection.client.executable_name
)
Now, run ./manage.py show_tables
, then it will show the tables from database.
edited Nov 14 '18 at 13:32
answered Nov 14 '18 at 13:19
ruddraruddra
14k32748
14k32748
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53300626%2fhow-do-i-make-a-cli-with-django-for-a-database%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown