If you want only time, TimeField is what you need:
class ConversationHistory(models.Model):
contact_date = models.DateField(_(u"Conversation Date"), blank=True)
contact_time = models.TimeField(_(u"Conversation Time"), blank=True)
You can take advantage of the auto_now_add
option:
class TimeField([auto_now=False, auto_now_add=False, **options])
A time, represented in Python by a datetime.time instance. Accepts the same auto-population options as DateField.
If you use the auto_now_add
, it will automatically set the field to now when the object is first created.
class ConversationHistory(models.Model):
contact_date = models.DateField(_(u"Conversation Date"), auto_now_add=True, blank=True)
contact_time = models.TimeField(_(u"Conversation Time"), auto_now_add=True, blank=True)
TimeField is a time field that stores time, represented in Python by a datetime.time instance. As the name suggests, this field is used to store a datetime object created in python. The default form widget for this field is a TextInput. The administrator uses two separate TextInput widgets with JavaScript shortcuts.
Syntax
field_name = models.TimeField(auto_now=False, auto_now_add=False, **options) TimeField has the following extra optional arguments ‚Äì TimeField.auto_nowAutomatically set the field to now every time the object is saved. Useful for "last-modified‚" timestamps. Note that the current time is always used; it‚Äôs not just a default value that you can override. The field is only automatically updated when calling Model.save(). The field isn‚Äôt updated when making updates to other fields in other ways such as QuerySet.update(), though you can specify a custom value for the field in an update like that.
TimeField.auto_now_add
Automatically set the field to now when the object is first created. Useful for creation of timestamps. Note that the current time is always used; it’s not just a default value that you can override. So even if you set a value for this field when creating the object, it will be ignored. If you want to be able to modify this field, set the following instead of auto_now_add=True:- For TimeField: default=datetime.time.now – from datetime.now()
- For TimeField: default=timezone.now – from django.utils.timezone.now()
Field options
Field parameters are arguments given to each field to apply some kind of constraint or pass a specific characteristic to a specific field. For example, adding the null = True
argument to the TimeField will allow it to store empty values ​​for that table in a relational database.
Here are the field parameters and attributes that TimeField can use.
Field Options | Description |
---|---|
Null | If True , Django will store empty values ​​as NULL in the database. Default is False. |
Blank | If True , the field is allowed to be blank ... Default is False. |
Choices | An iterable (eg, a list or tuple) of 2-tuples to use as choices for this field. |
Default | The default value for the field. This can be a value or a callable object. If callable it will be called every time a new object is created. |
help_text | Extra "help‚" text to be displayed with the form widget. It’s useful for documentation even if your field isn’t used on a form. |
primary_key | If True, this field is the primary key for the model . |
Unique | If True, this field must be unique throughout the table. |
TimeField — Django Models __del__: Questions
How can I make a time delay in Python?
5 answers
I would like to know how to put a time delay in a Python script.
Answer #1
import time
time.sleep(5) # Delays for 5 seconds. You can also use a float value.
Here is another example where something is run approximately once a minute:
import time
while True:
print("This prints once a minute.")
time.sleep(60) # Delay for 1 minute (60 seconds).
Answer #2
You can use the sleep()
function in the time
module. It can take a float argument for sub-second resolution.
from time import sleep
sleep(0.1) # Time in seconds
TimeField — Django Models __del__: Questions
How to delete a file or folder in Python?
5 answers
How do I delete a file or folder in Python?
Answer #1
os.remove()
removes a file.os.rmdir()
removes an empty directory.shutil.rmtree()
deletes a directory and all its contents.
Path
objects from the Python 3.4+ pathlib
module also expose these instance methods:
pathlib.Path.unlink()
removes a file or symbolic link.pathlib.Path.rmdir()
removes an empty directory.