Re: Lead Architect / CTO ( Hands on ) - Start Up - Cambridge - 3 Days remote working

2019-03-28 Thread Vedarth Sharma
I am interested in taking this opportunity. On Thu, Mar 28, 2019, 5:04 PM wrote: > Hi Everyone, > > I am looking for a candidate who has architectural experience in building > a Platform in Python Django. > > *Software Architect – Part Remote - (Python Django) – Start **Up * > > > > £65,000 -

Re: Lead Architect / CTO ( Hands on ) - Start Up - Cambridge - 3 Days remote working

2019-03-28 Thread Rakesh Singh
Hi, I am interested in this position but only remote work from home location. If agreed please let me know. On Thu, Mar 28, 2019 at 5:04 PM wrote: > Hi Everyone, > > I am looking for a candidate who has architectural experience in building > a Platform in Python Django. > > *Software Architect

Re: Unit-Testing Django Views

2019-03-28 Thread Chetan Ganji
There is one more way you could do it class TestIndexPageLoad(TestCase): def setUp(self): self.client = Client() self.response = self.client.get('/') def test_check_response(self): self.assertTemplateUsed(self.response, 'index.html') Regards, Chetan Ganji +91-900-483-4183

Re: Unit-Testing Django Views

2019-03-28 Thread Chetan Ganji
I would prefer to just check the status code of the response object. This is what I have done. You have to check if it works for forms with csrf_token or not. class TestReverseUrls(TestCase): def setUp(self): self.client = Client() self.reverseUrls = ['index', 'login', 'register'] self.response

Re: Unit-Testing Django Views

2019-03-28 Thread Aldian Fazrihady
There are several things you can try: 1. Mocking csrf token functions 2. Passing the csrf token context from first HTML generation to the second HTML generation 3. Wiping out the csrf token parts from both HTML before comparing them. On Thu, 28 Mar 2019, 23:54 Simon Charette, wrote: > This is

Re: Regarding internship opportunity in Bangalore

2019-03-28 Thread Akash Purandare
Hey Sachin If you might be interested in Full Stack Development of a Website, please do send me your CV. We work in a startup called Oversight. Regards Akash Purandare akash.p1...@gmail.com On Thursday, March 28, 2019 at 11:24:18 PM UTC+5:30, sachin thakur wrote: > > Hi Folks > This email

Looking for a Django Intern in India

2019-03-28 Thread Akash Purandare
Hello Django Developers We would like to provide you with opportunities to work in a live project on Django. This is an internship which requires you to collaborate effectively with other members of the team based in India. Requirements: Good Knowledge of Django Basic Knowledge of React

Re: how to read and parse the csv files using pandas in django

2019-03-28 Thread Jayram Rawat
can you send the data sheet which you are using in this program. On Thursday, 28 March 2019 17:04:54 UTC+5:30, naga lokesh wrote: > > I have normal python code to plot the graphs for csv data(data > visualisation).But I need code in django and graphs should display on > dashboard... > -- You

Re: Installation Question

2019-03-28 Thread KONE GOMPOU LOUA ALASSANE
You must install virtualenv first, Le jeu. 28 mars 2019 16:55, Sandip Nath a écrit : > Definitely will help you with your installation. But first reply to the > questions. Because the remedy will depend on your reply. > > On Thursday, 28 March 2019 22:02:08 UTC+5:30, michael wrote: >> >> I've

Re: Installation Question

2019-03-28 Thread Michael Achterberg
I am running Windows 10 No other versions of of Python, only 3.7.3 Regards, Michael Achterberg Achterberg Consulting (Pty) Ltd Tel: +27 (0)78 128 3948 E-mail: mich...@achterberg.org.za Original message From: Sandip Nath Date: 28/03/2019 18:52 (GMT+02:00) To: Django

Re: Installation Question

2019-03-28 Thread Michael Achterberg
I am trying to run Pip install virtualenv As well as virtualenv my_env Regards, Michael Achterberg Achterberg Consulting (Pty) Ltd Tel: +27 (0)78 128 3948 E-mail: mich...@achterberg.org.za Original message From: "Sithembewena L. Dube" Date: 28/03/2019 18:36

Re: There's any django app for calendar?

2019-03-28 Thread Kasper Laudrup
Hi Fellipe, On 28/03/2019 14.45, Fellipe Henrique wrote: Hello guys,  tried to search on google, but no lucky.. Anyone knows any django app for calendar, to set appointments, hour/day... with frontend? I had sort of the same issue a while ago. I wanted a simple booking system for a

Re: Newbie question : running the makemigrations command in the terminal

2019-03-28 Thread jgibson
>From your settings file: > munichliving_app.apps.MunichLivingConfig > > That makes me think that the structure of your project looks something like this: \munichliving_app\manage.py \munichliving_app\apps\MunichLivingConfig\ \munichliving_app\apps\MunichLivingConfig\models.py

