Re: Selamlar

2020-07-24 Thread Budi Hermansyah
Hello Turkish engineer, nice to know you here ... On Thu, Jul 23, 2020 at 8:39 PM Abdullah ÇINAR wrote: > Aranızda Türk var mıdır ? > Birkaç sorum olacak. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group

Re: Looking For Django Developer for 2-3months(paid accordingly)

2020-07-17 Thread Budi Hermansyah
On Sat, 18 Jul 2020 at 06.02 Sai wrote: > Hi Djangonauts, > I am looking for Django Developer who has excellent Experience(3years > minimum) in the following. > These are Must have: > 1)Django Rest Framework > 2) Writing Unit Tests > 3) OAuth2 Token Authentication > 4) Creating Rest API using

Re: Performance queries helps

2020-07-11 Thread Budi Hermansyah
di you ever try an elastic search for indexing our categories product to speed up? On Sat, Jul 11, 2020 at 12:16 PM carlos wrote: > Hi, i need any advice for performance queries > i have a model name Post > post have m2m categories and fk author > > the index page show 7 categories in

Re: Not null constraint error when adding a child record .

2020-07-09 Thread Budi Hermansyah
one of the solution is, create new URL that have hash_id of the parent, so when you submitted the form, you can get parent object using their hash_id how ab that? On Fri, Jul 10, 2020 at 10:14 AM Ashutosh Mishra < ashutoshmishra...@gmail.com> wrote: > That is a data base related error,this

Re: In search for experience Django Developer

2020-06-29 Thread Budi Hermansyah
can we know the details ? would you shares with us here? On Fri, Jun 26, 2020 at 9:22 PM BENDEV wrote: > We are liking for a remote Django Developer to with other team members on > a Project: DMS) Documents Management Systems. > > The payment is okay! > Just T applied. > > Please if interested

Re: Collaborators

2020-06-22 Thread Budi Hermansyah
Hi John, This request is still available ? May I join with the team? Regards, Herman On Mon, 22 Jun 2020 at 19.23 Puneet Makhija wrote: > Hello please guide me please I request > Actually I completed a project of django 95 percent > By using abstract user > Class User(absrract user) > Class

Re: someone to help in this please

2020-06-16 Thread Budi Hermansyah
Did you already install gdal n friends? https://docs.djangoproject.com/en/3.0/ref/contrib/gis/install/geolibs/ On Tue, 16 Jun 2020 at 22.12 Peter Kirieny wrote: > am using Geodjango with postgresql db and i get this error while trying to > run the server; > raise ImproperlyConfigured( >

Re: Runserver with a custom script

2020-02-17 Thread Budi Hermansyah
you can use django commands... https://docs.djangoproject.com/en/3.0/howto/custom-management-commands/ On Tue, Feb 18, 2020 at 2:17 PM Soumen Khatua wrote: > Hi Folks, > > I want to run a script or url at the time of django server loading.So > Does this possible,If yes could you tell me,How? >

Re: Django

2020-01-15 Thread Budi Hermansyah
try this... http://blog.appliedinformaticsinc.com/how-to-parse-and-convert-json-to-csv-using-python/ On Wednesday, January 15, 2020 at 9:51:51 PM UTC+7, Deepak Singh wrote: > > How to download json file from the url and convert it into csv format > > -- You received this message because you are

Re: Making Django Form dynamically

2019-11-05 Thread Budi Hermansyah
try this... https://www.caktusgroup.com/blog/2018/05/07/creating-dynamic-forms-django/ On Wed, Nov 6, 2019 at 10:11 AM Jordan Micle wrote: > in general when we define django form we set the model of django in class > Meta, like below > > class Form(forms.ModelForm): > > class Meta: >

Re: チュートリアル 2

2019-11-05 Thread Budi Hermansyah
replace def_str to def _str_(self): hope will help you... regards, Herman On Wed, Nov 6, 2019 at 10:05 AM Takashi Sawa wrote: > [image: キャプチャ.JPG] > Djangoのチュートリアルを進めているのですが、models.py の編集で、9行目の「:」がなぜか問題として出てきてしまいます。なぜでしょうか。 > 教えてください。 > > -- > You received this message because you are

Re: ListView is not showing me the latest created item made by CreateView !

2019-11-05 Thread Budi Hermansyah
are your query on ListView get_query method already put order_by ? On Tue, Nov 5, 2019 at 1:38 PM Parth Joshi wrote: > Can you share some code snippet to have better clarity? > > > On Sunday, 3 November 2019 20:33:45 UTC+5:30, Franz Ulenaers wrote: >> >> ListView is not showing me the latest

Re: Django FastCGI and static files

2019-09-30 Thread Budi Hermansyah
you can collect your static files into 1 folder after deployment into server, and you can set it in base.py. then on webserver settings you can set only one static path. OR you can split static files into many folder, but in your base.py setting you put all static path using STATICFILES_DIRS

Re: forms name could't import are some error

2019-09-26 Thread Budi Hermansyah
it seems, your form in basi2.png, is not correct, it should from .forms import FormName, instead of from , import form. please try to replace it. On Fri, Sep 27, 2019 at 11:08 AM MEGA NATHAN wrote: > Hi. > > i was creating simple django forms . some error in views and urls please > solve

Re:

2019-08-30 Thread Budi Hermansyah
Hi Shakil, better you use elastic search for indexing your data from database or other tools like ES, the purpose is for indexing your data from your database. you can create modelling in ES too for you to speed you loading data... Hope it help you... Regards, On Fri, Aug 30, 2019 at 2:51 AM

Re: django.db.utils.OperationalError: (2002, 'Can\'t connect to local MySQL server through socket \'/cloudsql/instance:us-central1:project_name\' (2 "No such file or directory")')

2019-08-10 Thread Budi Hermansyah
please search for how to access your sql on gcp with ssh and with IP addr... then repace the following setting using that IP... from: 'HOST': '/cloudsql/instance:us-central1:project', to 'HOST': 'xx.xx.xx.xx', On Sat, Aug 10, 2019 at 6:38 AM Solomon Mbak wrote: > Hi. > > For two days I have