Re: django in vs code

2020-08-19 Thread Mustafa Mahmoud
وريني اسكرين كده ياستا

On Thu, Aug 20, 2020, 12:27 AM Mohamed Ghoneim  wrote:

> Hi guys,
> my vs code can not import dgango.dp or any library from django (unresolved
> import 'django.db') .
> i installed the latest version of django and i'm using virtual environment
> and i'm using Windows 10
>
> can  anybody knows what to do ?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/982af58a-6241-4f64-8b98-9223e70bb5den%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAO-epS9n0x3XX8dVj%2Bjgx3aaBqEiCHKUaZn09k3XvnoJSBbTmA%40mail.gmail.com.


Re: django in vs code

2020-08-19 Thread Marvelous Ikechi
can you send a picture of your error message?

On Wed, 19 Aug 2020, 11:27 pm Mohamed Ghoneim,  wrote:

> Hi guys,
> my vs code can not import dgango.dp or any library from django (unresolved
> import 'django.db') .
> i installed the latest version of django and i'm using virtual environment
> and i'm using Windows 10
>
> can  anybody knows what to do ?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/982af58a-6241-4f64-8b98-9223e70bb5den%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAG%3D1guxG8NEfzq07GgDyuUZvtWJLVWCfXBa%3D%2B7%2Bw-df4kvg7iA%40mail.gmail.com.


Re:

2020-08-19 Thread Venu Gopal
Django will manage HTML templates to process backend data but not all
features of HTML. To fully functional design of HTML requires CSS,
Javascript. jquery.

On Wed, Aug 19, 2020 at 6:59 PM Suraj Kumar 
wrote:

> Hello Django Users,
>
>
> I want to know there is any need of knowledge in css, Html  while
> developing website through django. I can also use css framework bootstrap
> instead of css.
> Suraj
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CACCwaoWVefcoqZRKLHDwVdkWm%3D_FKe7enMFeiQOybSQGCj13BQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOhYkiwGhJ%2BFgOHBfbrVQJK%3Dx-LjmYzdm_6BwGSArs8FEepWdA%40mail.gmail.com.


Re: Help to Create Dynamic Form

2020-08-19 Thread ihsan demir
ı try jqery dynamic form wroking so good but when ım add new form ım cant 
saved and ı cant fixed problem ?? did fixed your problm ??

19 Mart 2020 Perşembe tarihinde saat 11:18:04 UTC+3 itibarıyla 
rahulr...@gmail.com şunları yazdı:

