[issue41803] Robots.txt

2020-09-17 Thread Skyreka Agence Web
New submission from Skyreka Agence Web : I can't documentation about it, but all of the robots.txt checkers I find behave like this. You can test on this site: http://www.skyreka.com/robots.txt, I believe that this is how it's implemented now in most parsers ? -- messages: 377055

[issue40562] SEO: differentiate between Python 2 and Python 3 docs on Google SERP

2020-09-07 Thread GR3 WEB - CRIAÇÃO DE SITE
GR3 WEB - CRIAÇÃO DE SITE added the comment: This problem on my website too. https://gr3web.com.br it seems that there is an SEO bug against the Python documentation - Google is truncating part of the title that informs if the documents are for Python 2 or Python 3 -- nosy: +gr3web

problem occurring in operating python , after typing only 5-6 programs only is causing problem it has stoped working

2019-09-01 Thread best web site
Sent from Mail for Windows 10 -- https://mail.python.org/mailman/listinfo/python-list

Re: comp.lang.python killfile rule

2017-06-25 Thread Mirage Web Studio
Just felt like posting, wouldn't it be pythonic if it was if word in [list]: ignore Save time and easily maintainable Cmg On 23 Jun 2017 02:41, "John Black" wrote: All, in case this is useful to anyone, this rule that tells my newsreader which posts to kill really cleans

Re: SIP and PyQt5 Installation

2016-12-22 Thread Mirage Web Studio
On December 23, 2016 7:02:03 AM GMT+05:30, churros.stud...@gmail.com wrote: >Hello, I've been having troubles being able to integrate the PyQt5 GUI >into my IDEs. I've used various example codes from the web to see if >the library would import properly but the console sends me back a

Re: problem writing excel sheet using python

2016-07-14 Thread Mirage Web Studio
On July 14, 2016 2:59:09 AM GMT+05:30, vineeth menneni wrote: >Hi I am finding it difficult to create a excel sheet using openpyxl or >xlsxwriter. The problem is that i am loading a table data from MYSQL db >which has 600k rows and 15 columns (approximately 100mb

Re: xlwt 1.0.0 released!

2015-04-15 Thread Mirage Web Studio
On 2015-04-16 4:55 AM, Tim Chase wrote: On 2015-04-15 15:21, Gary Herron wrote: On 04/15/2015 02:51 PM, Chris Withers wrote: I'm pleased to announce the release of xlwt 1.0.0. What a curiously incomplete announcement. Could you tell us what xlwt is? I see no hint here. Heh, this and its

Re: How to wow someone new to Python

2015-01-16 Thread Mirage Web Studio
On 01/16/2015 08:33 PM, Chris Angelico wrote: Scenario: You're introducing someone to Python for the first time. S/he may have some previous programming experience, or may be new to the whole idea of giving a computer instructions. You have a couple of minutes to show off how awesome Python

Re: How to Nest Structs?

2013-03-04 Thread web
Try unpacking the nested struct as a fixed width string and then unpacking the string. Then unpack the string On Monday, March 4, 2013 10:22:07 AM UTC-8, Ari King wrote: Hi, I'm trying to nest the info_header, info_body, and info_trailer structs (see below) into a data_packet

The most important website in the world for any entrepreneur

2013-01-21 Thread Web Developers
Hello, We just launched our new site - www.webmeeters.com a couple of days back. It allows the formation of virtual companies made up of workers from around the world, and then allows them to be crowd-funded for any business idea they may have. The site can be used by anyone - someone in the

Re: No more Python support in NetBeans 7.0

2011-10-26 Thread web
Sorry to comment on an old topic, but I wanted to clarify for others like me who might get the wrong idea. It looks like this is no longer true. Netbeans 7 might be supporting python after all. http://wiki.netbeans.org/Python70Roadmap -- http://mail.python.org/mailman/listinfo/python-list

Re: Generating PDF file in Python

2010-10-27 Thread Steve Piercy - Web Site Builder
-form-in-django-python Has anyone else tried this route? --steve -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- Steve Piercy Web Site Builder Soquel, CA w...@stevepiercy.com http://www.StevePiercy.com/ -- http://mail.python.org

re.match and non-alphanumeric characters

2008-11-16 Thread The Web President
Dear all, this is really driving me nuts and any help would be extremely appreciated. I have a string that contains some numeric data. I want to isolate these data using re.match, as follows. bogus = IFC(35m) data = re.match(r'(\d+)',bogus) print data.group(1) I would expect to have 35 printed

How to Choose an Unlimited Web Hosting for free

2008-04-13 Thread Unlimited Free Domain Web Hosting
How to Choose an Unlimited Web Hosting 1) Visit www.axealis.com to get domain and hosting 2) Unlimited Bandwidth ,this mean unlimited data transmission for your client access. 2) Unlimited Space , you can upload file for unlimited . 3) Unlimited Email , many of email account can created . 5) SSL

MIME-Version in interpart, Python MIMEMultipart

2007-02-12 Thread berb . web
list - using python's MIMEMultipart() object I've noticed that it interjects a 'MIME-Version' in the interpart header, like so... snip --some_MIME_Boundry Content-Type: text/plain; charset=us-ascii MIME-Version: 1.0 Content-Transfer-Encoding: 7bit some_test /snip Now, RFC1521, section 3 reads:

for line in file weirdness

2005-04-13 Thread Cordula's Web
(a block's worth or so) before continuing. Why is this? Is reading from a file non-reentrant? It is always possible to slurp the whole file content into a list, and then iterate through the list, but I want to handle HUGE files too. Thanks, -cpghost. -- Cordula's Web. http://www.cordula.ws/ -- http

Re: for line in file weirdness

2005-04-13 Thread Cordula's Web
A read-ahead buffer? Yes, that would explain it. Sorry, I missed this piece of information in the documentation. Thanks to all who replied. -- http://mail.python.org/mailman/listinfo/python-list

Re: for line in file weirdness

2005-04-13 Thread Cordula's Web
Thanks :) Reading everything into a variable was not an option, due to some very large files. Creating the iterator only once, as Fredrik suggested, solved the problem nicely. Again many thanks for your great support! -- http://mail.python.org/mailman/listinfo/python-list

Re: Gecko bindings for Python?

2005-01-13 Thread Cordula's Web
Yes, that's exactly what I needed! Thanks alot! -cpghost. -- Cordula's Web. http://www.cordula.ws/ -- http://mail.python.org/mailman/listinfo/python-list

Gecko bindings for Python?

2005-01-11 Thread Cordula's Web
Hello, I'd like to use the Gecko engine in GTK+ or Qt programs written in Python. Could you recommend a module for this? A tutorial to get started? I didn't find anything useful, but I may have been looking in all the wrong places... :) Thanks, -cpghost. -- Cordula's Web. http://www.cordula.ws