From anuvrat at anuvrat.in Tue Nov 3 00:40:41 2015 From: anuvrat at anuvrat.in (Anuvrat Parashar) Date: Tue, 3 Nov 2015 11:10:41 +0530 Subject: [PyDelhi] [Query] [DRF] Raw SQL Query by passing Model and Model Serializer In-Reply-To: References: Message-ID: @aniket On Sun, Nov 1, 2015 at 1:14 AM, ragsagar wrote: > > > On Sat, Oct 31, 2015 at 2:14 AM, Aniket Maithani < > maithani.aniket at gmail.com> wrote: > >> >> >> >> On Sat, Oct 31, 2015 at 3:26 AM, Raakesh kumar >> wrote: >> >>> >>> Just for my curiosity, why do you want to remove model interaction? I >>> mean you can achieve it with models also >>> >> >> >> Well point being I already have the data in the database (parsed from the >> website) . Which I have exported. And since I know the data is going to >> remain unchanged for some-time I feel there is no need to create model for >> the same (Correct me If I am wrong here). Therefore I just want simple >> query and output mechanism, that's all. >> > [correcting you] you create models in Django to make it easier to do all of CRUD easily which more often than others involves querying the db. Now, you orrect me if I am wrong. - you have a database with some values present in them. - you want to create an API layer over it, to power some basic searching, filtering etc. - you don't want to create django models for them. so there is no CRUD, why do you need restful API? and if there is no restful API, why do you need DRF? if there are no models and no DRF, why do you need Django? I would have opted for either of: - dump the data in elasticsearch, put it behind nginx. ready. - dump the data in mongodb and use http://python-eve.org/ to build the API layer. Using a Knife to do a rock's job is not wise either :P, if you know what I mean. >> > Use the management command `inspectdb`. It will inspect your existing > tables and create models for you. Then you can use DRF's generic views > itself. Read more here. > https://docs.djangoproject.com/en/1.8/howto/legacy-databases/ > > -- > blog : ragsagar.wordpress.com > mail id : python -c "print '@'.join(['ragsagar','.'.join([x for x in > ['gmail','com']])])" > > _______________________________________________ > https://mail.python.org/mailman/listinfo/ncr-python.in > http://bit.ly/pydelhi-mailinglist-guidelines > -- Anuvrat Parashar http://anuvrat.in -------------- next part -------------- An HTML attachment was scrubbed... URL: From maithani.aniket at gmail.com Tue Nov 3 00:57:35 2015 From: maithani.aniket at gmail.com (Aniket Maithani) Date: Tue, 3 Nov 2015 11:27:35 +0530 Subject: [PyDelhi] [Query] [DRF] Raw SQL Query by passing Model and ModelSerializer In-Reply-To: References: Message-ID: <56384cd1.4706430a.11db8.53af@mx.google.com> Hmm... Sounds fair... Actually on a learning curve... Nvm will take a look into this first. Too much info for me I believe. (sorry for slangs I am on mobile) Thanks -----Original Message----- From: "Anuvrat Parashar" Sent: ?03-?11-?2015 11:10 To: "Python Delhi User Group" Subject: Re: [PyDelhi] [Query] [DRF] Raw SQL Query by passing Model and ModelSerializer @aniket On Sun, Nov 1, 2015 at 1:14 AM, ragsagar wrote: On Sat, Oct 31, 2015 at 2:14 AM, Aniket Maithani wrote: On Sat, Oct 31, 2015 at 3:26 AM, Raakesh kumar wrote: Just for my curiosity, why do you want to remove model interaction? I mean you can achieve it with models also Well point being I already have the data in the database (parsed from the website) . Which I have exported. And since I know the data is going to remain unchanged for some-time I feel there is no need to create model for the same (Correct me If I am wrong here). Therefore I just want simple query and output mechanism, that's all. [correcting you] you create models in Django to make it easier to do all of CRUD easily which more often than others involves querying the db. Now, you orrect me if I am wrong. - you have a database with some values present in them. - you want to create an API layer over it, to power some basic searching, filtering etc. - you don't want to create django models for them. so there is no CRUD, why do you need restful API? and if there is no restful API, why do you need DRF? if there are no models and no DRF, why do you need Django? I would have opted for either of: - dump the data in elasticsearch, put it behind nginx. ready. - dump the data in mongodb and use http://python-eve.org/ to build the API layer. Using a Knife to do a rock's job is not wise either :P, if you know what I mean. Use the management command `inspectdb`. It will inspect your existing tables and create models for you. Then you can use DRF's generic views itself. Read more here. https://docs.djangoproject.com/en/1.8/howto/legacy-databases/ -- blog : ragsagar.wordpress.com mail id : python -c "print '@'.join(['ragsagar','.'.join([x for x in ['gmail','com']])])" _______________________________________________ https://mail.python.org/mailman/listinfo/ncr-python.in http://bit.ly/pydelhi-mailinglist-guidelines -- Anuvrat Parashar http://anuvrat.in -------------- next part -------------- An HTML attachment was scrubbed... URL: From kracethekingmaker at gmail.com Tue Nov 3 01:07:22 2015 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Tue, 3 Nov 2015 11:37:22 +0530 Subject: [PyDelhi] [Query] [DRF] Raw SQL Query by passing Model and Model Serializer In-Reply-To: References: Message-ID: On Tue, Nov 3, 2015 at 11:10 AM, Anuvrat Parashar wrote: > @aniket > > On Sun, Nov 1, 2015 at 1:14 AM, ragsagar wrote: > >> >> >> On Sat, Oct 31, 2015 at 2:14 AM, Aniket Maithani < >> maithani.aniket at gmail.com> wrote: >> >>> >>> >>> >>> On Sat, Oct 31, 2015 at 3:26 AM, Raakesh kumar >>> wrote: >>> >>>> >>>> Just for my curiosity, why do you want to remove model interaction? I >>>> mean you can achieve it with models also >>>> >>> >>> >>> Well point being I already have the data in the database (parsed from >>> the website) . Which I have exported. And since I know the data is going to >>> remain unchanged for some-time I feel there is no need to create model for >>> the same (Correct me If I am wrong here). Therefore I just want simple >>> query and output mechanism, that's all. >>> >> [correcting you] you create models in Django to make it easier to do all > of CRUD easily which more often than others involves querying the db. > > > Now, you orrect me if I am wrong. > - you have a database with some values present in them. > - you want to create an API layer over it, to power some basic searching, > filtering etc. > - you don't want to create django models for them. > > so there is no CRUD, why do you need restful API? > and if there is no restful API, why do you need DRF? > if there are no models and no DRF, why do you need Django? > > I would have opted for either of: > - dump the data in elasticsearch, put it behind nginx. ready. > Make sure to use python elasticsearch binding at least to prevent elasticsearch injection similar to SQL Injection. > - dump the data in mongodb and use http://python-eve.org/ to build the > API layer. > > Using a Knife to do a rock's job is not wise either :P, if you know what I > mean. > > > >>> >> Use the management command `inspectdb`. It will inspect your existing >> tables and create models for you. Then you can use DRF's generic views >> itself. Read more here. >> https://docs.djangoproject.com/en/1.8/howto/legacy-databases/ >> >> -- >> blog : ragsagar.wordpress.com >> mail id : python -c "print '@'.join(['ragsagar','.'.join([x for x in >> ['gmail','com']])])" >> >> _______________________________________________ >> https://mail.python.org/mailman/listinfo/ncr-python.in >> http://bit.ly/pydelhi-mailinglist-guidelines >> > > > > -- > Anuvrat Parashar > http://anuvrat.in > > > _______________________________________________ > https://mail.python.org/mailman/listinfo/ncr-python.in > http://bit.ly/pydelhi-mailinglist-guidelines > -- *Thanks & Regardskracekumar"Talk is cheap, show me the code" -- Linus Torvaldshttp://kracekumar.com * -------------- next part -------------- An HTML attachment was scrubbed... URL: From sami.ullah at srijan.in Tue Nov 3 02:34:26 2015 From: sami.ullah at srijan.in (Sami Ullah) Date: Tue, 3 Nov 2015 13:04:26 +0530 Subject: [PyDelhi] Ncr-Python.in Digest, Vol 57, Issue 2 In-Reply-To: References: Message-ID: Hi , Is there any mentorship programme available for new people to python. I am looking for a system where person gets trained on project and gets his hands dirty on problems a common dev or python qa faces. On Tue, Nov 3, 2015 at 11:37 AM, wrote: > Send Ncr-Python.in mailing list submissions to > ncr-python.in at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/ncr-python.in > or, via email, send a message with subject or body 'help' to > ncr-python.in-request at python.org > > You can reach the person managing the list at > ncr-python.in-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Ncr-Python.in digest..." > > > Today's Topics: > > 1. Re: [Query] [DRF] Raw SQL Query by passing Model and Model > Serializer (Anuvrat Parashar) > 2. Re: [Query] [DRF] Raw SQL Query by passing Model and > ModelSerializer (Aniket Maithani) > 3. Re: [Query] [DRF] Raw SQL Query by passing Model and Model > Serializer (kracekumar ramaraju) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 3 Nov 2015 11:10:41 +0530 > From: Anuvrat Parashar > To: Python Delhi User Group > Subject: Re: [PyDelhi] [Query] [DRF] Raw SQL Query by passing Model > and Model Serializer > Message-ID: > < > CA+YFjT4VgLs-KX00FTibD+FAikxfVhvQNVPopsX+SAyO9HsCHg at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > @aniket > > On Sun, Nov 1, 2015 at 1:14 AM, ragsagar wrote: > > > > > > > On Sat, Oct 31, 2015 at 2:14 AM, Aniket Maithani < > > maithani.aniket at gmail.com> wrote: > > > >> > >> > >> > >> On Sat, Oct 31, 2015 at 3:26 AM, Raakesh kumar > >> wrote: > >> > >>> > >>> Just for my curiosity, why do you want to remove model interaction? I > >>> mean you can achieve it with models also > >>> > >> > >> > >> Well point being I already have the data in the database (parsed from > the > >> website) . Which I have exported. And since I know the data is going to > >> remain unchanged for some-time I feel there is no need to create model > for > >> the same (Correct me If I am wrong here). Therefore I just want simple > >> query and output mechanism, that's all. > >> > > [correcting you] you create models in Django to make it easier to do all > of CRUD easily which more often than others involves querying the db. > > > Now, you orrect me if I am wrong. > - you have a database with some values present in them. > - you want to create an API layer over it, to power some basic searching, > filtering etc. > - you don't want to create django models for them. > > so there is no CRUD, why do you need restful API? > and if there is no restful API, why do you need DRF? > if there are no models and no DRF, why do you need Django? > > I would have opted for either of: > - dump the data in elasticsearch, put it behind nginx. ready. > - dump the data in mongodb and use http://python-eve.org/ to build the > API > layer. > > Using a Knife to do a rock's job is not wise either :P, if you know what I > mean. > > > > >> > > Use the management command `inspectdb`. It will inspect your existing > > tables and create models for you. Then you can use DRF's generic views > > itself. Read more here. > > https://docs.djangoproject.com/en/1.8/howto/legacy-databases/ > > > > -- > > blog : ragsagar.wordpress.com > > mail id : python -c "print '@'.join(['ragsagar','.'.join([x for x in > > ['gmail','com']])])" > > > > _______________________________________________ > > https://mail.python.org/mailman/listinfo/ncr-python.in > > http://bit.ly/pydelhi-mailinglist-guidelines > > > > > > -- > Anuvrat Parashar > http://anuvrat.in > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/ncr-python.in/attachments/20151103/e2bb5855/attachment-0001.html > > > > ------------------------------ > > Message: 2 > Date: Tue, 3 Nov 2015 11:27:35 +0530 > From: Aniket Maithani > To: Python Delhi User Group > Subject: Re: [PyDelhi] [Query] [DRF] Raw SQL Query by passing Model > and ModelSerializer > Message-ID: <56384cd1.4706430a.11db8.53af at mx.google.com> > Content-Type: text/plain; charset="utf-8" > > Hmm... Sounds fair... Actually on a learning curve... Nvm will take a look > into this first. Too much info for me I believe. > > > (sorry for slangs I am on mobile) > > Thanks > > -----Original Message----- > From: "Anuvrat Parashar" > Sent: ?03-?11-?2015 11:10 > To: "Python Delhi User Group" > Subject: Re: [PyDelhi] [Query] [DRF] Raw SQL Query by passing Model and > ModelSerializer > > @aniket > > > > On Sun, Nov 1, 2015 at 1:14 AM, ragsagar wrote: > > > > > > On Sat, Oct 31, 2015 at 2:14 AM, Aniket Maithani < > maithani.aniket at gmail.com> wrote: > > > > > > > On Sat, Oct 31, 2015 at 3:26 AM, Raakesh kumar > wrote: > > > > Just for my curiosity, why do you want to remove model interaction? I mean > you can achieve it with models also > > > > Well point being I already have the data in the database (parsed from the > website) . Which I have exported. And since I know the data is going to > remain unchanged for some-time I feel there is no need to create model for > the same (Correct me If I am wrong here). Therefore I just want simple > query and output mechanism, that's all. > [correcting you] you create models in Django to make it easier to do all > of CRUD easily which more often than others involves querying the db. > > > > Now, you orrect me if I am wrong. > > - you have a database with some values present in them. > > - you want to create an API layer over it, to power some basic searching, > filtering etc. > > - you don't want to create django models for them. > > > > so there is no CRUD, why do you need restful API? > > and if there is no restful API, why do you need DRF? > > if there are no models and no DRF, why do you need Django? > > > I would have opted for either of: > > - dump the data in elasticsearch, put it behind nginx. ready. > > - dump the data in mongodb and use http://python-eve.org/ to build the > API layer. > > > Using a Knife to do a rock's job is not wise either :P, if you know what I > mean. > > > > > > > > > > Use the management command `inspectdb`. It will inspect your existing > tables and create models for you. Then you can use DRF's generic views > itself. Read more here. > https://docs.djangoproject.com/en/1.8/howto/legacy-databases/ > > > -- > > blog : ragsagar.wordpress.com > mail id : python -c "print '@'.join(['ragsagar','.'.join([x for x in > ['gmail','com']])])" > > _______________________________________________ > https://mail.python.org/mailman/listinfo/ncr-python.in > http://bit.ly/pydelhi-mailinglist-guidelines > > > > > -- > > Anuvrat Parashar > http://anuvrat.in > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/ncr-python.in/attachments/20151103/f452c528/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Tue, 3 Nov 2015 11:37:22 +0530 > From: kracekumar ramaraju > To: Python Delhi User Group > Subject: Re: [PyDelhi] [Query] [DRF] Raw SQL Query by passing Model > and Model Serializer > Message-ID: > JUM4yiOq+eRCeXx5NqSS6AA at mail.gmail.com> > Content-Type: text/plain; charset="utf-8" > > On Tue, Nov 3, 2015 at 11:10 AM, Anuvrat Parashar > wrote: > > > @aniket > > > > On Sun, Nov 1, 2015 at 1:14 AM, ragsagar wrote: > > > >> > >> > >> On Sat, Oct 31, 2015 at 2:14 AM, Aniket Maithani < > >> maithani.aniket at gmail.com> wrote: > >> > >>> > >>> > >>> > >>> On Sat, Oct 31, 2015 at 3:26 AM, Raakesh kumar > >>> wrote: > >>> > >>>> > >>>> Just for my curiosity, why do you want to remove model interaction? I > >>>> mean you can achieve it with models also > >>>> > >>> > >>> > >>> Well point being I already have the data in the database (parsed from > >>> the website) . Which I have exported. And since I know the data is > going to > >>> remain unchanged for some-time I feel there is no need to create model > for > >>> the same (Correct me If I am wrong here). Therefore I just want simple > >>> query and output mechanism, that's all. > >>> > >> [correcting you] you create models in Django to make it easier to do all > > of CRUD easily which more often than others involves querying the db. > > > > > > Now, you orrect me if I am wrong. > > - you have a database with some values present in them. > > - you want to create an API layer over it, to power some basic > searching, > > filtering etc. > > - you don't want to create django models for them. > > > > so there is no CRUD, why do you need restful API? > > and if there is no restful API, why do you need DRF? > > if there are no models and no DRF, why do you need Django? > > > > I would have opted for either of: > > - dump the data in elasticsearch, put it behind nginx. ready. > > > > Make sure to use python elasticsearch binding at least to prevent > elasticsearch injection similar to SQL Injection. > > > > - dump the data in mongodb and use http://python-eve.org/ to build the > > API layer. > > > > Using a Knife to do a rock's job is not wise either :P, if you know what > I > > mean. > > > > > > > >>> > >> Use the management command `inspectdb`. It will inspect your existing > >> tables and create models for you. Then you can use DRF's generic views > >> itself. Read more here. > >> https://docs.djangoproject.com/en/1.8/howto/legacy-databases/ > >> > >> -- > >> blog : ragsagar.wordpress.com > >> mail id : python -c "print '@'.join(['ragsagar','.'.join([x for x in > >> ['gmail','com']])])" > >> > >> _______________________________________________ > >> https://mail.python.org/mailman/listinfo/ncr-python.in > >> http://bit.ly/pydelhi-mailinglist-guidelines > >> > > > > > > > > -- > > Anuvrat Parashar > > http://anuvrat.in > > > > > > _______________________________________________ > > https://mail.python.org/mailman/listinfo/ncr-python.in > > http://bit.ly/pydelhi-mailinglist-guidelines > > > > > > -- > > *Thanks & Regardskracekumar"Talk is cheap, show me the code" -- Linus > Torvaldshttp://kracekumar.com * > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://mail.python.org/pipermail/ncr-python.in/attachments/20151103/b1e7b836/attachment.html > > > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > https://mail.python.org/mailman/listinfo/ncr-python.in > Mailing list guidelines : http://bit.ly/pydelhi-mailinglist-guidelines > > ------------------------------ > > End of Ncr-Python.in Digest, Vol 57, Issue 2 > ******************************************** > -- Thanks, Sami Ullah | Quality Analyst Srijan Technologies Pvt. Ltd. -------------- next part -------------- An HTML attachment was scrubbed... URL: From noufal at gmail.com Tue Nov 3 02:48:04 2015 From: noufal at gmail.com (Noufal Ibrahim) Date: Tue, 03 Nov 2015 13:18:04 +0530 Subject: [PyDelhi] Python mentoring (was: Ncr-Python.in Digest, Vol 57, Issue 2) In-Reply-To: (Sami Ullah's message of "Tue, 3 Nov 2015 13:04:26 +0530") References: Message-ID: <87ziyvr0az.fsf_-_@gmail.com> On Tue, Nov 03 2015, Sami Ullah wrote: > Hi , > > Is there any mentorship programme available for new people to python. > I am looking for a system where person gets trained on project and gets his > hands dirty on problems a common dev or python qa faces. [...] Part of my mentoring program which I do down here in Kozhikode, Kerala is developing a fresh project with emphasis on things like design, documentation, testing, QA and collaboration. This touches on much of what you've mentioned. We also include a code comprehension class where we walk through some production quality existing python code and try to learn from it and finally critique it. -- Cordially, Noufal http://nibrahim.net.in From kumar3180 at gmail.com Tue Nov 3 03:02:07 2015 From: kumar3180 at gmail.com (Raakesh kumar) Date: Tue, 3 Nov 2015 13:32:07 +0530 Subject: [PyDelhi] [COMMERCIAL] Need python freelancer Message-ID: Hi All, I am looking for a good python freelancer for one of our project. Please call me on 9015845820 for details. Thanks -- Regards RAKESH KUMAR http://www.raakeshkumar.in -------------- next part -------------- An HTML attachment was scrubbed... URL: From satyaakam at gmail.com Tue Nov 3 04:45:20 2015 From: satyaakam at gmail.com (satyaakam goswami) Date: Tue, 3 Nov 2015 15:15:20 +0530 Subject: [PyDelhi] Python mentoring (was: Ncr-Python.in Digest, Vol 57, Issue 2) In-Reply-To: <87ziyvr0az.fsf_-_@gmail.com> References: <87ziyvr0az.fsf_-_@gmail.com> Message-ID: On Tue, Nov 3, 2015 at 1:18 PM, Noufal Ibrahim wrote: > On Tue, Nov 03 2015, Sami Ullah wrote: > > > Hi , > > > > Is there any mentorship programme available for new people to python. > > I am looking for a system where person gets trained on project and gets > his > > hands dirty on problems a common dev or python qa faces. > > [...] > > Part of my mentoring program which I do down here in Kozhikode, Kerala > is developing a fresh project with emphasis on things like design, > documentation, testing, QA and collaboration. This touches on much of > what you've mentioned. We also include a code comprehension class where > we walk through some production quality existing python code and try to > learn from it and finally critique it. ?Hi, I prefer a much broad programme with something like teaching how to mail to mailings lists ? http://bit.ly/pydelhi-mailinglist-guidelines ?work in a community,where and how to ask questions etc and then i would take up the technical bits. Also there is one more approach get to contribute in projects and learn the ways things are done by doing.There are few opportunities with right here https://github.com/pydelhi. from time to time there are Python sessions conducted by community members in colleges one can be part of this effort while teaching and learning. cheers, -Satya Satyaakam.net | fossevents.in | -------------- next part -------------- An HTML attachment was scrubbed... URL: From gora at mimirtech.com Thu Nov 5 01:31:15 2015 From: gora at mimirtech.com (Gora Mohanty) Date: Thu, 5 Nov 2015 12:01:15 +0530 Subject: [PyDelhi] Ncr-Python.in Digest, Vol 57, Issue 2 In-Reply-To: References: Message-ID: On 3 November 2015 at 13:04, Sami Ullah wrote: > Hi , > > Is there any mentorship programme available for new people to python. > I am looking for a system where person gets trained on project and gets his > hands dirty on problems a common dev or python qa faces. Not quite sure if this is what you are referring to, but we are offer internships where you work on code that will become part of a live product, and are guided through the the process of development. If this sounds interesting, please email me off-list. Regards, Gora P.S. Please do not reply to an email digest in order to start a new thread. From satyaakam at gmail.com Tue Nov 17 02:23:47 2015 From: satyaakam at gmail.com (satyaakam goswami) Date: Tue, 17 Nov 2015 12:53:47 +0530 Subject: [PyDelhi] Fwd: [BangPypers] [PythonExpress] Using Pythonexpress for python 101 workshop In-Reply-To: References: Message-ID: FYI spread the word in schools and colleges ---------- Forwarded message ---------- From: Vignesh Udh Date: Mon, Nov 16, 2015 at 1:01 PM Subject: [BangPypers] [PythonExpress] Using Pythonexpress for python 101 workshop To: bangpypers at python.org Hi Team, Could you use http://beta.pythonexpress.in/ to host bangpypers introduction to python 101 workshop ? Best, Vignesh _______________________________________________ BangPypers mailing list BangPypers at python.org https://mail.python.org/mailman/listinfo/bangpypers -------------- next part -------------- An HTML attachment was scrubbed... URL: From akshayaurora at gmail.com Wed Nov 18 05:06:57 2015 From: akshayaurora at gmail.com (qua non) Date: Wed, 18 Nov 2015 15:36:57 +0530 Subject: [PyDelhi] Proposal for holding next PyConIndia in NCR Message-ID: Hi folks, Here is the proposal as requested, https://docs.google.com/document/d/1KsDeIx13Vm6rKfI1AYsxhZ0POK5_XlENO-43erSCexI/edit Just for convenience I am also pasting the content of the document below for convenience. Hi folks, on behalf of the PyDelhi team we hereby propose the next yearly PyCon India 2016 should be held in delhi. What are the advantages of holding an event in Delhi/NCR? - Lazy pythonistas from Northern India get a venue closer to home. - Delhi is Capital city with world class infrastructure, a city and such should theoretically attract more people from universities like DU, IP, JP, MITS, JMU, IIT, Companies like MakeMyTrip, Snapdeal,Paytm, HT Media. - Strong and active team in NCR, this allows Pythonistas from NCR to be a host. - It gives the Bangalore community some rest and a reason to travel. What We have done so far:: We have divided ourselves into a set of teams with different responsibilities for different tasks. Following tasks have been assigned so far:: Administration: Handle finance, legal issues, outline a code of conduct, Dispute resolution, Website management. Marketing: Social Media, Physical Media, Social profiles , Posting , printing posters , design , reply to comments and mails. Sponsor affairs Speaker affairs: Setting up Call for proposals, Taking votes, Managing web pages for displaying list of proposals and taking votes, Contacting and checking with speakers of their availability, Keeping in contact with the speakers, trying to help solve any issues. Venue research/management: Manage Equipment: Video, Internet, Projector, Mics, Recording Equipment, Location, food, posters, Helpdesk , Welcome kit , Name tags , tissue paper, Soaps, Stationery... We propose the following timeline to be followed:: 1. Nov End -- Finalize the Announce location Currently we are focusing on SiriFort and finalizing it as a venue. We will be needing final dates for the event before booking the Venue. - Hire firm for website, logo Design for Pycon India 2016. Question: Can we use existing firm used for 2015? - 2. Dec End -- Announce date of event, publish landing page. Finalize sponsorship prospectus, start contacting sponsors. 3. Jan end -- CFP (talks and workshop) setup, Poster Design, Tshirt design 4. Feb Start -- Send out list of possible keynote speakers and ask for input from community. 5. Feb end -- Finalize Food Vendor, Online Ticket Portal. 6. March end -- Finalize wifi, sound management, video management 7. May end -- Close CFP for talks, workshops. Start Voting procedure. Finalize Keynote speakers. 8. June end -- Open ticket sales, early bird tickets for Talks, keynote. 9. July end -- finalize talks and workshops, open tickets for Workshops. invite proposals for hackathon/open sessions/code sprints? 10. August -- Start getting in touch with vendors for accessories (Posters, goodies, pens, Lan wires, extra projectors, wifi routers, extension cables, recording audio, video equipment... ), for venues. 11.September -- Finalize everything that is left, volunteer meets, official permissions, catering? Here is the proposed format for the conference: - 3 tracks(Separate halls) - 1 keynote for each conference day - proposed schedule: - 08:00AM Breakfast - 09:00AM - 9:15AM Introductions/Welcome - 09:20AM - 10:10AM Keynote - 10:10AM - 10:50AM Break (Expo Hall 210) Hall 1 Hall 2 Hall 3 10:50AM - 11:30AM Talk Ditto Ditto 11:30AM - 12:10PM Talk Ditto Ditto 12:10PM - 12:50PM Talk Ditto Ditto 12:50PM - 01:40PM Lunch Ditto Ditto 01:40PM - 02:20PM Talk Ditto Ditto 02:20PM - 03:00PM Talk Ditto Ditto 03:00PM - 03:40PM Talk Ditto Ditto 03:40PM - 04:30PM Break Ditto Ditto 04:30PM - 05:10PM Panel Discussion 05:10PM - 05:50PM Lightning talks 05:50PM Conclusion/break networking Tea would be served in breaks Please don?t hesitate to suggest alternatives/better options or add to the timline Apart from the timeline we have started a list of documents like drafts of - sponsorship prospectus https://docs.google.com/document/d/1fY52l1V92IM7fhC_Q2yiBEVvMpWuvRWKSRoeB0vMlZA/edit, - List of possible sponsors https://docs.google.com/spreadsheets/d/1bE5yG_Z1t0zpnMt-095nweK3fnM4aq1jSveIrvQHO2E/edit#gid=0 On behalf of PyDelhi, Kind Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From noufal at nibrahim.net.in Wed Nov 18 05:32:11 2015 From: noufal at nibrahim.net.in (Noufal Ibrahim KV) Date: Wed, 18 Nov 2015 16:02:11 +0530 Subject: [PyDelhi] [Inpycon] Proposal for holding next PyConIndia in NCR In-Reply-To: (qua non's message of "Wed, 18 Nov 2015 15:36:57 +0530") References: Message-ID: <87twoj7g44.fsf@nibrahim.net.in> Wow! Excellent work. I'm very much looking forward to visiting Delhi for this. Just one small comment (and I've put this on the google doc too). If a talk ends at 11:30, please start the next one no earlier than 11:40. The crowd will need time to shift between halls and to stretch. Also, it gives the organisers a bit of slack to ready the stage for the next talk. This will, of course, reduce the total time but I think it's better to do it this way rather than to pack it tight and then worry when the schedule slips. -- Cordially, Noufal http://nibrahim.net.in From akshayaurora at gmail.com Wed Nov 18 09:28:51 2015 From: akshayaurora at gmail.com (qua non) Date: Wed, 18 Nov 2015 19:58:51 +0530 Subject: [PyDelhi] [Inpycon] Proposal for holding next PyConIndia in NCR In-Reply-To: References: Message-ID: @noufal the doc has been updated to include a 10 minute gap as you suggested, Hall 1 Hall 2 Hall 3 10:50AM - 11:30AM Talk Ditto Ditto 11:40AM - 12:20PM Talk Ditto Ditto 12:30PM - 1:10PM Talk Ditto Ditto 1:10PM - 01:40PM Lunch Ditto Ditto 01:40PM - 02:20PM Talk Ditto Ditto 02:30PM - 03:10PM Talk Ditto Ditto 03:20PM - 04:00PM Talk Ditto Ditto 04:10PM - 04:40PM Break Ditto Ditto 04:40PM - 05:30PM Panel Discussion 05:10PM - 05:50PM Lightning talks 05:50PM Conclusion/break networking For putting Lightning talks before panel discussions, there are pros and cons of both. We should look at the feedback gotten from last year PyconIndia and base a decision on that. @vijay, krace, was there any feedback related to this? On Wed, Nov 18, 2015 at 7:20 PM, Shakthi Kannan wrote: > Hi, > > --- On Wed, Nov 18, 2015 at 3:36 PM, qua non > wrote: > | 05:10PM - 05:50PM Lightning talks > \-- > > Lightning talks can be scheduled immediately after lunch. It is a > welcome change after the morning talks. > > Late in the evening, people want to wind up quickly and go home after > a long day. > > SK > > -- > Shakthi Kannan > http://www.shakthimaan.com > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -------------- next part -------------- An HTML attachment was scrubbed... URL: From shakthimaan at gmail.com Wed Nov 18 08:50:49 2015 From: shakthimaan at gmail.com (Shakthi Kannan) Date: Wed, 18 Nov 2015 19:20:49 +0530 Subject: [PyDelhi] [Inpycon] Proposal for holding next PyConIndia in NCR In-Reply-To: References: Message-ID: Hi, --- On Wed, Nov 18, 2015 at 3:36 PM, qua non wrote: | 05:10PM - 05:50PM Lightning talks \-- Lightning talks can be scheduled immediately after lunch. It is a welcome change after the morning talks. Late in the evening, people want to wind up quickly and go home after a long day. SK -- Shakthi Kannan http://www.shakthimaan.com From akshayaurora at gmail.com Wed Nov 18 09:51:25 2015 From: akshayaurora at gmail.com (qua non) Date: Wed, 18 Nov 2015 20:21:25 +0530 Subject: [PyDelhi] PyConIndia 2016 date finalisation Message-ID: Hey Folks, The next step if we are to stick to the schedule mentioned above; is date finalization for PyCon India. So we can book the venue in time. I personally would suggest we look for November 12, 13 cause of the weather, early October is still a bit warm in Delhi/NCR and then there are all these festivals rest of october. Looking forward for suggestions and if the date conflicts with exams in colleges etc Kind Regards on behalf of PyDelhi team Akkshay Arora -------------- next part -------------- An HTML attachment was scrubbed... URL: From akshayaurora at gmail.com Wed Nov 18 09:53:00 2015 From: akshayaurora at gmail.com (qua non) Date: Wed, 18 Nov 2015 20:23:00 +0530 Subject: [PyDelhi] PyConIndia 2016 date finalisation In-Reply-To: References: Message-ID: "Schedule mentioned above" is in reference to the mail sent to inpycon earlier and here is the doc in reference https://docs.google.com/document/d/1KsDeIx13Vm6rKfI1AYsxhZ0POK5_XlENO-43erSCexI/edit On Wed, Nov 18, 2015 at 8:21 PM, qua non wrote: > Hey Folks, > > The next step if we are to stick to the schedule mentioned above; is date > finalization for PyCon India. So we can book the venue in time. > > I personally would suggest we look for November 12, 13 cause of the > weather, early October is still a bit warm in Delhi/NCR and then there are > all these festivals rest of october. > > Looking forward for suggestions and if the date conflicts with exams in > colleges etc > > > Kind Regards > on behalf of PyDelhi team > Akkshay Arora > -------------- next part -------------- An HTML attachment was scrubbed... URL: From deshpande.jaidev at gmail.com Wed Nov 18 15:31:08 2015 From: deshpande.jaidev at gmail.com (Jaidev Deshpande) Date: Thu, 19 Nov 2015 02:01:08 +0530 Subject: [PyDelhi] [Inpycon] Proposal for holding next PyConIndia in NCR In-Reply-To: References: Message-ID: On 19 Nov 2015 00:14, "Harsh Gupta" wrote: > > I suggest reducing the duration of the talks. Most of the talks at > PyCon were there to introduces a new tool or technique and 40 minutes > is too long for that. More interested people can always look up > details on the internet or talk to the speaker personally. I was at > SciPy, Austin this summer. Except for the keynote speeches all the > talks at SciPy are of 20 minutes and it works pretty well for them. > Shorter talks will also allow more people to talk and I think this > will be good for everybody. +1 > > On 18 November 2015 at 23:30, Kracekumar Ramaraj wrote: > > [...] > >> > >> For putting Lightning talks before panel discussions, there are pros and > >> cons of both. We should look at the feedback gotten from last year > >> PyconIndia and base a decision on that. @vijay, krace, was there any > >> feedback related to this? > >> > > > > We haven't received any feedback about timing this year and based on 2014 > > feedback we moved to afternoon. > > > > > > -- > > Regards > > Kracekumar Ramaraj > > http://kracekumar.com > > > > _______________________________________________ > > Inpycon mailing list > > Inpycon at python.org > > https://mail.python.org/mailman/listinfo/inpycon > > > > > > -- > Harsh > Sent from a GNU/Linux > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon -------------- next part -------------- An HTML attachment was scrubbed... URL: From noufal at nibrahim.net.in Wed Nov 18 22:12:12 2015 From: noufal at nibrahim.net.in (Noufal Ibrahim KV) Date: Thu, 19 Nov 2015 08:42:12 +0530 Subject: [PyDelhi] [Inpycon] Proposal for holding next PyConIndia in NCR In-Reply-To: (Harsh Gupta's message of "Thu, 19 Nov 2015 00:13:36 +0530") References: Message-ID: <87h9ki65tf.fsf@nibrahim.net.in> On Thu, Nov 19 2015, Harsh Gupta wrote: > I suggest reducing the duration of the talks. Most of the talks at > PyCon were there to introduces a new tool or technique and 40 minutes > is too long for that. More interested people can always look up > details on the internet or talk to the speaker personally. I was at > SciPy, Austin this summer. Except for the keynote speeches all the > talks at SciPy are of 20 minutes and it works pretty well for them. > Shorter talks will also allow more people to talk and I think this > will be good for everybody. [...] The suggestion is sensible. +1 from me. Also, in general, I'm in support of experimenting with things like schedules, talks, tracks etc. Things might go south but if we stick to "the way things always were", we'll never get better. -- Cordially, Noufal http://nibrahim.net.in From me at kracekumar.com Wed Nov 18 13:00:50 2015 From: me at kracekumar.com (Kracekumar Ramaraj) Date: Wed, 18 Nov 2015 23:30:50 +0530 Subject: [PyDelhi] [Inpycon] Proposal for holding next PyConIndia in NCR In-Reply-To: References: Message-ID: [...] > For putting Lightning talks before panel discussions, there are pros and > cons of both. We should look at the feedback gotten from last year > PyconIndia and base a decision on that. @vijay, krace, was there any > feedback related to this? > > We haven't received any feedback about timing this year and based on 2014 feedback we moved to afternoon. -- Regards Kracekumar Ramaraj http://kracekumar.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From gupta.harsh96 at gmail.com Wed Nov 18 13:10:42 2015 From: gupta.harsh96 at gmail.com (Harsh Gupta) Date: Wed, 18 Nov 2015 23:40:42 +0530 Subject: [PyDelhi] [Inpycon] PyConIndia 2016 date finalisation In-Reply-To: References: Message-ID: November 12, 13 will be too close to exams, I fear. At my university, IIT Kharagpur, the end semester exams starts in the third week and as far as I know it is pretty much the same at other IITs and NITs, BIT probably have its end sem in the first week of December and I guess for regional colleges the dates vary from state to state. On 18 November 2015 at 20:23, qua non wrote: > "Schedule mentioned above" is in reference to the mail sent to inpycon > earlier and here is the doc in reference > https://docs.google.com/document/d/1KsDeIx13Vm6rKfI1AYsxhZ0POK5_XlENO-43erSCexI/edit > > On Wed, Nov 18, 2015 at 8:21 PM, qua non wrote: >> >> Hey Folks, >> >> The next step if we are to stick to the schedule mentioned above; is date >> finalization for PyCon India. So we can book the venue in time. >> >> I personally would suggest we look for November 12, 13 cause of the >> weather, early October is still a bit warm in Delhi/NCR and then there are >> all these festivals rest of october. >> >> Looking forward for suggestions and if the date conflicts with exams in >> colleges etc >> >> >> Kind Regards >> on behalf of PyDelhi team >> Akkshay Arora > > > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -- Harsh Sent from a GNU/Linux From gupta.harsh96 at gmail.com Wed Nov 18 13:43:36 2015 From: gupta.harsh96 at gmail.com (Harsh Gupta) Date: Thu, 19 Nov 2015 00:13:36 +0530 Subject: [PyDelhi] [Inpycon] Proposal for holding next PyConIndia in NCR In-Reply-To: References: Message-ID: I suggest reducing the duration of the talks. Most of the talks at PyCon were there to introduces a new tool or technique and 40 minutes is too long for that. More interested people can always look up details on the internet or talk to the speaker personally. I was at SciPy, Austin this summer. Except for the keynote speeches all the talks at SciPy are of 20 minutes and it works pretty well for them. Shorter talks will also allow more people to talk and I think this will be good for everybody. On 18 November 2015 at 23:30, Kracekumar Ramaraj wrote: > [...] >> >> For putting Lightning talks before panel discussions, there are pros and >> cons of both. We should look at the feedback gotten from last year >> PyconIndia and base a decision on that. @vijay, krace, was there any >> feedback related to this? >> > > We haven't received any feedback about timing this year and based on 2014 > feedback we moved to afternoon. > > > -- > Regards > Kracekumar Ramaraj > http://kracekumar.com > > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -- Harsh Sent from a GNU/Linux From mantheshv at gmail.com Wed Nov 18 22:19:59 2015 From: mantheshv at gmail.com (mahanthesh hv) Date: Thu, 19 Nov 2015 08:49:59 +0530 Subject: [PyDelhi] [Inpycon] Proposal for holding next PyConIndia in NCR In-Reply-To: <87h9ki65tf.fsf@nibrahim.net.in> References: <87h9ki65tf.fsf@nibrahim.net.in> Message-ID: hi, 20 min talks is a good suggestion +1 from me regards mahanthesh hv On Nov 19, 2015 8:40 AM, "Noufal Ibrahim KV" wrote: > On Thu, Nov 19 2015, Harsh Gupta wrote: > > > I suggest reducing the duration of the talks. Most of the talks at > > PyCon were there to introduces a new tool or technique and 40 minutes > > is too long for that. More interested people can always look up > > details on the internet or talk to the speaker personally. I was at > > SciPy, Austin this summer. Except for the keynote speeches all the > > talks at SciPy are of 20 minutes and it works pretty well for them. > > Shorter talks will also allow more people to talk and I think this > > will be good for everybody. > > [...] > > The suggestion is sensible. +1 from me. > > Also, in general, I'm in support of experimenting with things like > schedules, talks, tracks etc. Things might go south but if we stick to > "the way things always were", we'll never get better. > > > -- > Cordially, > Noufal > http://nibrahim.net.in > _______________________________________________ > Inpycon mailing list > Inpycon at python.org > https://mail.python.org/mailman/listinfo/inpycon > -------------- next part -------------- An HTML attachment was scrubbed... URL: From akshayaurora at gmail.com Thu Nov 19 16:28:36 2015 From: akshayaurora at gmail.com (qua non) Date: Fri, 20 Nov 2015 02:58:36 +0530 Subject: [PyDelhi] Open Data Camp + Volunteer meet Message-ID: Hey folks, It's now time to pull up our laces and tighten up our stance for finalizing the PyCon India venue. Open Data Camp is holding it's annual camp at CSDS http://odc.datameet.org/odcdelhi2015 Those of us who would be around in the event plan to hold a volunteers meet just after lunch(30 minutes); for discussing :: - The finalization of the venue for PyConIndia . - Finalizing the date and venue for PyDelhi mini conference. If you want to attend the meet, come join us at CSDS. Kind Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From vnbang2003 at gmail.com Sun Nov 22 01:33:04 2015 From: vnbang2003 at gmail.com (vijay kumar) Date: Sun, 22 Nov 2015 12:03:04 +0530 Subject: [PyDelhi] PythonExpress Message-ID: Hi , Am reaching out to community to request help in creating awareness of PythonExpress project. It would be great if you can allocate 5 minutes time slot in your local meetup to speak about PythonExpress. What is PythonExpress? It is an initiative of PSSI to connect Colleges/Organisations with Python tutor/developers in order to conduct workshops in their colleges on various python related topics like Python 101, Web development, Scientific computing, Devops and others. These workshop are conducted free of cost, but we request college/organisation to bare travel and accommodation expense of speakers. I also request local user group to signup as organisation so you can add workshop request when you conduct the workshops as part of the local meetups. College lectures/students in the group can register their college and request for workshops. Please do help by forwarding this email to other FOSS communities you are member of which will help in creating awareness. We are even looking for regional leads to manage the workshop requests based on states. To sign up as regional lead, please use contact us form and provide us your username and email id you used to sign-in in PythonExpress. Please join mailing list[3] and share your suggestions/inputs on how to take it forward. You can follow us on twitter [4] as well. Note: Since this software [2] was an effort of set of volunteers in a short span of time (30 days), it is still not completely stable. Feedback or suggestions are welcome on the website. Request you to raise issues in Github repo[1] [1] GitHub link: https://github.com/pythonindia/wye [2] Website: http://beta.pythonexpress.in [3] Mailing list: http://lists.pssi.org.in/cgi-bin/mailman/listinfo/pythonexpress [4] Twitter: https://twitter.com/pythonexpress/ Apologies for off topic email. With Thanks Vijay -------------- next part -------------- An HTML attachment was scrubbed... URL: From anuvrat at anuvrat.in Sun Nov 22 04:58:44 2015 From: anuvrat at anuvrat.in (Anuvrat Parashar) Date: Sun, 22 Nov 2015 15:28:44 +0530 Subject: [PyDelhi] keynote PyDelhi Conference 2016 Message-ID: Namaskaar sarp-bhashio !! Lets have some nominations for the keynode at PyDelhi Conference 27 Feb, 2016. Please also share a link to the profile of the person being nominated. #crowdsourcing !! Cheers -- Anuvrat Parashar http://anuvrat.in -------------- next part -------------- An HTML attachment was scrubbed... URL: From anuvrat at anuvrat.in Sun Nov 22 05:36:50 2015 From: anuvrat at anuvrat.in (Anuvrat Parashar) Date: Sun, 22 Nov 2015 16:06:50 +0530 Subject: [PyDelhi] keynote PyDelhi Conference 2016 In-Reply-To: References: Message-ID: Apologies, the date is 28th Feb 2016, Sunday. PyDelhi Conference. On Sun, Nov 22, 2015 at 3:28 PM, Anuvrat Parashar wrote: > Namaskaar sarp-bhashio !! > > Lets have some nominations for the keynode at PyDelhi Conference 27 Feb, > 2016. > Please also share a link to the profile of the person being nominated. > > #crowdsourcing !! > > Cheers > -- > Anuvrat Parashar > http://anuvrat.in > > -- Anuvrat Parashar http://anuvrat.in -------------- next part -------------- An HTML attachment was scrubbed... URL: From kracethekingmaker at gmail.com Mon Nov 23 04:23:38 2015 From: kracethekingmaker at gmail.com (kracekumar ramaraju) Date: Mon, 23 Nov 2015 14:53:38 +0530 Subject: [PyDelhi] keynote PyDelhi Conference 2016 In-Reply-To: References: Message-ID: On Sun, Nov 22, 2015 at 3:28 PM, Anuvrat Parashar wrote: > Namaskaar sarp-bhashio !! > > Lets have some nominations for the keynode at PyDelhi Conference 27 Feb, > 2016. > Please also share a link to the profile of the person being nominated. > Should the keynote speaker be from India ? > #crowdsourcing !! > > Cheers > -- > Anuvrat Parashar > http://anuvrat.in > > > _______________________________________________ > https://mail.python.org/mailman/listinfo/ncr-python.in > http://bit.ly/pydelhi-mailinglist-guidelines > -- *Thanks & Regardskracekumar"Talk is cheap, show me the code" -- Linus Torvaldshttp://kracekumar.com * -------------- next part -------------- An HTML attachment was scrubbed... URL: From deshpande.jaidev at gmail.com Mon Nov 23 05:46:38 2015 From: deshpande.jaidev at gmail.com (Jaidev Deshpande) Date: Mon, 23 Nov 2015 16:16:38 +0530 Subject: [PyDelhi] keynote PyDelhi Conference 2016 In-Reply-To: References: Message-ID: On Mon, Nov 23, 2015 at 2:53 PM, kracekumar ramaraju < kracethekingmaker at gmail.com> wrote: > > > On Sun, Nov 22, 2015 at 3:28 PM, Anuvrat Parashar > wrote: > >> Namaskaar sarp-bhashio !! >> >> Lets have some nominations for the keynode at PyDelhi Conference 27 Feb, >> 2016. >> Please also share a link to the profile of the person being nominated. >> > > Should the keynote speaker be from India ? > Not necessarily, but I propose that the speaker should be living in India. As PyDelhi is a miniconf, I don't think it's worthwhile trying to get a speaker from abroad. > > >> #crowdsourcing !! >> >> Cheers >> -- >> Anuvrat Parashar >> http://anuvrat.in >> >> >> _______________________________________________ >> https://mail.python.org/mailman/listinfo/ncr-python.in >> http://bit.ly/pydelhi-mailinglist-guidelines >> > > > > -- > > *Thanks & Regardskracekumar"Talk is cheap, show me the code" -- Linus > Torvaldshttp://kracekumar.com * > > _______________________________________________ > https://mail.python.org/mailman/listinfo/ncr-python.in > http://bit.ly/pydelhi-mailinglist-guidelines > -- JD -------------- next part -------------- An HTML attachment was scrubbed... URL: From 404rajat at gmail.com Wed Nov 25 07:54:48 2015 From: 404rajat at gmail.com (Rajat Goyal) Date: Wed, 25 Nov 2015 18:24:48 +0530 Subject: [PyDelhi] Finalized talk, workshop and venue for Meetup on 28th Message-ID: Hi It's Wednesday, and it's time to announce the finalised talk and workshop for our meetup on 28th. A two hour workshop will be conducted by Anuvrat Parashar & Rajat Goyal on "Mastering Datetime in Python" We'll have a 30mins talk by Jaidev Deshpande on "Basics of Recommendation Systems". The venue is sponsored by SocialCops. You can find the details on how to reach there and the complete schedule of the event at our meetup page.[1] Looking forward to see you all. [1]:http://www.meetup.com/pydelhi/events/226049198/ Rajat Goyal http://rajat404.me/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From gora at mimirtech.com Wed Nov 25 10:07:21 2015 From: gora at mimirtech.com (Gora Mohanty) Date: Wed, 25 Nov 2015 20:37:21 +0530 Subject: [PyDelhi] Finalized talk, workshop and venue for Meetup on 28th In-Reply-To: References: Message-ID: On 25 November 2015 at 18:24, Rajat Goyal <404rajat at gmail.com> wrote: > > Hi > > It's Wednesday, and it's time to announce the finalised talk and workshop for our meetup on 28th. > > A two hour workshop will be conducted by Anuvrat Parashar & Rajat Goyal on "Mastering Datetime in Python" Just curious: What would be covered that would take two hours? Regards, Gora From anuvrat at anuvrat.in Thu Nov 26 01:41:52 2015 From: anuvrat at anuvrat.in (Anuvrat Parashar) Date: Thu, 26 Nov 2015 12:11:52 +0530 Subject: [PyDelhi] Finalized talk, workshop and venue for Meetup on 28th In-Reply-To: References: Message-ID: On Wed, Nov 25, 2015 at 8:37 PM, Gora Mohanty wrote: > On 25 November 2015 at 18:24, Rajat Goyal <404rajat at gmail.com> wrote: > > > > Hi > > > > It's Wednesday, and it's time to announce the finalised talk and > workshop for our meetup on 28th. > > > > A two hour workshop will be conducted by Anuvrat Parashar & Rajat Goyal > on "Mastering Datetime in Python" > > Just curious: What would be covered that would take two hours? > We have had many beginner level workshops now where we skim off the surface talking about various APIs. The plan is to dive a little deeper and see under the hood as to how those functions work. You know, read the source in python's standard library - one module at a time. Regards, > Gora > _______________________________________________ > https://mail.python.org/mailman/listinfo/ncr-python.in > http://bit.ly/pydelhi-mailinglist-guidelines > -- Anuvrat Parashar http://anuvrat.in -------------- next part -------------- An HTML attachment was scrubbed... URL: From shreya2105 at gmail.com Thu Nov 26 01:07:35 2015 From: shreya2105 at gmail.com (Shreya Agarwal) Date: Thu, 26 Nov 2015 01:07:35 -0500 Subject: [PyDelhi] Scraping js page Message-ID: Hi, I am new to programming. I need help in scraping a webpage written in java script. Are there specific libraries that are more effective than the others in crawling js pages? Appreciate your help. Thanks, Shreya -------------- next part -------------- An HTML attachment was scrubbed... URL: From gora at mimirtech.com Thu Nov 26 02:38:02 2015 From: gora at mimirtech.com (Gora Mohanty) Date: Thu, 26 Nov 2015 13:08:02 +0530 Subject: [PyDelhi] Scraping js page In-Reply-To: References: Message-ID: Hi, You will need a Javascript engine to parse the content; something like Selenium or phantomjs. Try searching Google for "scrape javascript generated content python" for ideas to get you started. Regards, Gora On 26 November 2015 at 11:37, Shreya Agarwal wrote: > Hi, I am new to programming. I need help in scraping a webpage written in > java script. Are there specific libraries that are more effective than the > others in crawling js pages? > > Appreciate your help. > > Thanks, > > Shreya > > > _______________________________________________ > https://mail.python.org/mailman/listinfo/ncr-python.in > http://bit.ly/pydelhi-mailinglist-guidelines From sanyam.khurana01 at gmail.com Thu Nov 26 02:45:31 2015 From: sanyam.khurana01 at gmail.com (Sanyam Khurana) Date: Thu, 26 Nov 2015 13:15:31 +0530 Subject: [PyDelhi] Thursday Meet Reminder Message-ID: Hi Pythonistas! It's thursday and we'll have our virtual meet today at 9:00 PM on hangouts! Please find the link here to join the call: https://goo.gl/LJtWZG Hope to see you all there! Regards, Sanyam Khurana -- www.SanyamKhurana.net Github: CuriousLearner -------------- next part -------------- An HTML attachment was scrubbed... URL: From sanyam.khurana01 at gmail.com Thu Nov 26 00:16:11 2015 From: sanyam.khurana01 at gmail.com (Sanyam Khurana) Date: Thu, 26 Nov 2015 10:46:11 +0530 Subject: [PyDelhi] Thursday Meet Reminder Message-ID: Hi Pythonistas! It's thursday and we'll have our virtual meet today at 9:00 PM on hangouts! Please find the link here to join the call: https://goo.gl/LJtWZG Hope to see you all there! Regards, Sanyam Khurana -- www.SanyamKhurana.net Github: CuriousLearner -------------- next part -------------- An HTML attachment was scrubbed... URL: