From chinnamanaiduece at gmail.com Thu Dec 1 03:55:00 2016 From: chinnamanaiduece at gmail.com (PONNANA CHINNAMA NAIDU) Date: Thu, 1 Dec 2016 14:25:00 +0530 Subject: [pydotorg-www] problem with classes and objects in python 2.7.5 version Message-ID: hi sir i am getting error while i execute the code related to the classes and objects.what its showing is "constructor can not take the arguments". please tell me the solution -------------- next part -------------- An HTML attachment was scrubbed... URL: From mats at wichmann.us Thu Dec 1 09:40:49 2016 From: mats at wichmann.us (Mats Wichmann) Date: Thu, 1 Dec 2016 07:40:49 -0700 Subject: [pydotorg-www] problem with classes and objects in python 2.7.5 version In-Reply-To: References: Message-ID: On 12/01/2016 01:55 AM, PONNANA CHINNAMA NAIDU wrote: > hi sir > i am getting error while i execute the code related to the classes > and objects.what its showing is "constructor can not take the arguments". > please tell me the solution Hopefully the resources in the autoreply will give you places to pursue this question. When you do, please include more information than you do above - like a small code snippet. In my experience, the error you cite happens when python doesn't find the __init__ method in your class, you might check you spelled it correctly (double underscores on each end). From adamarthurryan at gmail.com Thu Dec 1 13:22:55 2016 From: adamarthurryan at gmail.com (Adam Brown) Date: Thu, 1 Dec 2016 13:22:55 -0500 Subject: [pydotorg-www] editor privlidges for wiki In-Reply-To: References: Message-ID: Thanks Chris! On Tue, Nov 29, 2016 at 9:46 PM, Chris Angelico wrote: > On Wed, Nov 30, 2016 at 8:54 AM, Adam Brown > wrote: > > Thanks! I'll be sure not to be crass about it. I'm happy to just add our > > site to the bottom of the list. :) > > > > My user name is AdamBrown. > > > > Sorry for the delay - was busy with work. > > You should now be an editor. All the best! > > ChrisA > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sebastien.aubry31 at gmail.com Fri Dec 2 06:29:02 2016 From: sebastien.aubry31 at gmail.com (=?UTF-8?Q?S=C3=A9bastien_Aubry?=) Date: Fri, 2 Dec 2016 12:29:02 +0100 Subject: [pydotorg-www] Python.org - Performance tips page - Avoiding dots section - Question Message-ID: Hi, I have read the part about "Avoiding dots " on the python.org Performance tips web page. Even if I understand the concept, I wanted to check the example and ran the attached program. It shows the "optimized" example to be slower than the non-optimized one. Who could I discuss that issue with? Thank you very much Regards S?bastien Aubry -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: t.py Type: text/x-python Size: 438 bytes Desc: not available URL: From rosuav at gmail.com Fri Dec 2 06:31:14 2016 From: rosuav at gmail.com (Chris Angelico) Date: Fri, 2 Dec 2016 22:31:14 +1100 Subject: [pydotorg-www] Python.org - Performance tips page - Avoiding dots section - Question In-Reply-To: References: Message-ID: On Fri, Dec 2, 2016 at 10:29 PM, S?bastien Aubry wrote: > > I have read the part about "Avoiding dots" on the python.org Performance > tips web page. > > Even if I understand the concept, I wanted to check the example and ran the > attached program. It shows the "optimized" example to be slower than the > non-optimized one. > > Who could I discuss that issue with? > Best would be to start a discussion on the main python-list at python.org mailing list. There is a LOT to discover about optimization and timing, and very few of us are experts, but most of us know how very inexpert we are :) ChrisA From steve at holdenweb.com Fri Dec 2 07:14:30 2016 From: steve at holdenweb.com (Steve Holden) Date: Fri, 2 Dec 2016 12:14:30 +0000 Subject: [pydotorg-www] Python.org - Performance tips page - Avoiding dots section - Question In-Reply-To: References: Message-ID: On Fri, Dec 2, 2016 at 11:31 AM, Chris Angelico wrote: > Best would be to start a discussion on the main python-list at python.org > mailing list. There is a LOT to discover about optimization and > timing, and very few of us are experts, but most of us know how very > inexpert we are :) > Also, remember that premature optimization is the root of all evil in programming! The kind of gains to be expected by hoisting attribute lookups out of the loop will usually be lost in the noise compared with gains to be made from use of superior algorithms (often involving refactoring inappropriate data structures). In the particular code you submitted I saw that the "optimized" version is about 10% slower than the "non-optimzed" version. Until you get your algorithm correct, it's hardly worth worrying about. After all, the Pythonic way to create the value you want is simply "WORD" * 100000 Here's the output from an updated program where the third function simply computes that expression: python3 /tmp/times.py 2.358054072014056 2.167076243989868 0.002145289006875828 It seems to me that proves the point exactly: focus on efficient algorithms! I understand you may simply be exploring python's behaviour, which is great, but as far as production work goes, the old saw is true: "First, make your program work; then, if it doesn't work fast enough, make it work faster" regards Steve Steve Holden -------------- next part -------------- An HTML attachment was scrubbed... URL: From sebastien.aubry31 at gmail.com Fri Dec 2 07:32:24 2016 From: sebastien.aubry31 at gmail.com (=?UTF-8?Q?S=C3=A9bastien_Aubry?=) Date: Fri, 2 Dec 2016 13:32:24 +0100 Subject: [pydotorg-www] Python.org - Performance tips page - Avoiding dots section - Question In-Reply-To: References: Message-ID: Hi, I have updated my example, so that it exactly matches the website. Now it is Ok. I don't see what was wrong in my first example. Regards S?bastien > Hi, > Thank you for your replies. > > I fully understand your point, Steve, and agree with it, but I just wanted > to check if one should really "Avoid dots" as suggested on the Python > website itself. I wonder if this section should not be removed, since the > given example itself is wrong (I mean slower). > I will post this message on the mailing list, > > Regards > > 2016-12-02 13:14 GMT+01:00 Steve Holden : > >> On Fri, Dec 2, 2016 at 11:31 AM, Chris Angelico wrote: >> >>> Best would be to start a discussion on the main python-list at python.org >>> mailing list. There is a LOT to discover about optimization and >>> timing, and very few of us are experts, but most of us know how very >>> inexpert we are :) >>> >> >> Also, remember that premature optimization is the root of all evil in >> programming! The kind of gains to be expected by hoisting attribute lookups >> out of the loop will usually be lost in the noise compared with gains to be >> made from use of superior algorithms (often involving refactoring >> inappropriate data structures). >> >> In the particular code you submitted I saw that the "optimized" version >> is about 10% slower than the "non-optimzed" version. Until you get your >> algorithm correct, it's hardly worth worrying about. After all, the >> Pythonic way to create the value you want is simply >> >> "WORD" * 100000 >> >> Here's the output from an updated program where the third function simply >> computes that expression: >> >> python3 /tmp/times.py >> 2.358054072014056 >> 2.167076243989868 >> 0.002145289006875828 >> >> It seems to me that proves the point exactly: focus on efficient >> algorithms! >> >> I understand you may simply be exploring python's behaviour, which is >> great, but as far as production work goes, the old saw is true: >> >> "First, make your program work; then, if it doesn't work fast enough, >> make it work faster" >> >> regards >> Steve >> >> Steve Holden >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: t.py Type: text/x-python Size: 469 bytes Desc: not available URL: From fenn at alum.wpi.edu Fri Dec 2 16:09:45 2016 From: fenn at alum.wpi.edu (Fenn) Date: Fri, 2 Dec 2016 21:09:45 +0000 Subject: [pydotorg-www] New user Interested in adding content to wiki Message-ID: I would like to add some information to the wiki.python.org page here: https://wiki.python.org/moin/WindowsCompilers about MSYS2 ? I know that Guido and the primary python developers prefer VC++ but a little variety cannot hurt and might help. MSYS2 has a nice set of tools around gcc, and both a cygwin-like python and mingw python distro for both python2 and python3. The info on this is kind of hard to find so I thought I might help both communities by adding it to the wiki. I just created the new user BrianFennell but the front page documentation said that I should write to this list requesting permissions. Brian Fennell -- Brian Fennell, Software Engineer - Radial (formerly eBay Enterprise) From rosuav at gmail.com Fri Dec 2 16:32:40 2016 From: rosuav at gmail.com (Chris Angelico) Date: Sat, 3 Dec 2016 08:32:40 +1100 Subject: [pydotorg-www] New user Interested in adding content to wiki In-Reply-To: References: Message-ID: On Sat, Dec 3, 2016 at 8:09 AM, Fenn wrote: > I would like to add some information to the wiki.python.org page here: > > https://wiki.python.org/moin/WindowsCompilers > > about MSYS2 ? I know that Guido and the primary python developers > prefer VC++ but a little variety cannot hurt and might help. MSYS2 > has a nice set of tools around gcc, and both a cygwin-like python and > mingw python distro for both python2 and python3. The info on this is > kind of hard to find so I thought I might help both communities by > adding it to the wiki. > > I just created the new user BrianFennell but the front page > documentation said that I should write to this list requesting > permissions. Yes, that's correct. We're the anti-spam and anti-bot brigade - a sort of "super-captcha" that has had a fairly good success rate to date :) I've made you an editor. Have at it! ChrisA From fenn at alum.wpi.edu Fri Dec 2 16:42:21 2016 From: fenn at alum.wpi.edu (Fenn) Date: Fri, 2 Dec 2016 21:42:21 +0000 Subject: [pydotorg-www] New user Interested in adding content to wiki In-Reply-To: <19357_1480714369_uB2LWmol002754_CAPTjJmrsMArX-xJkU7ozN-nuqvLgOTk8DKJx+rfPVhPiSX7FUA@mail.gmail.com> References: <19357_1480714369_uB2LWmol002754_CAPTjJmrsMArX-xJkU7ozN-nuqvLgOTk8DKJx+rfPVhPiSX7FUA@mail.gmail.com> Message-ID: Thanks, Chris! On 12/2/16, Chris Angelico wrote: > On Sat, Dec 3, 2016 at 8:09 AM, Fenn wrote: >> I would like to add some information to the wiki.python.org page here: >> >> https://wiki.python.org/moin/WindowsCompilers >> >> about MSYS2 ? I know that Guido and the primary python developers >> prefer VC++ but a little variety cannot hurt and might help. MSYS2 >> has a nice set of tools around gcc, and both a cygwin-like python and >> mingw python distro for both python2 and python3. The info on this is >> kind of hard to find so I thought I might help both communities by >> adding it to the wiki. >> >> I just created the new user BrianFennell but the front page >> documentation said that I should write to this list requesting >> permissions. > > Yes, that's correct. We're the anti-spam and anti-bot brigade - a sort > of "super-captcha" that has had a fairly good success rate to date :) > > I've made you an editor. Have at it! > > ChrisA > From greg at krypto.org Mon Dec 5 17:20:43 2016 From: greg at krypto.org (Gregory P. Smith) Date: Mon, 05 Dec 2016 22:20:43 +0000 Subject: [pydotorg-www] add GregoryPSmith to wiki.python.org EditorsGroup please Message-ID: Please grant me edit access... I want to update the Templating wiki. but i'm also a core developer so being able to edit things seems like a good idea in general. username: GregoryPSmith thanks, -gps -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosuav at gmail.com Mon Dec 5 17:27:34 2016 From: rosuav at gmail.com (Chris Angelico) Date: Tue, 6 Dec 2016 09:27:34 +1100 Subject: [pydotorg-www] add GregoryPSmith to wiki.python.org EditorsGroup please In-Reply-To: References: Message-ID: On Tue, Dec 6, 2016 at 9:20 AM, Gregory P. Smith wrote: > Please grant me edit access... > > I want to update the Templating wiki. but i'm also a core developer so > being able to edit things seems like a good idea in general. > > username: GregoryPSmith Yep, no probs. I know you from python-dev, so there's doubt about legitimacy, but we ask about a specific edit for the sake of the general case. Editor access has been granted. Have at it! ChrisA From eeshah at packtpub.com Tue Dec 6 05:36:26 2016 From: eeshah at packtpub.com (Eesha Harish) Date: Tue, 6 Dec 2016 10:36:26 +0000 (GMT) Subject: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter In-Reply-To: <27049524.733.1481019346202.JavaMail.eeshah@PPMUM13CPU0149> Message-ID: <28336976.797.1481020722044.JavaMail.eeshah@PPMUM13CPU0149> Hi Team, My name is Eesha Harish and I work with Packt. As I was browsing through https://wiki.python.org/moin/TkInter I found one of our books listed under the 'Documentation' section. Packt has recently published a new video on Tkinter - Tkinter GUI Application Development Projects [Video] It would be great to have this video featured on - https://wiki.python.org/moin/TkInter under the Documentation section as it would be of great help to the community. We already list our products on https://wiki.python.org/moin/AdvancedBooks and https://wiki.python.org/moin/IntroductoryBooks But I am unable to edit 'Tkinter' page. I would be great if you could provide an access to edit this page. Here are the account details: Account name : PacktPublishing Email ID: partners at packtpub.com Looking forward to your reply. Thanks in advance. Eesha Eesha Harish Key Partner Executive Skype: packt.eeshah www.packtpub.com Packt Publishing Private Limited. Registered Address: Plot No. 103, Arena House, 3rd Floor, Road No.12, Opp. Goldfinch Hotel, MIDC, Andheri East, Mumbai 400093. CIN:U22100MH2005PTC152766 This E-mail is confidential. It may also be legally privileged. If you are not the addressee you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return E-mail. Whilst Packt Publishing Ltd take every reasonable precaution to avoid the transfer of software viruses or defects that may cause damage to computer systems; it is the responsibility of the recipient to ensure that all emails and attachments received are free from infection. -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosuav at gmail.com Tue Dec 6 06:02:58 2016 From: rosuav at gmail.com (Chris Angelico) Date: Tue, 6 Dec 2016 22:02:58 +1100 Subject: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter In-Reply-To: <28336976.797.1481020722044.JavaMail.eeshah@PPMUM13CPU0149> References: <27049524.733.1481019346202.JavaMail.eeshah@PPMUM13CPU0149> <28336976.797.1481020722044.JavaMail.eeshah@PPMUM13CPU0149> Message-ID: On Tue, Dec 6, 2016 at 9:36 PM, Eesha Harish wrote: > > We already list our products on https://wiki.python.org/moin/AdvancedBooks and https://wiki.python.org/moin/IntroductoryBooks > But I am unable to edit 'Tkinter' page. I would be great if you could provide an access to edit this page. The page was protected back in 2014 in response to massive spam. M-A, does it need to remain protected, or can that directive be dropped now that we're guarding editors differently? ChrisA From mal at python.org Tue Dec 6 08:49:23 2016 From: mal at python.org (M.-A. Lemburg) Date: Tue, 6 Dec 2016 14:49:23 +0100 Subject: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter In-Reply-To: References: <27049524.733.1481019346202.JavaMail.eeshah@PPMUM13CPU0149> <28336976.797.1481020722044.JavaMail.eeshah@PPMUM13CPU0149> Message-ID: On 06.12.2016 12:02, Chris Angelico wrote: > On Tue, Dec 6, 2016 at 9:36 PM, Eesha Harish wrote: >> >> We already list our products on https://wiki.python.org/moin/AdvancedBooks and https://wiki.python.org/moin/IntroductoryBooks >> But I am unable to edit 'Tkinter' page. I would be great if you could provide an access to edit this page. > > The page was protected back in 2014 in response to massive spam. M-A, > does it need to remain protected, or can that directive be dropped now > that we're guarding editors differently? I think we can drop the protection on that page. At the same time, I don't think that Packt should be adding their book links to more pages on the wiki. The two book pages already mostly list Packt books and hardly any of the alternatives. -- Marc-Andre Lemburg Python Software Foundation http://www.python.org/psf/ http://www.malemburg.com/ From eeshah at packtpub.com Tue Dec 6 22:41:16 2016 From: eeshah at packtpub.com (Eesha Harish) Date: Wed, 7 Dec 2016 03:41:16 +0000 (GMT) Subject: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter In-Reply-To: References: <27049524.733.1481019346202.JavaMail.eeshah@PPMUM13CPU0149> <28336976.797.1481020722044.JavaMail.eeshah@PPMUM13CPU0149> Message-ID: <11732116.938.1481081563783.JavaMail.eeshah@PPMUM13CPU0149> Hi Chris/Marc, Nice to e-meet you and thanks for your reply. I think listing packt books on the page is helping the community in their learning and development. And since Packt has the older version of Tkinter on that page it would be great to have the updated version on the same page. I would be very happy to provide you with a review copy, if you wish to go through the video before sharing it with the community. Let me know your thoughts on this. Thanks & Regards Eesha Eesha Harish Key Partner Executive Skype: packt.eeshah www.packtpub.com Packt Publishing Private Limited. Registered Address: Plot No. 103, Arena House, 3rd Floor, Road No.12, Opp. Goldfinch Hotel, MIDC, Andheri East, Mumbai 400093. CIN:U22100MH2005PTC152766 This E-mail is confidential. It may also be legally privileged. If you are not the addressee you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return E-mail. Whilst Packt Publishing Ltd take every reasonable precaution to avoid the transfer of software viruses or defects that may cause damage to computer systems; it is the responsibility of the recipient to ensure that all emails and attachments received are free from infection. ----- Original Message ----- From: "M.-A. Lemburg" To: "Chris Angelico" , "Eesha Harish" Cc: pydotorg-www at python.org Sent: Tuesday, December 6, 2016 7:19:23 PM Subject: Re: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter On 06.12.2016 12:02, Chris Angelico wrote: > On Tue, Dec 6, 2016 at 9:36 PM, Eesha Harish wrote: >> >> We already list our products on https://wiki.python.org/moin/AdvancedBooks and https://wiki.python.org/moin/IntroductoryBooks >> But I am unable to edit 'Tkinter' page. I would be great if you could provide an access to edit this page. > > The page was protected back in 2014 in response to massive spam. M-A, > does it need to remain protected, or can that directive be dropped now > that we're guarding editors differently? I think we can drop the protection on that page. At the same time, I don't think that Packt should be adding their book links to more pages on the wiki. The two book pages already mostly list Packt books and hardly any of the alternatives. -- Marc-Andre Lemburg Python Software Foundation http://www.python.org/psf/ http://www.malemburg.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From dimitrios at karolidis.gr Fri Dec 9 13:55:46 2016 From: dimitrios at karolidis.gr (=?iso-8859-7?B?xOfs3vTx6e/yIMrh8e/r3+Tn8g==?=) Date: Fri, 9 Dec 2016 20:55:46 +0200 Subject: [pydotorg-www] DimitriosKarolidis Message-ID: <003201d2524d$da1dc830$8e595890$@karolidis.gr> Please add me to the EditorsGroup -------------- next part -------------- An HTML attachment was scrubbed... URL: From mal at python.org Fri Dec 9 14:19:20 2016 From: mal at python.org (M.-A. Lemburg) Date: Fri, 9 Dec 2016 20:19:20 +0100 Subject: [pydotorg-www] DimitriosKarolidis In-Reply-To: <003201d2524d$da1dc830$8e595890$@karolidis.gr> References: <003201d2524d$da1dc830$8e595890$@karolidis.gr> Message-ID: <5730ef2f-bd97-e5f5-be46-62ed81beb3d7@python.org> On 09.12.2016 19:55, ????????? ????????? wrote: > Please add me to the EditorsGroup Could you please let us know what you would like to edit ? Thanks, -- Marc-Andre Lemburg Python Software Foundation http://www.python.org/psf/ http://www.malemburg.com/ From mal at python.org Fri Dec 9 14:50:01 2016 From: mal at python.org (M.-A. Lemburg) Date: Fri, 9 Dec 2016 20:50:01 +0100 Subject: [pydotorg-www] DimitriosKarolidis In-Reply-To: References: Message-ID: <4e8607a2-ac41-b2f1-d1dc-3c2b31a53ff8@python.org> On 09.12.2016 20:27, ????????? ????????? wrote: > I want to add a python book in Greek language. Ok, I added you as editor. -- Marc-Andre Lemburg Python Software Foundation http://www.python.org/psf/ http://www.malemburg.com/ From steve at holdenweb.com Fri Dec 9 16:27:51 2016 From: steve at holdenweb.com (Steve Holden) Date: Fri, 9 Dec 2016 21:27:51 +0000 Subject: [pydotorg-www] DimitriosKarolidis In-Reply-To: <4e8607a2-ac41-b2f1-d1dc-3c2b31a53ff8@python.org> References: <4e8607a2-ac41-b2f1-d1dc-3c2b31a53ff8@python.org> Message-ID: Thanks, Marc-Andr? - and thanks for adding your effort to the Python community in non-English languages, ????????? - welcome to another part the Python community (or another community, depending on how you look at it: general systemsntheory would hold either view as equally valid, I suspect). regards Steve Steve Holden On Fri, Dec 9, 2016 at 7:50 PM, M.-A. Lemburg wrote: > On 09.12.2016 20:27, ????????? ????????? wrote: > > I want to add a python book in Greek language. > > Ok, I added you as editor. > > -- > Marc-Andre Lemburg > Python Software Foundation > http://www.python.org/psf/ > http://www.malemburg.com/ > _______________________________________________ > pydotorg-www mailing list > pydotorg-www at python.org > https://mail.python.org/mailman/listinfo/pydotorg-www > -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve at holdenweb.com Fri Dec 9 16:54:19 2016 From: steve at holdenweb.com (Steve Holden) Date: Fri, 9 Dec 2016 21:54:19 +0000 Subject: [pydotorg-www] [Webmaster] Wrong latest 2.7 link In-Reply-To: <8dfe8f23-c4cf-61d9-be15-f609dddee23d@wichmann.us> References: <8dfe8f23-c4cf-61d9-be15-f609dddee23d@wichmann.us> Message-ID: I suspect this is pydotorg business. Don't ask me why my mail client apparently thinks that their email address is called "Food" ... S Steve Holden On Fri, Dec 9, 2016 at 9:39 PM, Mats Wichmann wrote: > On 12/07/2016 07:46 PM, Vaclav Petras wrote: > > Hi, > > > > the link at > > > > https://www.python.org/download/releases/2.7/ > > > > is for 2.7.11 not 2.7.12. > > > > I know next release will be soon. But still. > > > > Vaclav > > thanks! > > could you perhaps file a ticket on this? Someone on this list probably > knows where those links come from, I couldn't see it at a quick glance. > > https://github.com/python/pythondotorg/issues > _______________________________________________ > Webmaster mailing list > Webmaster at python.org > https://mail.python.org/mailman/listinfo/webmaster > -------------- next part -------------- An HTML attachment was scrubbed... URL: From berker.peksag at gmail.com Fri Dec 9 17:59:04 2016 From: berker.peksag at gmail.com (=?UTF-8?Q?Berker_Peksa=C4=9F?=) Date: Sat, 10 Dec 2016 01:59:04 +0300 Subject: [pydotorg-www] [Webmaster] Wrong latest 2.7 link In-Reply-To: References: <8dfe8f23-c4cf-61d9-be15-f609dddee23d@wichmann.us> Message-ID: On Sat, Dec 10, 2016 at 12:54 AM, Steve Holden wrote: > I suspect this is pydotorg business. Don't ask me why my mail client > apparently thinks that their email address is called "Food" ... S > > Steve Holden > > On Fri, Dec 9, 2016 at 9:39 PM, Mats Wichmann wrote: >> >> On 12/07/2016 07:46 PM, Vaclav Petras wrote: >> > Hi, >> > >> > the link at >> > >> > https://www.python.org/download/releases/2.7/ >> > >> > is for 2.7.11 not 2.7.12. >> > >> > I know next release will be soon. But still. >> > >> > Vaclav >> >> thanks! >> >> could you perhaps file a ticket on this? Someone on this list probably >> knows where those links come from, I couldn't see it at a quick glance. >> >> https://github.com/python/pythondotorg/issues Thanks for the report! I've now updated the link to 2.7.12. --Berker From wenzeslaus at gmail.com Fri Dec 9 19:33:13 2016 From: wenzeslaus at gmail.com (Vaclav Petras) Date: Fri, 9 Dec 2016 19:33:13 -0500 Subject: [pydotorg-www] [Webmaster] Wrong latest 2.7 link In-Reply-To: References: <8dfe8f23-c4cf-61d9-be15-f609dddee23d@wichmann.us> Message-ID: On Fri, Dec 9, 2016 at 5:59 PM, Berker Peksa? wrote: > >> thanks! > >> > >> could you perhaps file a ticket on this? Someone on this list probably > >> knows where those links come from, I couldn't see it at a quick glance. > >> > >> https://github.com/python/pythondotorg/issues > Thanks. I missed that link on the website (although got it later), but I see it now, so probably just not reading carefully enough. > > Thanks for the report! I've now updated the link to 2.7.12. Great, thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bla at ukrhosting.com Fri Dec 9 19:04:54 2016 From: bla at ukrhosting.com (=?utf-8?Q?=D0=9C=D0=B0=D1=80=D0=B8=D1=8F_=D0=92=D0=BB=D0?= =?utf-8?Q?=B0=D0=B4=D0=B8=D0=BC=D0=B8=D1=80=D0=BE=D0=B2?= =?utf-8?Q?=D0=BD=D0=B0?=) Date: Sat, 10 Dec 2016 01:04:54 +0100 Subject: [pydotorg-www] =?utf-8?b?0J7RhNC40YHQvdCw0Y8g0LbQuNC30L3RjCDQtNC+?= =?utf-8?b?0YHRgtCw0LvQsD8=?= Message-ID: <778DC1ADAA7E52C11D1851EFAB78D7A4@ukrhosting.com> An HTML attachment was scrubbed... URL: From eeshah at packtpub.com Mon Dec 12 23:02:59 2016 From: eeshah at packtpub.com (Eesha Harish) Date: Tue, 13 Dec 2016 04:02:59 +0000 (GMT) Subject: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter In-Reply-To: <11732116.938.1481081563783.JavaMail.eeshah@PPMUM13CPU0149> References: <27049524.733.1481019346202.JavaMail.eeshah@PPMUM13CPU0149> <28336976.797.1481020722044.JavaMail.eeshah@PPMUM13CPU0149> <11732116.938.1481081563783.JavaMail.eeshah@PPMUM13CPU0149> Message-ID: <28770691.323.1481601912471.JavaMail.eeshah@PPMUM13CPU0149> Hi Chris/Marc, Just following to know your thoughts on my previous email. Regards Eesha Eesha Harish Key Partner Executive Skype: packt.eeshah www.packtpub.com Packt Publishing Private Limited. Registered Address: Plot No. 103, Arena House, 3rd Floor, Road No.12, Opp. Goldfinch Hotel, MIDC, Andheri East, Mumbai 400093. CIN:U22100MH2005PTC152766 This E-mail is confidential. It may also be legally privileged. If you are not the addressee you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return E-mail. Whilst Packt Publishing Ltd take every reasonable precaution to avoid the transfer of software viruses or defects that may cause damage to computer systems; it is the responsibility of the recipient to ensure that all emails and attachments received are free from infection. ----- Original Message ----- From: "Eesha Harish" To: "M.-A. Lemburg" Cc: pydotorg-www at python.org, "Chris Angelico" Sent: Wednesday, December 7, 2016 9:11:16 AM Subject: Re: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter Hi Chris/Marc, Nice to e-meet you and thanks for your reply. I think listing packt books on the page is helping the community in their learning and development. And since Packt has the older version of Tkinter on that page it would be great to have the updated version on the same page. I would be very happy to provide you with a review copy, if you wish to go through the video before sharing it with the community. Let me know your thoughts on this. Thanks & Regards Eesha Eesha Harish Key Partner Executive Skype: packt.eeshah www.packtpub.com Packt Publishing Private Limited. Registered Address: Plot No. 103, Arena House, 3rd Floor, Road No.12, Opp. Goldfinch Hotel, MIDC, Andheri East, Mumbai 400093. CIN:U22100MH2005PTC152766 This E-mail is confidential. It may also be legally privileged. If you are not the addressee you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return E-mail. Whilst Packt Publishing Ltd take every reasonable precaution to avoid the transfer of software viruses or defects that may cause damage to computer systems; it is the responsibility of the recipient to ensure that all emails and attachments received are free from infection. ----- Original Message ----- From: "M.-A. Lemburg" To: "Chris Angelico" , "Eesha Harish" Cc: pydotorg-www at python.org Sent: Tuesday, December 6, 2016 7:19:23 PM Subject: Re: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter On 06.12.2016 12:02, Chris Angelico wrote: > On Tue, Dec 6, 2016 at 9:36 PM, Eesha Harish wrote: >> >> We already list our products on https://wiki.python.org/moin/AdvancedBooks and https://wiki.python.org/moin/IntroductoryBooks >> But I am unable to edit 'Tkinter' page. I would be great if you could provide an access to edit this page. > > The page was protected back in 2014 in response to massive spam. M-A, > does it need to remain protected, or can that directive be dropped now > that we're guarding editors differently? I think we can drop the protection on that page. At the same time, I don't think that Packt should be adding their book links to more pages on the wiki. The two book pages already mostly list Packt books and hardly any of the alternatives. -- Marc-Andre Lemburg Python Software Foundation http://www.python.org/psf/ http://www.malemburg.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mal at python.org Tue Dec 13 05:54:48 2016 From: mal at python.org (M.-A. Lemburg) Date: Tue, 13 Dec 2016 11:54:48 +0100 Subject: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter In-Reply-To: <28770691.323.1481601912471.JavaMail.eeshah@PPMUM13CPU0149> References: <27049524.733.1481019346202.JavaMail.eeshah@PPMUM13CPU0149> <28336976.797.1481020722044.JavaMail.eeshah@PPMUM13CPU0149> <11732116.938.1481081563783.JavaMail.eeshah@PPMUM13CPU0149> <28770691.323.1481601912471.JavaMail.eeshah@PPMUM13CPU0149> Message-ID: <6ff27d48-c79c-2ab8-efc6-4294a4ae760b@python.org> Hi Eesha, you can go ahead an update the link to the Packt book on the page, but please don't add more links to that page: https://wiki.python.org/moin/TkInter BTW: Has Packt considered becoming a PSF sponsor: https://www.python.org/psf/sponsorship/ Given how many Python books you have, this would be a good way to secure your investment and revenue. Thanks, -- Marc-Andre Lemburg Python Software Foundation http://www.python.org/psf/ http://www.malemburg.com/ On 13.12.2016 05:02, Eesha Harish wrote: > Hi Chris/Marc, > > Just following to know your thoughts on my previous email. > > Regards > Eesha > > > > > Eesha Harish > Key Partner Executive > Skype: packt.eeshah > > > > www.packtpub.com > > Packt Publishing Private Limited. Registered Address: Plot No. 103, Arena House, 3rd Floor, Road No.12, Opp. Goldfinch Hotel, MIDC, Andheri East, Mumbai 400093. CIN:U22100MH2005PTC152766 > This E-mail is confidential. It may also be legally privileged. If you are not the addressee you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return E-mail. Whilst Packt Publishing Ltd take every reasonable precaution to avoid the transfer of software viruses or defects that may cause damage to computer systems; it is the responsibility of the recipient to ensure that all emails and attachments received are free from infection. > > > > > > > > > ----- Original Message ----- > > From: "Eesha Harish" > To: "M.-A. Lemburg" > Cc: pydotorg-www at python.org, "Chris Angelico" > Sent: Wednesday, December 7, 2016 9:11:16 AM > Subject: Re: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter > > > Hi Chris/Marc, > > Nice to e-meet you and thanks for your reply. > > I think listing packt books on the page is helping the community in their learning and development. > And since Packt has the older version of Tkinter on that page it would be great to have the updated version on the same page. > > I would be very happy to provide you with a review copy, if you wish to go through the video before sharing it with the community. > > Let me know your thoughts on this. > > Thanks & Regards > Eesha > > > > > Eesha Harish > Key Partner Executive > Skype: packt.eeshah > > > > www.packtpub.com > > Packt Publishing Private Limited. Registered Address: Plot No. 103, Arena House, 3rd Floor, Road No.12, Opp. Goldfinch Hotel, MIDC, Andheri East, Mumbai 400093. CIN:U22100MH2005PTC152766 > This E-mail is confidential. It may also be legally privileged. If you are not the addressee you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return E-mail. Whilst Packt Publishing Ltd take every reasonable precaution to avoid the transfer of software viruses or defects that may cause damage to computer systems; it is the responsibility of the recipient to ensure that all emails and attachments received are free from infection. > > > > > > > > > ----- Original Message ----- > > From: "M.-A. Lemburg" > To: "Chris Angelico" , "Eesha Harish" > Cc: pydotorg-www at python.org > Sent: Tuesday, December 6, 2016 7:19:23 PM > Subject: Re: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter > > On 06.12.2016 12:02, Chris Angelico wrote: >> On Tue, Dec 6, 2016 at 9:36 PM, Eesha Harish wrote: >>> >>> We already list our products on https://wiki.python.org/moin/AdvancedBooks and https://wiki.python.org/moin/IntroductoryBooks >>> But I am unable to edit 'Tkinter' page. I would be great if you could provide an access to edit this page. >> >> The page was protected back in 2014 in response to massive spam. M-A, >> does it need to remain protected, or can that directive be dropped now >> that we're guarding editors differently? > > I think we can drop the protection on that page. > > At the same time, I don't think that Packt should be adding > their book links to more pages on the wiki. The two > book pages already mostly list Packt books and hardly any > of the alternatives. > > > > _______________________________________________ > pydotorg-www mailing list > pydotorg-www at python.org > https://mail.python.org/mailman/listinfo/pydotorg-www > From eeshah at packtpub.com Tue Dec 13 05:59:52 2016 From: eeshah at packtpub.com (Eesha Harish) Date: Tue, 13 Dec 2016 10:59:52 +0000 (GMT) Subject: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter In-Reply-To: <6ff27d48-c79c-2ab8-efc6-4294a4ae760b@python.org> References: <27049524.733.1481019346202.JavaMail.eeshah@PPMUM13CPU0149> <28336976.797.1481020722044.JavaMail.eeshah@PPMUM13CPU0149> <11732116.938.1481081563783.JavaMail.eeshah@PPMUM13CPU0149> <28770691.323.1481601912471.JavaMail.eeshah@PPMUM13CPU0149> <6ff27d48-c79c-2ab8-efc6-4294a4ae760b@python.org> Message-ID: <12397448.774.1481626926482.JavaMail.eeshah@PPMUM13CPU0149> Hi Marc, Thanks alot. We will make sure of not overloading the page with Packt books. In regards to the sponsorship, I've forwarded this mail to the team who looks after sponsorships. Thanks once again . Regards Eesha Eesha Harish Key Partner Executive Skype: packt.eeshah www.packtpub.com Packt Publishing Private Limited. Registered Address: Plot No. 103, Arena House, 3rd Floor, Road No.12, Opp. Goldfinch Hotel, MIDC, Andheri East, Mumbai 400093. CIN:U22100MH2005PTC152766 This E-mail is confidential. It may also be legally privileged. If you are not the addressee you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return E-mail. Whilst Packt Publishing Ltd take every reasonable precaution to avoid the transfer of software viruses or defects that may cause damage to computer systems; it is the responsibility of the recipient to ensure that all emails and attachments received are free from infection. ----- Original Message ----- From: "M.-A. Lemburg" To: "Eesha Harish" Cc: pydotorg-www at python.org Sent: Tuesday, December 13, 2016 4:24:48 PM Subject: Re: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter Hi Eesha, you can go ahead an update the link to the Packt book on the page, but please don't add more links to that page: https://wiki.python.org/moin/TkInter BTW: Has Packt considered becoming a PSF sponsor: https://www.python.org/psf/sponsorship/ Given how many Python books you have, this would be a good way to secure your investment and revenue. Thanks, -- Marc-Andre Lemburg Python Software Foundation http://www.python.org/psf/ http://www.malemburg.com/ On 13.12.2016 05:02, Eesha Harish wrote: > Hi Chris/Marc, > > Just following to know your thoughts on my previous email. > > Regards > Eesha > > > > > Eesha Harish > Key Partner Executive > Skype: packt.eeshah > > > > www.packtpub.com > > Packt Publishing Private Limited. Registered Address: Plot No. 103, Arena House, 3rd Floor, Road No.12, Opp. Goldfinch Hotel, MIDC, Andheri East, Mumbai 400093. CIN:U22100MH2005PTC152766 > This E-mail is confidential. It may also be legally privileged. If you are not the addressee you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return E-mail. Whilst Packt Publishing Ltd take every reasonable precaution to avoid the transfer of software viruses or defects that may cause damage to computer systems; it is the responsibility of the recipient to ensure that all emails and attachments received are free from infection. > > > > > > > > > ----- Original Message ----- > > From: "Eesha Harish" > To: "M.-A. Lemburg" > Cc: pydotorg-www at python.org, "Chris Angelico" > Sent: Wednesday, December 7, 2016 9:11:16 AM > Subject: Re: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter > > > Hi Chris/Marc, > > Nice to e-meet you and thanks for your reply. > > I think listing packt books on the page is helping the community in their learning and development. > And since Packt has the older version of Tkinter on that page it would be great to have the updated version on the same page. > > I would be very happy to provide you with a review copy, if you wish to go through the video before sharing it with the community. > > Let me know your thoughts on this. > > Thanks & Regards > Eesha > > > > > Eesha Harish > Key Partner Executive > Skype: packt.eeshah > > > > www.packtpub.com > > Packt Publishing Private Limited. Registered Address: Plot No. 103, Arena House, 3rd Floor, Road No.12, Opp. Goldfinch Hotel, MIDC, Andheri East, Mumbai 400093. CIN:U22100MH2005PTC152766 > This E-mail is confidential. It may also be legally privileged. If you are not the addressee you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return E-mail. Whilst Packt Publishing Ltd take every reasonable precaution to avoid the transfer of software viruses or defects that may cause damage to computer systems; it is the responsibility of the recipient to ensure that all emails and attachments received are free from infection. > > > > > > > > > ----- Original Message ----- > > From: "M.-A. Lemburg" > To: "Chris Angelico" , "Eesha Harish" > Cc: pydotorg-www at python.org > Sent: Tuesday, December 6, 2016 7:19:23 PM > Subject: Re: [pydotorg-www] Book feature on wiki.python.org/moin/TkInter > > On 06.12.2016 12:02, Chris Angelico wrote: >> On Tue, Dec 6, 2016 at 9:36 PM, Eesha Harish wrote: >>> >>> We already list our products on https://wiki.python.org/moin/AdvancedBooks and https://wiki.python.org/moin/IntroductoryBooks >>> But I am unable to edit 'Tkinter' page. I would be great if you could provide an access to edit this page. >> >> The page was protected back in 2014 in response to massive spam. M-A, >> does it need to remain protected, or can that directive be dropped now >> that we're guarding editors differently? > > I think we can drop the protection on that page. > > At the same time, I don't think that Packt should be adding > their book links to more pages on the wiki. The two > book pages already mostly list Packt books and hardly any > of the alternatives. > > > > _______________________________________________ > pydotorg-www mailing list > pydotorg-www at python.org > https://mail.python.org/mailman/listinfo/pydotorg-www > -------------- next part -------------- An HTML attachment was scrubbed... URL: From karlijn at datacamp.com Mon Dec 12 11:16:13 2016 From: karlijn at datacamp.com (Karlijn Willems) Date: Mon, 12 Dec 2016 17:16:13 +0100 Subject: [pydotorg-www] Python Wiki - Addition of Cheat Sheets Message-ID: Hi My username is KarlijnWillems and I would like to add some cheat sheets to the Python wiki; More specifically to the "Trainings" page as was suggested by some of you in a previous inquiry. I intend to add links to the documents that are attached to this mail, namely: https://s3.amazonaws.com/assets.datacamp.com/blog_assets/PythonForDataScience.pdf https://assets.datacamp.com/blog_assets/PandasPythonForDataScience.pdf https://s3.amazonaws.com/assets.datacamp.com/blog_assets/Python_Bokeh_Cheat_Sheet.pdf These cheat sheets cover the basics of Python for data science, of the Pandas and Bokeh libraries. If you have any feedback on the material, please don't hesitate to get in contact with me! Thank you very much in advance for your consideration and time Karlijn Willems -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: BokehPythonForDataScience.pdf Type: application/pdf Size: 249992 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: PandasPythonForDataScience.pdf Type: application/pdf Size: 250580 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: PythonForDataScience.pdf Type: application/pdf Size: 6686573 bytes Desc: not available URL: From rosuav at gmail.com Tue Dec 13 12:52:16 2016 From: rosuav at gmail.com (Chris Angelico) Date: Wed, 14 Dec 2016 04:52:16 +1100 Subject: [pydotorg-www] Python Wiki - Addition of Cheat Sheets In-Reply-To: References: Message-ID: On Tue, Dec 13, 2016 at 3:16 AM, Karlijn Willems wrote: > My username is KarlijnWillems and I would like to add some cheat sheets to > the Python wiki; More specifically to the "Trainings" page as was suggested > by some of you in a previous inquiry. Looks good to me! You're now an editor, have at it! From info at uksoftwarehmrcpayroll.org Fri Dec 16 09:56:56 2016 From: info at uksoftwarehmrcpayroll.org (Pual Jones) Date: Fri, 16 Dec 2016 20:26:56 +0530 Subject: [pydotorg-www] AE and Cloud Payroll Combined Solution Message-ID: <3tgD1B4QFhzFr4r@mail.python.org> view email in browser Review of... Best Cloud Payroll and AE Combined Solution from the HMRC published list of RTI compliant software There are a lot of HMRC recognised payroll solutions in the market that offers Automatic enrolment. Among those payrolls a few of them stands out of the crowd in terms of their best service and reliability. Automatic employee assessment, pension scheme enrolment, pension contribution submission and employee communication are some of key features that you have to look into before choosing any auto enrolment solution. We recommend you to look the following AE solutions which are best ones that you can rely on. We recommend you to look into the following packages. 1. Free AE Combined Payroll - Payroo ( Editor Recommended : Best Internet AE Payroll ) Payroo's Payroll and Auto Enrollment (AE) combined Cloud system is the most simple to use in town. Accredited/Recognised by HMRC for the last 11 years, it allows you to complete your payroll and AE in one go. Filing your RTI returns and submitting your AE contributions to the pension provider you have subscribed to is also very simple and straightforward. Regular AE assessments and printing of the relevant comm letters are provided FREE if you have less than 10 employees and costs just ?3 per employee per year if you have more than 10 employees. Sign up here http://www.payroo.com to have your payroll and AE done with full compliance. 2. SAGE Payroll Sage Payroll manage your business finances easily and efficiently with online accounting service. With their comprehensive range of features, automatic updates they ensure all their customers are compliant and with free 24/7 telephone support, it's the perfect choice for small businesses. It helps your business get ready and prepared for auto enrolment with a pre-staging functionality. Sage performs automatic assessment and enrolment of eligible jobholders into the qualifying pension scheme. Employee communication and auto enrolment guide to support you anytime is an added feature of the application. For more Info: www.sage.com 3. ABLE INTERNET Payroll with AE combined Able Internet Payroll provides payroll agents and independent employers with the most simple to use cloud based payroll and Auto Enrollment combined solution. You can do both payroll and AE tasks over the cloud simultaneously. The entire AE assessment, postponement, comm letter generation, and various pension provider data extracts are all provided. Batch processing and having Tax Codes, SL1, SL2 and NINO's automatically updated are also key features of this HMRC Accredited/Recognised system for the last 10 years. Sign up to use it for 6 months free www.ableinternetpayroll.com 4. QTAC Payroll ( Best Desktop Software ) QTAC is an award winning payroll software that cover all payroll needs. They provide with a free 45 day test drive payroll software. QTAC offers an auto enrolment solution which assess your workforce, categorize them and automatically enroll them into a workplace pension when they become eligible. They give importance to communicate new pension enrolments, employee and employer contributions electronically to the pension provider. QTAC generates all of the relevant employee letters but they don?t take the responsibility to distribute those letters among the employees. For more Info: www.qtac.co.uk 5. Advanced Business Solutions Advanced Business Solutions has a cutting-edge payroll software that automates all standard payroll processes and procedures. They have a fully automated pensions auto-enrolment solution which performs full assessment of employees, postponement, refund calculations, standard NEST extracts, letter generation and document management. It also lets you track all correspondence with employees concerning auto-enrolment. For more Info: www.advancedcomputersoftware.com 6. Bright Pay BrightPay is very easy to use payroll software that sets a higher standard and RTI ready. BrightPay gives visual priority to the most common payroll tasks, and shows or hides various features only as they become relevant. Automatic Enrolment functionality has been elegantly integrated into BrightPay. Setting up pension scheme, enrolling employees, issuing communication, making contributions and viewing reports are all made seamless and simple. For more Info: www.brightpay.co.uk See other HMRC RTI Recognised Software To subscribe to this bulletin click on the "subscribe now" button or place advertisement on our website please click here for more details Subscribe Now This bulletin is an independent set up and is not part of the HMRC nor are we in any way linked to the Government. Should you wish t o have more information about the accredited payroll packages you may click on HMRC Website for more details. If you wish not to receive this bulletin, please send a message with "Remove" in the subject tonewsletter at expertrtiukpayrollinfonews.org and we will oblige. Copyright ? 2012 expertrtiukpayrollinfonews.org, All rights reserved. Our mailing address is: 407 Halls Street LONDON AB9 8UF This email was sent to info at expertrtiukpayrollinfonews.org. We hope you found this message to be useful. If you would no longer like to receive our emails, click here to Unsubscribe from this list -------------- next part -------------- An HTML attachment was scrubbed... URL: From thilagaganesh2 at gmail.com Mon Dec 19 10:56:35 2016 From: thilagaganesh2 at gmail.com (Thilaga Ganesh) Date: Mon, 19 Dec 2016 07:56:35 -0800 Subject: [pydotorg-www] (no subject) Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: From t.p.taeza at gmail.com Mon Dec 19 10:58:35 2016 From: t.p.taeza at gmail.com (TP Chanhom) Date: Mon, 19 Dec 2016 07:58:35 -0800 Subject: [pydotorg-www] (no subject) Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: From yoavram at gmail.com Tue Dec 20 04:16:26 2016 From: yoavram at gmail.com (Yoav Ram) Date: Tue, 20 Dec 2016 11:16:26 +0200 Subject: [pydotorg-www] Permission to edit "Python Training" page Message-ID: Hi, I request permission to edit the ?Python Training? page (https://wiki.python.org/moin/PythonTraining). Wiki username: yoavram. I would like to add the following text: * ???[[http://python.yoavram.com|Yoav Ram, PhD]]''' offers training in USA and Israel with focus on numerical, scientific, and statistical applications, including web application and user interfaces. To enhance participant learning, all course material is fully interactive, using Jupyter notebooks, and all lectures include hands-on exercises. Yoav is a postdoc at Stanford University, earned his PhD from Tel-Aviv University, working with Python since 2002, training and teaching Scientific Python since 2011, including NumPy, SciPy, Matplotlib, Jupyter, Pandas, Seaborn, Cython, scikit-image, scikit-learn, TensorFlow, Flask, Click, Tk. Experience with both small and enterprise companies. Best, Yoav Ram -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosuav at gmail.com Tue Dec 20 04:21:51 2016 From: rosuav at gmail.com (Chris Angelico) Date: Tue, 20 Dec 2016 20:21:51 +1100 Subject: [pydotorg-www] Permission to edit "Python Training" page In-Reply-To: References: Message-ID: On Tue, Dec 20, 2016 at 8:16 PM, Yoav Ram wrote: > I request permission to edit the ?Python Training? page > (https://wiki.python.org/moin/PythonTraining). Wiki username: yoavram. Go for it! ChrisA From dipanzan.sarkar at gmail.com Wed Dec 21 08:33:29 2016 From: dipanzan.sarkar at gmail.com (Dipanjan Sarkar) Date: Wed, 21 Dec 2016 19:03:29 +0530 Subject: [pydotorg-www] Edit access for adding a new book on Python Message-ID: Hi, I needed edit access to the https://wiki.python.org/moin/AdvancedBooks section of the wiki to add information about a new book on text analytics with Python. You can find more information about the book here if you are interested https://github.com/dipanjanS/text-analytics-with-python My username is DipanjanSarkar and it uses this same email address. Do let me know in case you need any further details. Regards, Dipanjan -------------- next part -------------- An HTML attachment was scrubbed... URL: From rosuav at gmail.com Thu Dec 22 04:54:42 2016 From: rosuav at gmail.com (Chris Angelico) Date: Thu, 22 Dec 2016 20:54:42 +1100 Subject: [pydotorg-www] Edit access for adding a new book on Python In-Reply-To: References: Message-ID: On Thu, Dec 22, 2016 at 12:33 AM, Dipanjan Sarkar wrote: > I needed edit access to the https://wiki.python.org/moin/AdvancedBooks > section of the wiki to add information about a new book on text analytics > with Python. > > You can find more information about the book here if you are interested > https://github.com/dipanjanS/text-analytics-with-python > > My username is DipanjanSarkar and it uses this same email address. Go for it! Be sure to follow the guidelines for listing things fairly (basically, don't spam the page with your book(s), and make sure everyone's books get the same kind of listing). ChrisA From dipanzan.sarkar at gmail.com Thu Dec 22 09:45:40 2016 From: dipanzan.sarkar at gmail.com (Dipanjan Sarkar) Date: Thu, 22 Dec 2016 20:15:40 +0530 Subject: [pydotorg-www] Edit access for adding a new book on Python In-Reply-To: References: Message-ID: Thank you so much, I have followed the same format as the other author's have used before me and listed the book successfully. Really appreciate the prompt response and thanks once again for granting me access. In case there are any issues feel free to mail me anytime. Wishing all a Merry Christmas! Regards, Dipanjan On Thu, Dec 22, 2016 at 3:24 PM, Chris Angelico wrote: > On Thu, Dec 22, 2016 at 12:33 AM, Dipanjan Sarkar > wrote: > > I needed edit access to the https://wiki.python.org/moin/AdvancedBooks > > section of the wiki to add information about a new book on text analytics > > with Python. > > > > You can find more information about the book here if you are interested > > https://github.com/dipanjanS/text-analytics-with-python > > > > My username is DipanjanSarkar and it uses this same email address. > > Go for it! Be sure to follow the guidelines for listing things fairly > (basically, don't spam the page with your book(s), and make sure > everyone's books get the same kind of listing). > > ChrisA > -------------- next part -------------- An HTML attachment was scrubbed... URL: From christopherrmullins at gmail.com Fri Dec 23 14:48:07 2016 From: christopherrmullins at gmail.com (Christopher Mullins) Date: Fri, 23 Dec 2016 14:48:07 -0500 Subject: [pydotorg-www] Edit permission request: adding local user group Message-ID: <07d64ecf-9350-280f-e049-918a5ae3b52b@gmail.com> Hi all, I was hoping to add a link to our Charleston Python [1] group to the LocalUserGroups page on the wiki under #South_Carolina [2]. (I haven't made an official page yet, so the meetup.com page is all we have for now.) My username is ChristopherMullins. Would someone mind putting me in the Editors group? Let me know if you'd like any other info. Thanks, Chris [1] https://www.meetup.com/CharlestonPython/ [2] https://wiki.python.org/moin/LocalUserGroups#South_Carolina From rosuav at gmail.com Fri Dec 23 15:54:18 2016 From: rosuav at gmail.com (Chris Angelico) Date: Sat, 24 Dec 2016 07:54:18 +1100 Subject: [pydotorg-www] Edit permission request: adding local user group In-Reply-To: <07d64ecf-9350-280f-e049-918a5ae3b52b@gmail.com> References: <07d64ecf-9350-280f-e049-918a5ae3b52b@gmail.com> Message-ID: On Sat, Dec 24, 2016 at 6:48 AM, Christopher Mullins wrote: > > I was hoping to add a link to our Charleston Python [1] group to the > LocalUserGroups page on the wiki under #South_Carolina [2]. (I haven't > made an official page yet, so the meetup.com page is all we have for now.) > > My username is ChristopherMullins. Would someone mind putting me in the > Editors group? Let me know if you'd like any other info. Go for it! You're an editor. Bring on the meet-ups! ChrisA From christopherrmullins at gmail.com Fri Dec 23 16:28:03 2016 From: christopherrmullins at gmail.com (Christopher Mullins) Date: Fri, 23 Dec 2016 16:28:03 -0500 Subject: [pydotorg-www] Edit permission request: adding local user group In-Reply-To: References: <07d64ecf-9350-280f-e049-918a5ae3b52b@gmail.com> Message-ID: Done, thank you! Happy holidays, Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From toastedcornflakes at gmail.com Mon Dec 26 08:05:35 2016 From: toastedcornflakes at gmail.com (tcf) Date: Mon, 26 Dec 2016 14:05:35 +0100 Subject: [pydotorg-www] Editing the python wiki Message-ID: Hello, I'd like to edit this wiki page https://wiki.python.org/moin/BeginnersGuide/NonProgrammers to state that "A Byte of Python" is python 3 now. Can someone do the edit for me? (Or add my account to the EditorsGroup? My username is 'toastedcornflakes' (without quotes)) Thank you! Regards tcf From rosuav at gmail.com Mon Dec 26 08:13:35 2016 From: rosuav at gmail.com (Chris Angelico) Date: Tue, 27 Dec 2016 00:13:35 +1100 Subject: [pydotorg-www] Editing the python wiki In-Reply-To: References: Message-ID: On Tue, Dec 27, 2016 at 12:05 AM, tcf wrote: > I'd like to edit this wiki page > https://wiki.python.org/moin/BeginnersGuide/NonProgrammers > to state that "A Byte of Python" is python 3 now. > > Can someone do the edit for me? (Or add my account to the EditorsGroup? My > username is 'toastedcornflakes' (without quotes)) No probs! I've made you an editor. And thank you for updating the book to use the current Python! ChrisA From info at uksoftwarehmrcpayroll.org Tue Dec 27 08:40:13 2016 From: info at uksoftwarehmrcpayroll.org (Pual Jones) Date: Tue, 27 Dec 2016 19:10:13 +0530 Subject: [pydotorg-www] AE and Cloud Payroll Combined Solution Message-ID: <3tnxng6sZRzFr4T@mail.python.org> view email in browser Review of... Best Cloud Payroll and AE Combined Solution from the HMRC published list of RTI compliant software There are a lot of HMRC recognised payroll solutions in the market that offers Automatic enrolment. Among those payrolls a few of them stands out of the crowd in terms of their best service and reliability. Automatic employee assessment, pension scheme enrolment, pension contribution submission and employee communication are some of key features that you have to look into before choosing any auto enrolment solution. We recommend you to look the following AE solutions which are best ones that you can rely on. We recommend you to look into the following packages. 1. Free AE Combined Payroll - Payroo ( Editor Recommended : Best Internet AE Payroll ) Payroo's Payroll and Auto Enrollment (AE) combined Cloud system is the most simple to use in town. Accredited/Recognised by HMRC for the last 11 years, it allows you to complete your payroll and AE in one go. Filing your RTI returns and submitting your AE contributions to the pension provider you have subscribed to is also very simple and straightforward. Regular AE assessments and printing of the relevant comm letters are provided FREE if you have less than 10 employees and costs just ?3 per employee per year if you have more than 10 employees. Sign up here http://www.payroo.com to have your payroll and AE done with full compliance. 2. SAGE Payroll Sage Payroll manage your business finances easily and efficiently with online accounting service. With their comprehensive range of features, automatic updates they ensure all their customers are compliant and with free 24/7 telephone support, it's the perfect choice for small businesses. It helps your business get ready and prepared for auto enrolment with a pre-staging functionality. Sage performs automatic assessment and enrolment of eligible jobholders into the qualifying pension scheme. Employee communication and auto enrolment guide to support you anytime is an added feature of the application. For more Info: www.sage.com 3. ABLE INTERNET Payroll with AE combined Able Internet Payroll provides payroll agents and independent employers with the most simple to use cloud based payroll and Auto Enrollment combined solution. You can do both payroll and AE tasks over the cloud simultaneously. The entire AE assessment, postponement, comm letter generation, and various pension provider data extracts are all provided. Batch processing and having Tax Codes, SL1, SL2 and NINO's automatically updated are also key features of this HMRC Accredited/Recognised system for the last 10 years. Sign up to use it for 6 months free www.ableinternetpayroll.com 4. QTAC Payroll ( Best Desktop Software ) QTAC is an award winning payroll software that cover all payroll needs. They provide with a free 45 day test drive payroll software. QTAC offers an auto enrolment solution which assess your workforce, categorize them and automatically enroll them into a workplace pension when they become eligible. They give importance to communicate new pension enrolments, employee and employer contributions electronically to the pension provider. QTAC generates all of the relevant employee letters but they don?t take the responsibility to distribute those letters among the employees. For more Info: www.qtac.co.uk 5. Advanced Business Solutions Advanced Business Solutions has a cutting-edge payroll software that automates all standard payroll processes and procedures. They have a fully automated pensions auto-enrolment solution which performs full assessment of employees, postponement, refund calculations, standard NEST extracts, letter generation and document management. It also lets you track all correspondence with employees concerning auto-enrolment. For more Info: www.advancedcomputersoftware.com 6. Bright Pay BrightPay is very easy to use payroll software that sets a higher standard and RTI ready. BrightPay gives visual priority to the most common payroll tasks, and shows or hides various features only as they become relevant. Automatic Enrolment functionality has been elegantly integrated into BrightPay. Setting up pension scheme, enrolling employees, issuing communication, making contributions and viewing reports are all made seamless and simple. For more Info: www.brightpay.co.uk See other HMRC RTI Recognised Software To subscribe to this bulletin click on the "subscribe now" button or place advertisement on our website please click here for more details Subscribe Now This bulletin is an independent set up and is not part of the HMRC nor are we in any way linked to the Government. Should you wish t o have more information about the accredited payroll packages you may click on HMRC Website for more details. If you wish not to receive this bulletin, please send a message with "Remove" in the subject tonewsletter at expertrtiukpayrollinfonews.org and we will oblige. Copyright ? 2012 expertrtiukpayrollinfonews.org, All rights reserved. Our mailing address is: 407 Halls Street LONDON AB9 8UF This email was sent to info at expertrtiukpayrollinfonews.org. We hope you found this message to be useful. If you would no longer like to receive our emails, click here to Unsubscribe from this list -------------- next part -------------- An HTML attachment was scrubbed... URL: From MAILER-DAEMON at localhost.localdomain Sat Dec 24 18:14:36 2016 From: MAILER-DAEMON at localhost.localdomain (Mail Delivery System) Date: Sat, 24 Dec 2016 18:14:36 -0500 (EST) Subject: [pydotorg-www] Undelivered Mail Returned to Sender Message-ID: <20161224231436.11AB54033AF@localhost.localdomain> This is the mail system at host localhost.localdomain. I'm sorry to have to inform you that your message could not be delivered to one or more recipients. It's attached below. For further assistance, please send mail to postmaster. If you do so, please include this problem report. You can delete your own text from the attached returned message. The mail system : connect to mail.python.org[2a03:b0c0:2:d0::71:1]:25: Network is unreachable -------------- next part -------------- An embedded message was scrubbed... From: "pydotorg-www at python.org" Subject: ?????????? ???? Skype: prodawez390 Email: prodawez391 at gmail.com ??? +79139230330 (whatsapp\viber\telegram) ??????? ??? ??? ?? ???????? ???? ?????? ????????????? ???????? ??? ?????? ??????? ?????! ??????! ????????! ??????? ????????? Date: Mon, 19 Dec 2016 10:02:18 +0300 Size: 9782 URL: