Latest questions in Python

0 votes
1 answer

How do I make a field readonly (or disabled) so that it cannot be edited in Django form?

Hello @kartik, Setting readonly on a widget only makes the ...READ MORE

Aug 6, 2020 in Python by Niroj
• 82,880 points
15,993 views
0 votes
1 answer

How to Creat a JSON response using Django and Python?

Hello @kartik, I usually use a dictionary, not ...READ MORE

Aug 6, 2020 in Python by Niroj
• 82,880 points
2,946 views
0 votes
1 answer

How to reset Django admin password?

Hello @kartik, Just try this: python manage.py changepassword <user_name> Hope ...READ MORE

Aug 6, 2020 in Python by Niroj
• 82,880 points
3,619 views
0 votes
1 answer

How to Filter for empty or NULL names in a queryset?

Hello @kartik, You could do this: Name.objects.exclude(alias__isnull=True) If you need ...READ MORE

Aug 6, 2020 in Python by Niroj
• 82,880 points
4,731 views
0 votes
1 answer

How to debug in Django code?

Hello @kartik, There are a bunch of ways ...READ MORE

Aug 6, 2020 in Python by Niroj
• 82,880 points
820 views
0 votes
1 answer

How can I upgrade specific packages using pip and a requirements file?

Hello @kartik, According to pip documentation example 3: pip install --upgrade ...READ MORE

Aug 6, 2020 in Python by Niroj
• 82,880 points
937 views
0 votes
1 answer

How to capture URL parameters in request.GET

Hello @kartik, When a URL is like domain/search/?q=haha, you ...READ MORE

Aug 6, 2020 in Python by Niroj
• 82,880 points
2,004 views
0 votes
1 answer

Error:Traceback (most recent call last): File "< stdin >", line 1, in ImportError: cannot import name 'path'

Hello @kartik, You need Django version 2 pip install ...READ MORE

Aug 5, 2020 in Python by Niroj
• 82,880 points
6,434 views
0 votes
1 answer

How to parse `request.body` from POST in Django?

Hello @kartik, In Python 3.0 to Python 3.5.x, json.loads() will ...READ MORE

Aug 5, 2020 in Python by Niroj
• 82,880 points
27,730 views
0 votes
1 answer

Error:“Unknown command syncdb” running “python manage.py syncdb”

Hello @kartik, $python manage.py syncdb is deprecated and not ...READ MORE

Aug 5, 2020 in Python by Niroj
• 82,880 points
3,876 views
0 votes
1 answer

ImportError: cannot import name 'six' from 'django.utils' (/path-to-project/project/niroj/lib/python3.7/site-packages/django/utils/init.py)

Hello @kartik, Upgrading the packages will resolve the ...READ MORE

Aug 5, 2020 in Python by Niroj
• 82,880 points
11,558 views
0 votes
1 answer

How to create a generic serializer with a dynamic model in Meta?

Hello @kartik, You can do that by following: serializers.py class ...READ MORE

Aug 5, 2020 in Python by Niroj
• 82,880 points
3,170 views
0 votes
1 answer

ImportError: cannot import name find_spec” when I start a new Django project?

Hello @kartik, find_spec isn't available in Python 3.2.3; it ...READ MORE

Aug 5, 2020 in Python by Niroj
• 82,880 points
2,081 views
0 votes
1 answer

Error: No module named 'django.core.urlresolvers'

Hello @kartik, If you want to import reverse, ...READ MORE

Aug 5, 2020 in Python by Niroj
• 82,880 points
8,851 views
0 votes
1 answer

How to extract specific tags in multiple html .txt files using python.

Hello, @Pooja, Even I got the same issue, ...READ MORE

Aug 5, 2020 in Python by Kedaar Thomas
4,671 views
0 votes
1 answer

I tried to install this pip cryptography in Pycharm but I'm getting an error

Hello @Dilpreet , Have you tried updating pip version? ...READ MORE

Aug 4, 2020 in Python by Niroj
• 82,880 points
2,993 views
0 votes
1 answer

How to concatenate strings in django templates?

Hello @kartik, Don't use add for strings, you should define ...READ MORE

Aug 3, 2020 in Python by Niroj
• 82,880 points
10,910 views
0 votes
0 answers

Error: current transaction is aborted, commands ignored until end of transaction block?

I got a lot of errors with ...READ MORE

Aug 3, 2020 in Python by kartik
• 37,510 points
647 views
0 votes
1 answer

How to dynamically compose an OR query filter in Django?

Hello @kartik, You could chain your queries as ...READ MORE

Aug 3, 2020 in Python by Niroj
• 82,880 points
5,076 views
0 votes
1 answer

How to convert JSON data into a Python object?

Hello @kartik, You can do it in one ...READ MORE

Aug 3, 2020 in Python by Niroj
• 82,880 points
1,990 views
0 votes
1 answer

How to show Image from Imagefield Django Admin ?

Hello @kartik, In your model class add a ...READ MORE

Aug 3, 2020 in Python by Niroj
• 82,880 points
5,453 views
0 votes
1 answer

How to look up a dictionary value with a variable in Django template?

Hii @kartik, Write a custom template filter: from django.template.defaulttags ...READ MORE

Aug 3, 2020 in Python by Niroj
• 82,880 points
10,205 views
0 votes
1 answer

How to extend the User model with custom fields in Django?

Hello @kartik, Define an object manager for your ...READ MORE

Aug 3, 2020 in Python by Niroj
• 82,880 points
2,887 views
0 votes
1 answer

How to upload a file in Django?

Hello @kartik, A minimal Django file upload example 1. ...READ MORE

Aug 3, 2020 in Python by Niroj
• 82,880 points
2,314 views
0 votes
1 answer

How to combine two or more querysets in a Django view?

