A calendar app for Django 1.7. Py3 Compatible.
Questions tagged [django-scheduler]
23 questions
0
votes
2 answers
Schedule automated jobs in Django
Anyone knows how to schedule a Django script to run at a certain date and time?
Example:
User enters someone’s contact info on frontend, Django backend receives the form data, but doesn’t send the contact an email until 48 hours later.
Anyone has an…

user646
- 1
0
votes
1 answer
How to send notification before 30 days from expire date in django?
How do i schedule notification for this program? i am using channels to create notification and use "crontab" for scheduling but it doesn't work.
def my_schedule_job():
vehicle_objs = Vehicle.objects.all()
for vehicle_obj in vehicle_objs:
…
user16775421
0
votes
1 answer
What's the problem with sharing job stores in APScheduler?
I did quite get the problem that arises by sharing a job store across multiple schedulers in APScheduler.
The official documentation mentions
Job stores must never be shared between schedulers
but doesn't discuss the problems related to that, Can…

kethan bravo
- 93
- 2
- 6
0
votes
1 answer
Django schedule task
I just need advise what is the best way to do it to schedule a task.
this is my models:
class Jobs(models.Model):
name= models.CharField(max_length=100)
expire =models.DateField(auto_now=False, auto_now_add=False, blank= True, null= True)
I…
user12551055
0
votes
1 answer
Django schedule framework doesn't work like it's supposed to
I'm trying to get to work the schedule framework for django but it doesn't look right and it's functually broken as well, although only in the front-end. My guess would be that Javascript (jquery?) doesn't work correctly.
This is how it is supposed…

Patryk Be
- 39
- 1
- 5
0
votes
1 answer
How i can Schedule tasks (with starting date and ending date) in django to perform some calculation and save them into database?
Three models :
User
Membership
PurchasedMembership
How application works
Each membership having starting date and ending date. User can purchase the membership and their information stored into PurchasedMemebership model.
When membership date…

Muhammad Faizan Fareed
- 3,298
- 34
- 30
0
votes
0 answers
Inheritance - Models.py from a installed GitHub-App
I've integrated Django-Scheduler into my project that has a events.py file that creates a "title" in the class "Event". I've added some other variables with Inheritance.For the next Step I need to change Title into a ForeignKey, thats why I've tried…

Lukas Schönsgibl
- 326
- 2
- 16
0
votes
2 answers
Django Bower - ImportError
I am currently making a django application that requires me to add Bower and django-schedule library. When i try to make migrations, I get this error:
Traceback (most recent call last):
File "manage.py", line 22, in
…

Rudra Mutalik
- 372
- 4
- 17