Regarding internship opportunity in Bangalore

2019-03-28 Thread sachin thakur
Hi Folks This email is regarding internship opportunity if there are any internship opportunity please do let me know I am already working on django also I developed web based applications using jsp servlet and hibernate. Please do let me know if any opportunity is available -- You received this

Re: There's any django app for calendar?

2019-03-28 Thread carlos
https://github.com/llazzaro/django-scheduler On Thu, Mar 28, 2019 at 9:21 AM Suresh Kannan wrote: > Hi, > > Explore the link https://djangopackages.org/grids/g/calendar/ > > On Thu, 28 Mar 2019 at 09:45, Fellipe Henrique wrote: > >> Hello guys, tried to search on google, but no lucky.. >> >>

Re: Newbie question : running the makemigrations command in the terminal

2019-03-28 Thread kamibarut609
On Thursday, 28 March 2019 16:35:46 UTC+1, kamiba...@gmail.com wrote: > > Hello, > > (Newbie here): I am trying to run the makemigrations icommand in my > terminal. You will find here below the three relevant files, the third one > showing the errors displayed in > the terminal. > > My

Re: Installation Question

2019-03-28 Thread Sandip Nath
Definitely will help you with your installation. But first reply to the questions. Because the remedy will depend on your reply. On Thursday, 28 March 2019 22:02:08 UTC+5:30, michael wrote: > > I've installed Python 3.7 which comes with pip installed. When I try to > create a virtualenv I get a

Re: Unit-Testing Django Views

2019-03-28 Thread Simon Charette
This is effectively failing because of a mechanism added in 1.10 to protect against BREACH attacks[0] by salting the CSRF token. I'm not aware of any way to disable this mechanism but testing against the exact HTML returned from a view seems fragile. I suggest you use assertContains[1] (with or

Re: Installation Question

2019-03-28 Thread Sandip Nath
Please try to be more informative when posting a question. Please answer this: 1. what os are you using? Windows/Mac/linux. 2. Do you have any other version(s) of Python installed in your system? On Thursday, 28 March 2019 22:02:08 UTC+5:30, michael wrote: > > I've installed Python 3.7 which

Re: Installation Question

2019-03-28 Thread Sithembewena L. Dube
Can you paste the command you are running? Kind regards, Sithembewena *Sent with Shift * On Thu, Mar 28, 2019 at 6:31 PM Michael Achterberg <

Installation Question

2019-03-28 Thread Michael Achterberg
I've installed Python 3.7 which comes with pip installed. When I try to create a virtualenv I get a SyntaxError: invalid syntax What am I doing wrong? Regards, Michael Achterberg E-mail: mich...@achterberg.org.za -- You received this message because you are subscribed to the Google Groups

Unit-Testing Django Views

2019-03-28 Thread OnlineJudge95
Hi people, I am following the book Test-Driven Development with Python by *Harry J.W. Perceval.* The book is using Django version 1.7 which is outdated as of now so I started with version 2.1. I am

Newbie question : running the makemigrations command in the terminal

2019-03-28 Thread kamibarut609
Hello, (Newbie here): I am trying to run the makemigrations icommand in my terminal. You will find here below the three relevant files, the third one showing the errors displayed in the terminal. My settings.py file: https://pastebin.com/raw/xLpX0Zfg My models.py file:

Re: There's any django app for calendar?

2019-03-28 Thread Suresh Kannan
Hi, Explore the link https://djangopackages.org/grids/g/calendar/ On Thu, 28 Mar 2019 at 09:45, Fellipe Henrique wrote: > Hello guys, tried to search on google, but no lucky.. > > Anyone knows any django app for calendar, to set appointments, hour/day... > with frontend? > > Thanks! > >

Python Client generated from swagger

2019-03-28 Thread carl collins
Hello, I would love to know if any one here has ever generated python client code using swagger codegenand used that client code with python/Django script or application to do get and post data to the API . I have generated a python client with swagger codegen but I don't know how to use

Re: Need some sample project coding in Django t

2019-03-28 Thread Anbarasi Ayyannan
Yes please send me @anbarasiayyan...@gmail.com On Thu, 28 Mar, 2019, 7:36 PM Bissane Belhadji, wrote: > I will mail you a sample project I have, should I use > anbarasiayyan...@gmail.com as the receiving address? > /Bissane > > Le jeu. 28 mars 2019 à 14:58, Anbarasi Ayyannan < >

Re: Need some sample project coding in Django t

2019-03-28 Thread SuryaKumar K
Hi, If you already familiar with python then it's better to start from django's official document itself. There you can find a polls app. Link :https://docs.djangoproject.com/en/2.1/intro/tutorial01/