Hello @kartik, Concatenating the querysets into a list ...READ MORE

Aug 3, 2020 in Python by Niroj
• 82,880 points
6,621 views
0 votes
1 answer

Error:'pip' is not recognized as an internal or external command

Hello @kartik, Try this: Type 'start %appdata%' in cmd. After ...READ MORE

Aug 3, 2020 in Python by Niroj
• 82,880 points
8,138 views
0 votes
0 answers

I am trying to execute the following python code:

and i get the folloeing error READ MORE

Aug 2, 2020 in Python by cinhaw
• 120 points
494 views
0 votes
1 answer

Stop while loop and continue click on next page of table

Hey, @Vishal,  Python provides two keywords that terminate ...READ MORE

Aug 3, 2020 in Python by Gitika
• 65,910 points
480 views
0 votes
1 answer

correct use of random.seed() in reading a text file

Hi, @Flygen, Seeding a pseudo-random number generator gives ...READ MORE

Aug 3, 2020 in Python by Gitika
• 65,910 points
1,502 views
0 votes
1 answer

How to update Django session variable in javascript?

Hello @kartik, You can do this via Ajax. ...READ MORE

Jul 30, 2020 in Python by Niroj
• 82,880 points
6,576 views
0 votes
1 answer

Error:NoReverseMatch at /my_url/ Reverse for 'my_url_name' with arguments '()' and keyword arguments '{}' not found. n pattern(s) tried: []

Hello @kartik, The NoReverseMatch error is saying that Django cannot ...READ MORE

Jul 30, 2020 in Python by Niroj
• 82,880 points
17,374 views
0 votes
1 answer

Can someone help me make a score everytimes the "star" touch the bottom of the border?

Hello @PetesHacker , I saw you do collision detection ...READ MORE

Jul 30, 2020 in Python by Niroj
• 82,880 points
435 views
0 votes
1 answer

How to pre-populate FormView with dynamic data?

Hello @kartik, You can override the FormView class's ...READ MORE

Jul 29, 2020 in Python by Niroj
• 82,880 points
3,686 views
0 votes
1 answer

Error:Django TemplateSyntaxError - 'staticfiles' is not a registered tag library

Hello @kartik, Try {% load static %} instead of {% load ...READ MORE

Jul 29, 2020 in Python by Niroj
• 82,880 points
15,578 views
0 votes
1 answer

How can I get the username of the logged-in user in Django?

Hello @kartik, You can use the request object ...READ MORE

Jul 29, 2020 in Python by Niroj
• 82,880 points
10,235 views
0 votes
1 answer

How to access the user profile in a Django template?

Hello @kartik, In your profile model provide related_name user ...READ MORE

Jul 29, 2020 in Python by Niroj
• 82,880 points
5,451 views
0 votes
1 answer

How to use Django variable in JavaScript file?

Hello @kartik, You need to print it before ...READ MORE

Jul 29, 2020 in Python by Niroj
• 82,880 points
14,004 views
0 votes
1 answer

How to choose the value and label from Django ModelChoiceField queryset?

Hello @kartik, In your Person model add: def __unicode__(self): ...READ MORE

Jul 29, 2020 in Python by Niroj
• 82,880 points
6,193 views
0 votes
1 answer

How do I set custom HTML attributes in django forms?

Hello @kartik, You can change the widget on ...READ MORE

Jul 29, 2020 in Python by Niroj
• 82,880 points
2,613 views
0 votes
1 answer

How to change the width of form elements created with ModelForm in Django?

Hello @kartik, The easiest way for your use ...READ MORE

Jul 29, 2020 in Python by Niroj
• 82,880 points
6,972 views
0 votes
1 answer

How can I render HTML to PDF in Django site?

Hello @kartik, Use this code to generate the PDF ...READ MORE

Jul 29, 2020 in Python by Niroj
• 82,880 points
4,306 views
0 votes
1 answer

How to change a Django form field to a hidden field?

Hello @kartik, If you have a custom template ...READ MORE

Jul 29, 2020 in Python by Niroj
• 82,880 points
12,978 views
0 votes
0 answers
0 votes
2 answers

WHY IS IT SHOWING THIS ERROR?

Hello @shrood , If you are trying to find ...READ MORE

Jul 24, 2020 in Python by Niroj
• 82,880 points
3,317 views
0 votes
1 answer

ModuleNotFoundError: No module named 'bitcoin'

Hi@akhtar, It seems this module is not available ...READ MORE

Jul 23, 2020 in Python by MD
• 95,440 points
2,026 views
0 votes
1 answer

ModuleNotFoundError: No module named 'jmxquery'

Hi@akhtar, You need to install this module in ...READ MORE

Jul 23, 2020 in Python by MD
• 95,440 points
1,341 views
0 votes
1 answer

Integrating Python code in .NET / Java

Hi,@Rajeshmthakkar, Jython is a Python interpreter implemented in ...READ MORE

Jul 27, 2020 in Python by Gitika
• 65,910 points
470 views
0 votes
1 answer

How to scrape data from infinite scroll website using scrapy?

Hello, @Detrod, Regarding your query, I guess you ...READ MORE

Jul 17, 2020 in Python by Rashmi
4,573 views
0 votes
1 answer

pandas._libs.tslib.OutOfBoundsDatetime: Out of bounds nanosecond timestamp

Hi@akhtar, I think you need to upgrade or reinstall ...READ MORE

Jul 16, 2020 in Python by MD
• 95,440 points
6,792 views
0 votes
1 answer

mysql.connector.errors.NotSupportedError: Authentication plugin 'caching_sha2_password' is not supported

Hi@akhtar, According to SQL documentation for python library. you ...READ MORE

Jul 15, 2020 in Python by MD
• 95,440 points
30,152 views