Mi
dynaconf/README.md at master · rochacbruno/dynaconf
https://github.com/rochacbruno/dynaconf/blob/master/README.md
Mi
Anyone using this?
Mi
Does it provide advantages with respect to python-decouple?
Django Bot
>> Blogs
- Django development with Docker — Testing, Continuous Integration and Docker
Abhi
how to get your blog post posted over this django bot ?
inchidi
Django Bot
>> Links
- How to Render Django Form Manually
Abhi
Luis
https://github.com/mailslurper/mailslurper
Django Bot
>> Links
- Building A Real-Time iOS Chat Application With Django | Lucas Jackson
Abhi
Hey guys
How should i manage static files for templates and stuff?
Also
What is different between media and static files
inchidi
Abhi
Should i have a static folder for each app or all together in the root folder
Abhi
inchidi
Django Bot
>> Blogs
- Reactify Django
>> Links
- Ask HN: What's your favorite way of getting a web app up quickly in 2018? |
- python - How do I make django secrets available inside docker containers -
- Building APIs with Django and Django Rest Framework
Anonymous
Hi, What is best solution to make registration users in django rest framework with custom user model?
use django-rest-auth or django-allauth or another 3rd party app or make all thing custom like sending email confirmations and so on
Django Bot
>> Links
- Simple is Better Than Complex
- Twitter
- (500) https://www.geo-solutions.it/jobs/
Anonymous
Anonymous
Anonymous
Dudes, can I create a social network sing django
Rohan
Anonymous
Yes
Thanks for the Info friend
Anonymous
Hi,
how can set two different permission_class for get and post method in one class?
django rest framework and Class base view
ʚɞÇherry Łoveʚɞ
Daniel
Anonymous
Anonymous
I make a User class to Registration and i want to add Update profile to it
is it write way?
inchidi
Anonymous
inchidi
inchidi
i would like to recommend you to make it work first
inchidi
you want to update there, but you didnt specify which data to update
Anonymous
inchidi
even though you want to do it in serializer class (which is should be harder than in views) at this point you cant do that since you have same code for post and put
inchidi
umm i have an idea
inchidi
try create 2 API endpoint (2 url) with generic views, one for create user and one for update user
inchidi
i think thats will be easier for you this case
Anonymous
inchidi
Anonymous
inchidi
Anonymous
here is a sample about that
one more question 😐
i found too many solution to do something in django
how can i figure out what is best?
inchidi
"if it works, is not stupid"
inchidi
😄
python
Hi. I'm new in django. I want to customize admin interface. I want display my models objects horizontally in admin page, It set vertically as default in django. Thank you friends.
Anonymous
😅 nice
Amit
Where to learn python ?please suggest me
Django Bot
>> Links
- 10 Django apps you're not using but should be – Vinta Software
- Python Application Layouts: A Reference – Real Python
- Django development with Docker — Testing, Continuous Integration and Docker
R
When creating a new model instance, are m2m keys created objects created after signal post_save?
R
Trying to create a signal like that https://dpaste.de/9qFW but m2m field appears to be null during the signal, but completely created at the end
-
Hello
Django Bot
>> Links
- Running Open edX in production with Docker — France Université Numérique
Django Bot
>> Links
- Building Modern Applications with Django and Vue.js
Django Bot
>> Blogs
- Angular 6 Tutorial with Django RESTful API — Building Bootstrap 4 UIs
Anonymous
Hey. I have a problem in blog API
I want to see the author's name but this code shows me ID
models.py
author = models.ForeignKey(User,related_name='blog_posts')
serializers.py
class blogPostRetrieveSerializer(ModelSerializer):
class Meta:
model = BlogPost
fields = ('image','title','author','body')
serializers view (views.py):
@permission_classes((permissions.AllowAny,))
class blogPostListAPIView(generics.ListAPIView):
queryset = BlogPost.objects.all()
serializer_class = blogPostRetrieveSerializer
Daniel
Daniel
and find out how to access the name element
Daniel
or open django shell and test there
inchidi
inchidi
btw class name should be Sentence Case Text tho
Anonymous
TNQ so much friends!
inchidi
english only
Shaked
Sorry
Shaked
If i have a json in javascript and i want to send the json to a python how do i send from javascript to python abd how do python recive the json
Kaushal
Shaked
How i do that
Django Bot
>> Links
- Wagtail Social Feed — Wagtail Social Feed 0.4.1 documentation
- Deploying Django Mezzanine Using Fabric | DigitalOcean
Anonymous
Hello guys I have a project problem
mλdcodez