> I am trying to create a splitwise  clone 
> application for my weekend project. I have arrived at a stage where I have 
> to create a new Bill. Please find below screenshot.
>
> In this form I have three queries:
>
>1. A dynamic form where a model with fields (amount, user) can be 
>added or removed dynamically. I am using modelformset_factory to perform 
>this operation. From the UI's perspective I am using javascript to add two 
>fields based onClick operation and similarly remove onClick, please check 
>code. My question is, is this correct approach from UI's perspective to 
>create dynamic fields using javascript or is there any other right way ?
>2. I am passing users list from views.py to my bill.html template. 
>Again, is this a correct approach ? Or is there any other right way ?
>3. After creating multiple split forms and clicking on create Bill. At 
>the view.py I am receiving only one split form rather than multiple ?? I 
> am 
>thinking something is wrong because of might be above two approaches are 
>not correct !!! Need help over this.
>
> [image: Screenshot 2020-03-19 at 1.31.33 PM.png]
>
>
> This is the javascript I am using to create split model having two fields 
> (amount and user). Providing the existing users list from the users args I 
> passed from the views.py
> bill.html
>
>> 
>> var room = 1;
>> function education_fields() {
>> room++;
>> var objTo = document.getElementById('education_fields')
>> var divtest = document.createElement("div");
>>divtest.setAttribute("class", "form-group removeclass"+room);
>>var rdiv = 'removeclass'+room;
>> divtest.innerHTML = '
> class="form-group"> > class="form-control" id="amount" placeholder="Amount">
> class="col-sm-5 nopadding"> >>
>>
> class="input-group"> >>
'; >> objTo.appendChild(divtest) >> } >>function remove_education_fields(rid) { >> $('.removeclass'+rid).remove(); >>} >> >> >> > models.py > >> class Bill(models.Model): >> bill_id = models.AutoField(primary_key=True, null=False) >> bill_name = models.CharField(max_length=100) >> total_amount = models.IntegerField() >> >> def __str__(self): >> return "%s-%s"%(str(self.bill_id), self.bill_name) >> >> class Split(models.Model): >> amount = models.IntegerField() >> split_user = models.ForeignKey(User, on_delete=models.CASCADE, null=True) >> bill = models.ForeignKey(Bill, on_delete=models.CASCADE, null=False, >> default='') >> >> def __str__(self): >> return "%s-%s" % (str(self.bill_id), self.amount) >> >> > forms.py > >> class BillModelForm(forms.ModelForm): >> class Meta: >> model = Bill >> fields = ('bill_name', 'total_amount') >> labels = { >> 'bill_name': 'Enter the Expenditure', >> 'total_amount': 'Enter the total amount', >> } >> >> SplitFormSet = modelformset_factory( >> Split, >> fields=('amount','split_user'), >> extra=1, >> labels = { >> 'amount': 'Enter the split amount', >> 'split': "Share Friend", >> }, >> widgets={ >> 'amount': forms.TextInput( >> attrs={ >> 'class': 'form-control', >> 'placeholder': 'Amount', >> 'id':'amount', >> } >> ), >> 'split_user': forms.Select( >> attrs={ >> 'class': 'form-control', >> 'placeholder': '', >> }, >> ) >> } >> ) >> >> > > Thanks, > Rahul > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/fa5e0640-d86c-48f2-8f17-12e21ad79e68n%40googlegroups.com.

django in vs code

2020-08-19 Thread Mohamed Ghoneim
Hi guys,
my vs code can not import dgango.dp or any library from django (unresolved 
import 'django.db') .
i installed the latest version of django and i'm using virtual environment 
and i'm using Windows 10 

can  anybody knows what to do ?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/982af58a-6241-4f64-8b98-9223e70bb5den%40googlegroups.com.


Dynamically Add / Remove input fields and saved django

2020-08-19 Thread ihsan demir
Hello ,  ı have dynamical qjery formset field problem ı cant saved when ım 
used jqery dynamical forms .. anyone help me ?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/79e51a16-3544-482f-87e4-9587e7cd8656n%40googlegroups.com.


Re:

2020-08-19 Thread sylvan kadjo
I thank it's always good to know how things work behind the scenes so that
you can customize the framework to your needs

Le mer. 19 août 2020 à 13:30, Suraj Kumar 
a écrit :

> Hello Django Users,
>
>
> I want to know there is any need of knowledge in css, Html  while
> developing website through django. I can also use css framework bootstrap
> instead of css.
> Suraj
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CACCwaoWVefcoqZRKLHDwVdkWm%3D_FKe7enMFeiQOybSQGCj13BQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAGpyqWvP98UwOmjUWjpqnW_6bBiKjLbzBhhHjk26KBa-2%2Ba-yA%40mail.gmail.com.


'MySQLdb.constants.FIELD_TYPE' has no attribute 'JSON'

2020-08-19 Thread LuG
Where should I set this? 
I do not use JSON in the application.
When you start the application, the error appears below:

intranet | Watching for file changes with StatReloader
intranet | Exception in thread django-main-thread:
intranet | Traceback (most recent call last):
intranet |   File "/usr/local/lib/python3.7/threading.py", line 926, in 
_bootstrap_inner
intranet | self.run()
intranet |   File "/usr/local/lib/python3.7/threading.py", line 870, in run
intranet | self._target(*self._args, **self._kwargs)
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/utils/autoreload.py", line 
53, in wrapper
intranet | fn(*args, **kwargs)
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/core/management/commands/runserver.py",
 
line 110, in inner_run
intranet | autoreload.raise_last_exception()
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/utils/autoreload.py", line 
76, in raise_last_exception
intranet | raise _exception[1]
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py", 
line 357, in execute
intranet | autoreload.check_errors(django.setup)()
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/utils/autoreload.py", line 
53, in wrapper
intranet | fn(*args, **kwargs)
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/__init__.py", line 24, in 
setup
intranet | apps.populate(settings.INSTALLED_APPS)
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/apps/registry.py", line 114, 
in populate
intranet | app_config.import_models()
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/apps/config.py", line 211, 
in import_models
intranet | self.models_module = import_module(models_module_name)
intranet |   File "/usr/local/lib/python3.7/importlib/__init__.py", line 
127, in import_module
intranet | return _bootstrap._gcd_import(name[level:], package, level)
intranet |   File "", line 1006, in _gcd_import
intranet |   File "", line 983, in 
_find_and_load
intranet |   File "", line 967, in 
_find_and_load_unlocked
intranet |   File "", line 677, in 
_load_unlocked
intranet |   File "", line 728, in 
exec_module
intranet |   File "", line 219, in 
_call_with_frames_removed
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/contrib/auth/models.py", 
line 2, in 
intranet | from django.contrib.auth.base_user import AbstractBaseUser, 
BaseUserManager
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/contrib/auth/base_user.py", 
line 48, in 
intranet | class AbstractBaseUser(models.Model):
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/db/models/base.py", line 
122, in __new__
intranet | new_class.add_to_class('_meta', Options(meta, app_label))
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/db/models/base.py", line 
326, in add_to_class
intranet | value.contribute_to_class(cls, name)
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/db/models/options.py", line 
206, in contribute_to_class
intranet | self.db_table = truncate_name(self.db_table, 
connection.ops.max_name_length())
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/db/__init__.py", line 28, in 
__getattr__
intranet | return getattr(connections[DEFAULT_DB_ALIAS], item)
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/db/utils.py", line 214, in 
__getitem__
intranet | backend = load_backend(db['ENGINE'])
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/db/utils.py", line 111, in 
load_backend
intranet | return import_module('%s.base' % backend_name)
intranet |   File "/usr/local/lib/python3.7/importlib/__init__.py", line 
127, in import_module
intranet | return _bootstrap._gcd_import(name[level:], package, level)
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/db/backends/mysql/base.py", 
line 29, in 
intranet | from .introspection import DatabaseIntrospection
# isort:skip
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/db/backends/mysql/introspection.py",
 
line 16, in 
intranet | class DatabaseIntrospection(BaseDatabaseIntrospection):
intranet |   File 
"/usr/local/lib/python3.7/site-packages/django/db/backends/mysql/introspection.py",
 
line 27, in DatabaseIntrospection
intranet | FIELD_TYPE.JSON: 'JSONField',
intranet | AttributeError: module 'MySQLdb.constants.FIELD_TYPE' has no 
attribute 'JSON'

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/52364476-4b2b-42b6-b21c-be1e0e8ffdf4n%40googlegroups.com.


Re:

2020-08-19 Thread sapna Choudhary
Thank you everyone , I was also confused with this question, got clear.

On Wed 19 Aug, 2020, 8:56 PM Akinfolarin Stephen, <
akinfolarinsteph...@gmail.com> wrote:

> Yes you have to understand some basic things in other to work with it
> effectivelg
>
> On Wed, Aug 19, 2020, 15:05 tejas padghan  wrote:
>
>> Only basic .go ahead
>>
>> On Wed, 19 Aug 2020, 7:01 pm Suraj Kumar, <
>> surajsrivastava021...@gmail.com> wrote:
>>
>>> Hello Django Users,
>>>
>>>
>>> I want to know there is any need of knowledge in css, Html  while
>>> developing website through django. I can also use css framework bootstrap
>>> instead of css.
>>> Suraj
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Django users" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/django-users/CACCwaoWVefcoqZRKLHDwVdkWm%3D_FKe7enMFeiQOybSQGCj13BQ%40mail.gmail.com
>>> 
>>> .
>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAERZ70A-W_gq2ROc6etCCEdS4GhqL5ohePdR0H2Ns4WoES1p0Q%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFujGLx8kGf%2BCyyJEqAjdHt6Cer7JC1Mt6BeHsoni89knrD3eA%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAP6mExiZgPE6ZULUGmLg0aMa7%3DXWCUQ5dX2iOrfnbx%3Dch87tAQ%40mail.gmail.com.


Ordering of Q = different SQL and results... Is this a bug? Would appreciate additional eyes before raising ticket.

2020-08-19 Thread Chris Bell
Hi Django users.

My first time mailing this list, so apologies in advance if i don't follow 
protocol 100%.

Please see the sample use case below.

Basically, by ordering the Q statements in a different order, I get a 
different SQL statement and different results. I can see a predicate has 
been pushed down into a subquery on the first example and this is the 
cause, but can't work out where in the code this is happening and why.

There are better ways of trying to get the answer this query is looking 
for, but this is a massive simplification of a more complex scenario where 
this is necessary...

Thanks in advance everyone

Chris


class Book(BaseModel):
name = models.CharField(max_length=CHAR_MAX_LEN, null=True, blank=True)

class BookStatus(BaseModel):
book = models.ForeignKey(Book, null=False, blank=False, 
on_delete=models.CASCADE, related_name='statuses')
status = models.CharField(max_length=CHAR_MAX_LEN, null=True, 
blank=True)
valid_from = models.DateTimeField(db_index=True)
valid_to = models.DateTimeField(db_index=True, blank=True, null=True, 
default=None)

from django.utils import timezone
from app.models import *
from django.db.models import Q, Subquery
b1 = Book.objects.create(name='Green is the new Blue')
b2 = Book.objects.create(name='Orange is the new Red')
BookStatus.objects.create(book=b1, status='DRAFT', 
valid_from=timezone.now())
BookStatus.objects.create(book=b1, status='PUBLISHED', 
valid_from=timezone.now())
BookStatus.objects.create(book=b2, status='DRAFT', 
valid_from=timezone.now())

q1 = 
Q(statuses__id__in=Subquery(BookStatus.objects.only('id').filter(status='DRAFT')))
q2 = 
~Q(statuses__id__in=Subquery(BookStatus.objects.only('id').filter(status='PUBLISHED')))
qs = Book.objects.only('name').filter(q1 & q2)  # NOTICE Q1 BEFORE Q2
str(qs.query)

'SELECT "utils_book"."id", "utils_book"."name" FROM "utils_book" INNER JOIN 
"utils_bookstatus" ON ("utils_book"."id" = "utils_bookstatus"."book_id") 
WHERE ("utils_bookstatus"."id" IN (SELECT U0."id" FROM "utils_bookstatus" 
U0 WHERE U0."status" = DRAFT) AND NOT ("utils_book"."id" IN (SELECT 
V1."book_id" FROM "utils_bookstatus" V1 WHERE (V1."id" IN (SELECT U0."id" 
FROM "utils_bookstatus" U0 WHERE U0."status" = PUBLISHED) AND V1."id" = 
("utils_bookstatus"."id")

qs

, ]>

qs = Book.objects.only('name').filter(q2 & q1)  # NOTICE Q2 BEFORE Q1

str(qs.query)

'SELECT "utils_book"."id", "utils_book"."name" FROM "utils_book" INNER JOIN 
"utils_bookstatus" ON ("utils_book"."id" = "utils_bookstatus"."book_id") 
WHERE (NOT ("utils_book"."id" IN (SELECT V1."book_id" FROM 
"utils_bookstatus" V1 WHERE V1."id" IN (SELECT U0."id" FROM 
"utils_bookstatus" U0 WHERE U0."status" = PUBLISHED))) AND 
"utils_bookstatus"."id" IN (SELECT U0."id" FROM "utils_bookstatus" U0 WHERE 
U0."status" = DRAFT))'

qs

]>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/67dc361e-a601-43d9-96c4-f894efd845c8n%40googlegroups.com.


Re: ERROR

2020-08-19 Thread traore arouna
the github link

https://github.com/TRAOREAROUNA/projetEcom.git

Le vendredi 14 août 2020 à 09:50:17 UTC, akinfolar...@gmail.com a écrit :

> can you send the code on github so i can help you debug properly
>
> On Fri, Aug 14, 2020 at 11:42 PM Kasper Laudrup  
> wrote:
>
>> On 14/08/2020 00.29, traore arouna wrote:
>> > how define it
>> > 
>>
>> https://www.wikihow.com/Declare-a-Variable-in-Javascript
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/1b98d4d1-dbb8-46af-c3cd-18a1b83d2c80%40stacktrace.dk
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b931a8d0-24fd-4f7a-856c-7aaed5ef8af6n%40googlegroups.com.


Re: Port and gstreamer

2020-08-19 Thread Amar prakash
Hey Kasper
I sent you LinkedIn request. Hope you would like to connect. Watch
champions League lol

Cheers
Amar
On Wed., Aug. 19, 2020, 2:45 p.m. Kasper Laudrup, 
wrote:

> On 19/08/2020 19.34, Amar prakash wrote:
> > I want to show data pipeline on video feed using gstreamer.
> >
>
> I know exactly what you mean. I guess we all want that at some point
> sooner or later, right?
>
> Best of luck!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/0bea366b-6699-4334-e65d-6911bc57723e%40stacktrace.dk
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOPHvkKrAK7aeYh-CsixL9VF1eBvmDtyBuqUg_dzOEq5k%3DOM7A%40mail.gmail.com.


Re: Port and gstreamer

2020-08-19 Thread Kasper Laudrup

On 19/08/2020 19.34, Amar prakash wrote:

I want to show data pipeline on video feed using gstreamer.



I know exactly what you mean. I guess we all want that at some point 
sooner or later, right?


Best of luck!

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/0bea366b-6699-4334-e65d-6911bc57723e%40stacktrace.dk.


Re: Port and gstreamer

2020-08-19 Thread Amar prakash
I want to show data pipeline on video feed using gstreamer.

On Wed., Aug. 19, 2020, 1:27 p.m. Kasper Laudrup, 
wrote:

> On 19/08/2020 17.56, iamam...@gmail.com wrote:
> > Anyone working on that?
> >
>
> I have no idea what "port" is supposed to mean in this context, but you
> can find someone working on GStreamer here:
>
> https://gstreamer.freedesktop.org/
>
> Maybe you could clarify how this is related to Django or what your
> question actually is?
>
> Kind regards,
>
> Kasper Laudrup
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/8040aed4-366f-0bd5-2204-1af596d7929b%40stacktrace.dk
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOPHvk%2BB3BGfh2%2BWzzeiB%3DxPBBWBFYO3PsKcmhCWKh81xeNNkw%40mail.gmail.com.


Re: ERROR

2020-08-19 Thread traore arouna
ok no problem
i will do it

I had some problems with my computer, so it is ok now


Le ven. 14 août 2020 à 09:49, Akinfolarin Stephen <
akinfolarinsteph...@gmail.com> a écrit :

> can you send the code on github so i can help you debug properly
>
> On Fri, Aug 14, 2020 at 11:42 PM Kasper Laudrup 
> wrote:
>
>> On 14/08/2020 00.29, traore arouna wrote:
>> > how define it
>> >
>>
>> https://www.wikihow.com/Declare-a-Variable-in-Javascript
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/1b98d4d1-dbb8-46af-c3cd-18a1b83d2c80%40stacktrace.dk
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAFujGLxeFYeTOHYZFJjirXHpFHCv%3D_8Xee9EW2FU66X_tsTgjQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CADjT8DYrXzi3MPcEqeZpjm%3Dyca7CKDjYxE689ZNkVxF0wpczsg%40mail.gmail.com.


Re: Port and gstreamer

2020-08-19 Thread Kasper Laudrup

On 19/08/2020 17.56, iamam...@gmail.com wrote:

Anyone working on that?



I have no idea what "port" is supposed to mean in this context, but you 
can find someone working on GStreamer here:


https://gstreamer.freedesktop.org/

Maybe you could clarify how this is related to Django or what your 
question actually is?


Kind regards,

Kasper Laudrup

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8040aed4-366f-0bd5-2204-1af596d7929b%40stacktrace.dk.


Re: Django key/value JSON widget

2020-08-19 Thread Federico Capoano
On Wed, Aug 19, 2020 at 3:43 AM Roger Gammans 
wrote:

> Hi
>
> Thanks that looks useful.
>
> On my rather long TODO list is to turn use this (
> https://github.com/josdejong/jsoneditor
> ) npm package to build a less
> restrictive json widget...
>

There's already several packages for that. Try googling django-jsoneditor
,

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAERYH6XjB%2BSRP7QQLBxWYsdZQNBntUECHLx9UN7HEHbffjp8cg%40mail.gmail.com.


Port and gstreamer

2020-08-19 Thread iamam...@gmail.com
Anyone working on that?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/70cb7e4d-0f9e-4e94-b269-6d2fbebfe7c7n%40googlegroups.com.


Re:

2020-08-19 Thread Akinfolarin Stephen
Yes you have to understand some basic things in other to work with it
effectivelg

On Wed, Aug 19, 2020, 15:05 tejas padghan  wrote:

> Only basic .go ahead
>
> On Wed, 19 Aug 2020, 7:01 pm Suraj Kumar, 
> wrote:
>
>> Hello Django Users,
>>
>>
>> I want to know there is any need of knowledge in css, Html  while
>> developing website through django. I can also use css framework bootstrap
>> instead of css.
>> Suraj
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to django-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CACCwaoWVefcoqZRKLHDwVdkWm%3D_FKe7enMFeiQOybSQGCj13BQ%40mail.gmail.com
>> 
>> .
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAERZ70A-W_gq2ROc6etCCEdS4GhqL5ohePdR0H2Ns4WoES1p0Q%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFujGLx8kGf%2BCyyJEqAjdHt6Cer7JC1Mt6BeHsoni89knrD3eA%40mail.gmail.com.


Re:

2020-08-19 Thread tejas padghan
Only basic .go ahead

On Wed, 19 Aug 2020, 7:01 pm Suraj Kumar, 
wrote:

> Hello Django Users,
>
>
> I want to know there is any need of knowledge in css, Html  while
> developing website through django. I can also use css framework bootstrap
> instead of css.
> Suraj
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CACCwaoWVefcoqZRKLHDwVdkWm%3D_FKe7enMFeiQOybSQGCj13BQ%40mail.gmail.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAERZ70A-W_gq2ROc6etCCEdS4GhqL5ohePdR0H2Ns4WoES1p0Q%40mail.gmail.com.


[no subject]

2020-08-19 Thread Suraj Kumar
Hello Django Users,


I want to know there is any need of knowledge in css, Html  while
developing website through django. I can also use css framework bootstrap
instead of css.
Suraj

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CACCwaoWVefcoqZRKLHDwVdkWm%3D_FKe7enMFeiQOybSQGCj13BQ%40mail.gmail.com.


Re: Django key/value JSON widget

2020-08-19 Thread Roger Gammans
Hi
Thanks that looks useful.
On my rather long TODO list is to turn use this (
https://github.com/josdejong/jsoneditor) npm package to build a less
restrictive json widget...
On Mon, 2020-08-17 at 14:42 -0700, Federico Capoano wrote:
> Since I wasn't able to find a package which had this kind of widget,
> I scratched my own itch and published django-flat-json-widget.I hope
> it will be useful to others as well, I included a gif that shows the
> widget in action.
> Best regardsFederico CapoanoOn Wednesday, July 22, 2020 at 1:34:01 PM
> UTC-5 Federico Capoano wrote:
> > Hey everyone,
> > I'm looking for a key/value widget to edit a JSON flat object, like
> > this widget here: 
> > https://django-hstore.readthedocs.io/en/latest/#django-admin-widget
> >  (I made this one a while ago, but I'm not maintaining that project
> > anymore).
> > 
> > But I'm having no luck in finding it, there must already be some,
> > right?
> > 
> > Thanks in advance
> > Federico
> 
> 
> 
> -- 
> 
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> 
> To unsubscribe from this group and stop receiving emails from it,
> send an email to django-users+unsubscr...@googlegroups.com.
> 
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/27e1347b-6a17-4892-8ca8-736bcc6c6c27n%40googlegroups.com
> .
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/7d793f9092350ba994ecc6be5bf03e073a75a134.camel%40gammascience.co.uk.