Re: Django Help | Counting word frequency in Django using dictionary.

2021-07-06 Thread DJANGO DEVELOPER
I am using sqlite3. so only needs to store the data in django admin/database but in the form of dictionary or in the form of counted words. On Wed, Jul 7, 2021 at 9:09 AM Lalit Suthar wrote: > you can use postgres JsonField >

Re: Django Help | Counting word frequency in Django using dictionary.

2021-07-06 Thread Lalit Suthar
you can use postgres JsonField https://docs.djangoproject.com/en/3.2/ref/contrib/postgres/fields/#jsonfield On Wed, 7 Jul 2021 at 06:05, DJANGO DEVELOPER wrote: > Hi > I am developing a django project and I want to count word frequency at > the django admin side. > Means a word is repeating in

Re: hardware required to use django?

2021-07-06 Thread DJANGO DEVELOPER
you can use linux as well and I am using windows 10 right now and it is working fine with django development. I also used windows8 and it worked. On Wed, Jul 7, 2021 at 6:39 AM Rusty wrote: > We are planning the development using django. > > Could I know the minimum specifications of hardware

hardware required to use django?

2021-07-06 Thread Rusty
We are planning the development using django. Could I know the minimum specifications of hardware required to use django? I would appreciate it if you could let me know based on Windows and Linux. -- You received this message because you are subscribed to the Google Groups "Django users"

Re: ProgrammingError - relationship does not exist

2021-07-06 Thread Jacob Greene
The issue is with the model not the admin page. I suspect you haven't ran migrations for the "Shop" model. You defined a "shop" field in the model, but the database doesn't know anything about it. On Tue, Jul 6, 2021, 7:16 PM Stathis Angelou wrote: > Good evening all, i have created a new app

Django Help | Counting word frequency in Django using dictionary.

2021-07-06 Thread DJANGO DEVELOPER
Hi I am developing a django project and I want to count word frequency at the django admin side. Means a word is repeating in a string should be counted and be saved in the database only. I have managed to do it on front-end side but now I also want to do it on django admin side. example:

Re: counting the same words within a song added by a user using Django

2021-07-06 Thread DJANGO DEVELOPER
so will it run smoothly? I mean there is no filter function there so will it filter a specific field and will give me count for the words? On Tue, Jul 6, 2021 at 9:40 PM sum abiut wrote: > You can to something like this > > def count_songs(request): > #get the field that you want to count the

ProgrammingError - relationship does not exist

2021-07-06 Thread Stathis Angelou
Good evening all, i have created a new app and added a model. Added the app under installed apps, and run python manage.py makemigrations and migrate and everything worked as expected. But i believe there is an issue with the admin.py file from django.contrib import admin # Register your

Unit testing migrations [Was: Related model 'company.user' cannot be resolved]

2021-07-06 Thread Mike Dewhirst
It seems I have to meddle with history and persuade the testing harness that my custom user model has been in the company app from the beginning of time. See story below. Upside is that testing will (might) start working again. Downside is I'll go mad. Any ideas? Thanks Mike On 6/07/2021

Re: Authentication with Multiple User

2021-07-06 Thread Joel Tanko
If what you're trying to do is have two types of user accounts, then you'd have to create a base user model and have personal and business inherit from it - and it being a subclass of AbstractBaseUser class BaseAccount(AbstractBaseUser): … # all public fields class

Re: counting the same words within a song added by a user using Django

2021-07-06 Thread sum abiut
You can to something like this def count_songs(request): #get the field that you want to count the words in it field_name = model._meta.get_field('your_field) word_count =Counter(field_name) for key, value in word_count.items(): key = key value=value context={ 'key':key,

Re: Django Unit-test

2021-07-06 Thread Veera Raj
I am fresher In django wanna have a opportunity.can anyone help me ? On Tue, Jul 6, 2021, 9:29 PM Yonatan Girma wrote: > Greetings, > > We are looking for Django app unit tester for small business project. Any > person with professional experience please send resume to > support-...@adulis.com

Django Unit-test

2021-07-06 Thread Yonatan Girma
Greetings, We are looking for Django app unit tester for small business project. Any person with professional experience please send resume to support-...@adulis.com Respectfully, Yonatan G. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: looking for mobile developers

2021-07-06 Thread Eva Kemo
Hello am a flutter dev am interested On Tue, 6 Jul 2021, 16:08 Balaji K S, wrote: > Hello, > Am a flutter developer. Am interested > > On Mon, 5 Jul, 2021, 2:07 am Theresa Taye, > wrote: > >> Hello guys, >> >> I need flutter users for a project urgently if you are interested, please >> contact

Re: No reverse match at /

2021-07-06 Thread Julio Cojom
For what I can see in the issue, you're passing 2 values to the url (id , topic) Maybe the error its for the topic because of the value (/Subject/Django) try to sanitize the value after store it in the database, because it try to get the url example.com/3//Subject/Django where 3 its the id or pk

Re: No reverse match at /

2021-07-06 Thread DJANGO DEVELOPER
you have to provide id in your urls and in subject.html as well. share you views and url as well. On Tue, Jul 6, 2021 at 6:08 PM Bhanu prasad Ch wrote: > I had a problem in passing special characters in Charfield in DB of Django. > Is that possible to pass special characters in CharField DB? >

No reverse match at /

2021-07-06 Thread Bhanu prasad Ch
I had a problem in passing special characters in Charfield in DB of Django. Is that possible to pass special characters in CharField DB? GitHub Issue -- You received this message because you are subscribed to the Google Groups "Django users"

Re: looking for mobile developers

2021-07-06 Thread Balaji K S
Hello, Am a flutter developer. Am interested On Mon, 5 Jul, 2021, 2:07 am Theresa Taye, wrote: > Hello guys, > > I need flutter users for a project urgently if you are interested, please > contact me. > > Best regards > > -- > You received this message because you are subscribed to the Google

Re: counting the same words within a song added by a user using Django

2021-07-06 Thread lalit suthar
cool :D On Tuesday, 6 July 2021 at 10:25:06 UTC+5:30 abubak...@gmail.com wrote: > I found this as well. and I think I want the result this way. > > On Tue, Jul 6, 2021 at 9:21 AM Lalit Suthar wrote: > >> [image: Screen Shot 2021-07-06 at 9.50.12 AM.png] >> Counter works with words also >> >>