Anonymous
Ghorz
Oho then Django is very bad framework
👍 Use the door, please.
Mirco
Oho then Django is very bad framework
So go away , this is not your place
Anonymous
How rude you members are 😂😁
Mirco
How rude you members are 😂😁
There's no reason you stay here if you don't like Django so the door is over there
Anonymous
I want the clone in django, actually I want to know how to use perfect money gateway api in Django?
Anonymous
Then delete this group 😂
Mirco
Then delete this group 😂
No just go away by yourself
Mirco
Yes sure 🙂
Mirco
Said by someone that wanna clone a website without coding or have a minimum knowledge of it 🤙🏼
Anonymous
😂😂😂
Ghorz
Then delete this group 😂
Please read the rules at the topic. You ask questions related the the issues you face in your implemented code. Like, I did x but got y. I tried j but not working. This is the link to my code on pastebin
Mirco
I never said that I didn't have django knowledge
And you don't know me and my skills so if you wanna stay here be civil with other members otherwise the door is over there
Doragonsureiyā
Oh finally sensible answer came 😂
Read the rules before any activity: @PythonRules
Mirco
Oh finally sensible answer came 😂
There's no need of someone who reminds you basic rules of group community Just read.the pinned message
Prakash
Any reference regarding nested serializers with crud operations on function based views pls share
VarunTheLord
Can anyone share me a proper video link to publish website (custom domain)? I have created a portfolio site using django. I checked pythonanywhere, but didn't understand. Is there any alternative?
VarunTheLord
Yeah. But is there any alternative other than pythonanywhere?
Jai
For unpaid users, the domain becomes: yourUsername.pythonanywhere.com
Jai
Yeah. But is there any alternative other than pythonanywhere?
I haven't tried hosting on other platforms yet!
VarunTheLord
I haven't tried hosting on other platforms yet!
So pythonanywhere is best to go-ahead?
VarunTheLord
Thank you
Jai
Their customer service is too good though
Jai
They reverted to my queries in just 2-3 hours
mojo
can i send a code here?
VarunTheLord
In the tutorial which I took.. the guy uses gitignore and does some stuffs in pythonanywhere.. I got confused in the tutorial
VarunTheLord
Nah, it's Nick Walter. Udemy course.. I downloaded it for free lol.. 9gb course
Jai
Ping me if you need any help for hosting in pythonanywhere :D
VarunTheLord
Do we have to use gitignore?
Jai
Do we have to use gitignore?
Never used it while uploading files
Anonymous
Hi guys can you suggest me a book for rest api
VarunTheLord
Ohokiee. Thanks
Jai
Your welcomee!
Anonymous
I want to create grocery web site and admin panel ..is it good to use Django on both
sravan
Hi guys can you suggest me a book for rest api
Building APIs with Django and Django Rest Framework
Baku
Hi guys can you suggest me a book for rest api
https://www.django-rest-framework.org
Dhruva
match = datetime_re.match(value) TypeError: expected string or bytes-like object
Dhruva
Why am I getting this error?
Dhruva
uploaded_at = models.DateTimeField(auto_now_add=True, blank=True)
Anonymous
May be u gave default value a string during makemigration
Cosmos
Why am I getting this error?
Well, the exception is describing exactly what you need to know. Your "value" variable is not an string or bytes-like object.
Darth✧
I have a model named Profile....i created forms.py having all the fields and created function based view.... Checking that form is valid or not ...if valid then save the changes ....now problem is when i m filling or updating the fields. ..it is actually not updating ...not saving in the admin dashboard. ..where is the problm? ...pls help
Anonymous
AttributeError: 'NoneType' object has no attribute 'replace' Anyone solved this issue? Thanks
Anonymous
When i am using foreign key in model i am getting operational error....no such table:main auth_user_old
Darth✧
When i am using foreign key in model i am getting operational error....no such table:main auth_user_old
Delete all previous migrations.....makemigrations for that perticular app and then migrate
Debashis
I have fonts.css file in which url:(<path to font ttf file>) is there. How to give the static reference to this in Django.. what is the recommended way..
Ghorz
AttributeError: 'NoneType' object has no attribute 'replace' Anyone solved this issue? Thanks
I mean you open a page that get a field from request may be a form, but nothing was passed so the get picked None and passed it to a processor
Anonymous
You passed an empty string
but it shows error is associated with a jango file, ??
Ghorz
Am very sure the page you open is connected to a form
Anonymous
nope, its happens when i try to makemigrations
Anonymous
Am very sure the page you open is connected to a form
nope, didnt started forms, just orm migrations
Commodity
What is the use of redis in django channels?
Anonymous
What is the use of redis in django channels?
Redis is a channel layer which helps you to communicate between browser and server without losing your connection till you close the connection.
Subroto
Which ide is used for Django?
Anonymous
You can use any but I think vscode or pycharm you can use.
LinuxBugs
Redis is a channel layer which helps you to communicate between browser and server without losing your connection till you close the connection.
What?....... Redis is a distributed key value store on server side. You can use it for caching or message queue..
Cpt.Zoba
How does cbv automatically know which template to show like for eg when I used CreateView and I didn't have any template I got error like school_form.html not found ...... My question is how does the CreateView DeleteView or UpdateView automatically configure which template to show or m I missing something. (M novice)
Anonymous
Hello everyone, i am new to Python and Django and i need some assistance in Creating a simple calculator GUI application in Python using Django framework, any leads to a tutorial would help, thanks
kancharla
Does any one know how to restrict some users from accessing some functions in my project
Mihir
use decorators
kancharla
Which one