Re: Need some sample project coding in Django t

2019-03-28 Thread Bissane Belhadji
I will mail you a sample project I have, should I use anbarasiayyan...@gmail.com as the receiving address? /Bissane Le jeu. 28 mars 2019 à 14:58, Anbarasi Ayyannan a écrit : > Hi, > I am Django learner need some help for learning.Can you please help me > with providing me some sample project ?

Re: Need some sample project coding in Django t

2019-03-28 Thread Nelson Varela
The django documentation will help you build a project yourself which can help you a lot understanding django: https://docs.djangoproject.com/en/2.1/intro/tutorial01/ On Thursday, March 28, 2019 at 2:59:12 PM UTC+1, Anbarasi Ayyannan wrote: > > Hi, > I am Django learner need some help for

Need some sample project coding in Django t

2019-03-28 Thread Anbarasi Ayyannan
Hi, I am Django learner need some help for learning.Can you please help me with providing me some sample project ? so that i can understand better. Regards, Anbarasi -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this

There's any django app for calendar?

2019-03-28 Thread Fellipe Henrique
Hello guys, tried to search on google, but no lucky.. Anyone knows any django app for calendar, to set appointments, hour/day... with frontend? Thanks! T.·.F.·.A.·. S+F *Fellipe Henrique P. Soares* e-mail: > echo "lkrrovknFmsgor4ius" | perl -pe \ 's/(.)/chr(ord($1)-2*3)/ge' *Fedora

Re: how to read and parse the csv files using pandas in django

2019-03-28 Thread Alison Mukoma
Hi, It seems that to achieve that you need to put up a django project and maybe a seperate app for best practices where you can write that code in views and send your data to templates as context variables then after put up your routing in URLs and you can design your dashboard as you like it.

Re: Lead Architect / CTO ( Hands on ) - Start Up - Cambridge - 3 Days remote working

2019-03-28 Thread Aldian Fazrihady
Visa sponsorship? On Thu, 28 Mar 2019, 18:34 , wrote: > Hi Everyone, > > I am looking for a candidate who has architectural experience in building > a Platform in Python Django. > > *Software Architect – Part Remote - (Python Django) – Start **Up * > > > > £65,000 - £75,000 depending on

Re: Lead Architect / CTO ( Hands on ) - Start Up - Cambridge - 3 Days remote working

2019-03-28 Thread Alison Mukoma
Hi I would like to help regarding your need for a python engineer. Kind regards, Alison On Thu, Mar 28, 2019 at 1:46 PM Serdar Emirci wrote: > > Hello, > I would like to help if someone can communicate in Turkish. > > > > Serdar EMIRCI > > > adresine sahip kullanıcı 28 Mar 2019 Per, 14:34 >

Re: Lead Architect / CTO ( Hands on ) - Start Up - Cambridge - 3 Days remote working

2019-03-28 Thread Serdar Emirci
Hello, I would like to help if someone can communicate in Turkish. Serdar EMIRCI adresine sahip kullanıcı 28 Mar 2019 Per, 14:34 tarihinde şunu yazdı: > Hi Everyone, > > I am looking for a candidate who has architectural experience in building > a Platform in Python Django. > > *Software

Lead Architect / CTO ( Hands on ) - Start Up - Cambridge - 3 Days remote working

2019-03-28 Thread smundie619
Hi Everyone, I am looking for a candidate who has architectural experience in building a Platform in Python Django. *Software Architect – Part Remote - (Python Django) – Start **Up * £65,000 - £75,000 depending on experience Cambridge Permanent We have established a firm

how to read and parse the csv files using pandas in django

2019-03-28 Thread naga lokesh
I have normal python code to plot the graphs for csv data(data visualisation).But I need code in django and graphs should display on dashboard... -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Re: Create models using raw SQL queries

2019-03-28 Thread John Crosby
Cs50 from Harvard do quite a nice YouTube course on this. They start with SQL.queries direct to database and move into flask and.Django. It might be worth a look: https://youtu.be/Eda-NmcE5mQ > On 28 Mar 2019, at 03:46, cameron hochbrg wrote: > > Thank you for your response. I am aware that

Re: Fix docs for model.save() with update_fields specified and auto_now field in model

2019-03-28 Thread Sebastian Haase
Please advise if this is the right place to report such a doc enhancement request - anyone? BTW - in addition I also noticed that - using deserialization - object.save() gives unexpected different results for auto_now field: - if the object-pk aleady existed , the field is saved as given - but

Re: Create models using raw SQL queries

2019-03-28 Thread PASCUAL Eric
Hi Cameron, the reason why I wanted to use django is that I had used it before and I didn't want to have to learn a new framework if possible. Makes sense. However, light FWs such as Tornado (which I like a lot, and prefers over Flask BTW) have a really small learning curve for a basic usage