Re: CAn we use Django framework in company industry ?

2022-09-13 Thread Scott Sawyer
Here is where license information is found on the website:  It is a 3 
clause BSD License.


https://docs.djangoproject.com/en/4.1/faq/general/#:~:text=Django%20is%20distributed%20under%20the,to%20modify%20and%20redistribute%20Django.

So it's 'free' as in beer and free as in speech but there are some 
restrictions.


-Scott

On 9/13/2022 7:11 AM, خالد بن الوليد صحراوي wrote:

Hello.
I 'm working with Django to build a Web app for my industrial company,
I wans to ask if it possible to build it and use it for free
is that possible ?

--
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/0e00eaef-bad6-4ec8-9f4c-cd6a0de19ed4n%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/b1ba72c7-8576-88a5-85e9-6a80722dcc10%40gmail.com.


Re: Assignment

2022-08-25 Thread Scott Sawyer

long time lurker here...

On 8/25/2022 8:24 AM, shairy wrote:

Can anyone help me to solve this problem.

Consider a recharge website platform for mobile prepaid recharge like 
Paytm


1. List down number of apps you would create in Django application

As many as are needed to do the functions required in the way you put 
them together.


2. Share screenshots of model of every app which you will create in 
this use case



Just gotta make them


3. Create following api’s


What about -

 * checking balance of the cards
 * SMS gateway for doing all of this via the phone
 * Allowing for gifting or filling up plans for other phones like a
   kids phone or relatives phone from one account
 * Marketing integration for coupons, discounts or deals to be
   reflected in checkout price
 * business reporting to understand
 o Account aging
 o cash flow
 o forecasting
 o marketing effectiveness
 o minutes used by person
 o cost of minutes and profitability of each account
 o trending analysis comparing YoY out for 5 years
 * e-mail gateway for sending receipts etc.
 * account management to lookup payments made for the past year or
   resend receipts for business users that lose their receipts
 * etc.


a. To get plans

b. To recharge (2-3 apis as per your framework)

Share screenshots of your code for this.



good 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/ddae69ff-dd56-4390-b3b6-682b6191d735n%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/9ac4af19-2f7b-6567-89d2-58eba48abd56%40gmail.com.


Re: Process Data during server initialization

2020-10-22 Thread Scott Sawyer
Could you run a cron job on the system to analyze the data periodically?

Sent from my iPhone

> On Oct 22, 2020, at 1:30 PM, Lois Greene-Hernandez  wrote:
> 
> Hello, 
> 
> I'm working on a data and calculation intensive django application.  It uses 
> pandas and plotly.py to create many charts and graphs.  I have some control 
> over the design of the application but not total control.  One decision that 
> I stuck with is that all charts and graphs are preprocessed on the first page 
> that loads.  If it were up to me, I'd process what is needed at the time but 
> its not up to me.  
> 
> Since I need to load and process a lot of data prior to page load, I was 
> wondering if it would be possible to do this during server start up.  I'd 
> also need to pass a log of data from whatever startup process I ran to the 
> django views.  
> 
> Any information that you could shed on this problem would be greatly 
> appreciated. 
> 
> Thanks
> 
> Lois J. Greene-Hernandez 
> -- 
> 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/5e34166f-ade9-4dec-bb9d-0a8d6392fdc8n%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/F90610CE-721D-4FEB-8992-FAF63A6C6368%40gmail.com.


Re: 127.0.0.1:8000 infinite loading, but localhost:8000 can be access

2020-09-26 Thread Scott Sawyer
Look in /etc/hosts if you are on a Linux box

Sent from my iPhone

> On Sep 26, 2020, at 11:23 AM, Kasper Laudrup  wrote:
> 
> Hi Dum Dum,
> 
>> On 26/09/2020 20.01, dum dum wrote:
>> I don't know why this happened.
>> Please advise, Thanks.
> 
> Try to provide some more details if you want some help.
> 
> This is most likely related to how you start the server, but since you 
> haven't told us how you do that, we can only guess what might be the cause of 
> the issue.
> 
> Consider spending a bit time to write a proper question if you expect people 
> to spend time writing a proper answer.
> 
> 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/eafe28e8-d374-76c4-1222-711b91ac1f35%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/A3C74021-9D85-4F7E-A6D4-C46049077F3F%40gmail.com.