Re: Create a website from API available

2020-12-05 Thread Kasper Laudrup
Hi Man, On 05/12/2020 00.14, man nguyen wrote: I am learning django and I want to ask if django will assist me in creating a website using the available api and I want to know how to do it?  api docs i have : https://developer.cisco.com/meraki/api-v1/#!get-device  please tell me how to do

Re: models design for student result system

2020-12-05 Thread Kasper Laudrup
Hi Dexterr, On 05/12/2020 07.40, Dexterr Jay wrote: image.png i need help with design of the above models for my student result system project What kind of help do you need? What have you done so far? Try to be a bit more specific. Kind regards, Kasper Laudrup -- You received this

Re: controlling stdout

2020-12-05 Thread Tom Sgouros
Matlab is the native language of the group for which I am building this interface. It is for access to ocean sensor data, and it's being done this way so the scientists whose sensors they are can use a significant body of legacy code in their analyses. (Though I was planning to sneak in an option

Re: controlling stdout

2020-12-05 Thread Shaheed Haque
I would hazard a guess that Django has already redirected stderr and or stdout before your code gets to run. I recommend that you stop your code in the debugger just *before* you try your redirection and look at the state of sys.stderr and sys.stdout. Also, I'm not sure if you are aware of the

Re: Looking for a new project

2020-12-05 Thread 1 9 5 9 0 Aman kumar
Start by creating portfolio... On Sat, 5 Dec 2020, 22:00 Dishita Bhasin, wrote: > Warm Greetings everyone, myself Dishita Bhasin. I would love to contribute > to this wonderful organization. Can someone please help me out on how to > get started and suggest some projects? I have knowledge of

Re: How to Get Video to Play

2020-12-05 Thread Ryan Nowakowski
tl;dr check the encoding of your video Disclosure: I'm no video expert. I had a similar issue years ago. Back when the transition from flash video to HTML5 was occurring. Your issue could have something to do with how the video is encoded. One reason that services like YouTube and Vimeo are

Looking for a new project

2020-12-05 Thread Dishita Bhasin
Warm Greetings everyone, myself Dishita Bhasin. I would love to contribute to this wonderful organization. Can someone please help me out on how to get started and suggest some projects? I have knowledge of C++ and Python. Thanks -- You received this message because you are subscribed to the

Re: models design for student result system

2020-12-05 Thread boyuanl...@gmail.com
You can create three models:1. The student's model, contains student's information,2. The Courses' model, contains all the courses information,3. The student_course_grade model, contains all student's grade information On Friday, December 4, 2020, 10:42:37 PM PST, Dexterr Jay wrote:

Re: Create a website from API available

2020-12-05 Thread Z Z
Hello I am ZhengZhen I have rich experience for building REST api with django . please contact to me . On Fri, Dec 4, 2020 at 6:28 PM man nguyen wrote: > I am learning django and I want to ask if django will assist me in > creating a website using the available api and I want to know how to do

Re: Looking for a new project

2020-12-05 Thread Omkar Parab
Welcome to the django community!  Here's the playlist for Django 3.0 https://www.youtube.com/playlist?list=PL-51WBLyFTg2vW-_6XBoUpE7vpmoR3ztO On Sat, Dec 5, 2020, 9:59 PM Dishita Bhasin wrote: > Warm Greetings everyone, myself Dishita Bhasin. I would love to contribute > to this wonderful

Re: Django don't save a form using Floppyforms on a foreign key field

2020-12-05 Thread Walter Randazzo
Hi dudes, Here is an update on this: Workarround: I removed floppyforms on my Project and use Select2 instead because it supports searches on foreignkey field and also create an instance with a form easily. Template $(document).ready(function() { $('#id_medicamento').select2(); }); forms.py

Re: Looking for a new project

2020-12-05 Thread sakshi jain
https://youtu.be/XUA0iZdW7D4 On Sat, Dec 5, 2020, 22:38 Omkar Parab wrote: > Welcome to the django community!  > > Here's the playlist for Django 3.0 > https://www.youtube.com/playlist?list=PL-51WBLyFTg2vW-_6XBoUpE7vpmoR3ztO > > On Sat, Dec 5, 2020, 9:59 PM Dishita Bhasin > wrote: > >> Warm

Re: controlling stdout

2020-12-05 Thread Tom Sgouros
Thank you. Now I guess I'll work on figuring out *where* it was redirected. But the "dunder" version of sys.stdout is an excellent clue -- I did not know about that, and bonus gratitude points for giving me a new word to use. -Tom On Sat, Dec 5, 2020 at 9:06 AM Shaheed Haque wrote: > I would

Re: controlling stdout

2020-12-05 Thread Shaheed Haque
On Sat, 5 Dec 2020, 21:57 Tom Sgouros, wrote: > Thank you. Now I guess I'll work on figuring out *where* it was redirected. > Sounds good. But the "dunder" version of sys.stdout is an excellent clue -- I did not > know about that, and bonus gratitude points for giving me a new word to use. >