Having run a check for straightforward spam, I now find that there's a site
editing and reposting non-spam posts. An example of the changed headers
follows:
Original post headers:
>
> From c...@seckford.org Sun Feb 11 23:23:22 2018
> Path:
> eternal-september.org!reader02.eternal-september.org!
I am trying to performance a regex on a "string" of text that python isinstance
is telling me is a dictionary. When I run the code I get the following error:
{'/Title': '1F: Progress Notes Src.: MILANI, JOHN C Tmt. Dt.: 05/12/2014 -
05/28/2014 (9 pages)', '/Page': IndirectObject(465, 0), '/
Hi Stanley,
Le 2018-02-13 à 08:11, Stanley Denman a écrit :
x=MyRegex.findall(MyDict)
How about:
x = [MyRegex.findall(item) for item in MyDict]
Etienne
--
Etienne Robillard
tkad...@yandex.com
https://www.isotopesoftware.ca/
--
https://mail.python.org/mailman/listinfo/python-list
On 13/02/18 13:11, Stanley Denman wrote:
I am trying to performance a regex on a "string" of text that python isinstance
is telling me is a dictionary. When I run the code I get the following error:
{'/Title': '1F: Progress Notes Src.: MILANI, JOHN C Tmt. Dt.: 05/12/2014 -
05/28/2014 (9 p
On Tue, 13 Feb 2018 13:42:08 +, Rhodri James wrote:
> On 13/02/18 13:11, Stanley Denman wrote:
>> I am trying to performance a regex on a "string" of text that python
>> isinstance is telling me is a dictionary. When I run the code I get
>> the following error:
>>
>> {'/Title': '1F: Progres
On Tue, 13 Feb 2018 12:49:26 +, C W Rose wrote:
> Having run a check for straightforward spam, I now find that there's a
> site editing and reposting non-spam posts. An example of the changed
> headers follows:
>
> Original post headers:
>>
>> From c...@seckford.org Sun Feb 11 23:23:22 2018
Hello Michael,
Here my answers
1. Why do you want to uninstall it? What are you trying to accomplish by
uninstalling it?
-> I installed Python to test a software. Now I do not need python any more.
2. What operating system are you using?
-> Windows 10 Familly 64b
3. How did you try to uninstal
On 13/02/18 13:11, Stanley Denman wrote:
I am trying to performance a regex on a "string" of text that python isinstance
is telling me is a dictionary. When I run the code I get the following error:
{'/Title': '1F: Progress Notes Src.: MILANI, JOHN C Tmt. Dt.: 05/12/2014 -
05/28/2014 (9 p
On 13/02/18 12:49, C W Rose via Python-list wrote:
Having run a check for straightforward spam, I now find that there's a site
editing and reposting non-spam posts. An example of the changed headers
follows:
Original post headers:
From c...@seckford.org Sun Feb 11 23:23:22 2018
Path: eterna
On 2018-02-10 16:40, Chris Angelico wrote:
On Sun, Feb 11, 2018 at 8:52 AM, Chris Green wrote:
Michael F. Stemper wrote:
On 2018-02-09 13:37, Chris Green wrote:
Use ssh (is that available at worK?) to connect from work to home
Your ISP provides that capability? I'm surprised. I'm w
I have a variety of scripts that import some large libraries, and rather than
create a million little scripts with specific imports, I'd like to so something
like
psycopg2 = ensure_imported (psycopg2)
This way, regardless of invocation I can know psycopg2 is loaded, if it hasn't
already been l
On Wed, Feb 14, 2018 at 3:02 AM, Jason wrote:
> I have a variety of scripts that import some large libraries, and rather than
> create a million little scripts with specific imports, I'd like to so
> something like
>
> psycopg2 = ensure_imported (psycopg2)
>
> This way, regardless of invocation
On Tue, 13 Feb 2018 05:11:20 -0800, Stanley Denman wrote:
> I am trying to performance a regex on a "string" of text that python
> isinstance is telling me is a dictionary.
Please believe Python when it tells you that something is a dictionary.
Trust me, the interpreter knows. It doesn't matter
On Tue, 13 Feb 2018 13:53:04 +, Mark Lawrence wrote:
> Was the string methods solution that I gave a week or so ago so bad that
> you still think that you need a regex to solve this?
Sometimes regexes are needed, but often Jamie Zawinski is right:
Some people, when confronted with a prob
>
> On Feb 6, 2018, at 12:12 PM, Israel Brewster wrote:
>
> I have been working on writing an Alexa skill which, as part of it, requires
> a local web server on the end users machine - the Alexa skill sends commands
> to this server, which runs them on the local machine. I wrote this local
>
On Tue, Feb 13, 2018 at 10:30 AM, Pedro Crescencio
wrote:
3. How did you try to uninstall it?
> Using Windows standard uninstall procedure
> https://www.windowscentral.com/how-to-uninstall-apps-windows-10
>
That page describes two different ways of uninstalling programs (from the
start screen,
On Tuesday, February 13, 2018 at 9:41:14 AM UTC-6, Mark Lawrence wrote:
> On 13/02/18 13:11, Stanley Denman wrote:
> > I am trying to performance a regex on a "string" of text that python
> > isinstance is telling me is a dictionary. When I run the code I get the
> > following error:
> >
> > {'
RESOLVED
To answer Jerry, I found solution.
Point 3.
First try: uninstall using Windows 10 interface to uninstall
Like this
https://malwaretips.com/blogs/wp-content/uploads/2015/07/Uninstall-Application-from-Windows-10.jpg
Second try: right click over the program bouton on Start Menu
On 13/02/18 18:08, Stanley Denman wrote:
On Tuesday, February 13, 2018 at 9:41:14 AM UTC-6, Mark Lawrence wrote:
On 13/02/18 13:11, Stanley Denman wrote:
I am trying to performance a regex on a "string" of text that python isinstance
is telling me is a dictionary. When I run the code I get th
On Tue, Feb 13, 2018 at 9:28 AM, Israel Brewster wrote:
> As such, I'm considering three possible solutions:
>
> 1) Make some sort of installer package that includes the python3 installer
> 2) Somehow automate the download and install of Python3, or
> 3) re-write my code to be python 2 compatible
Hi,
what i'm trying to do is develop my own email client, but a simple one.
I just want it to connect to a specific email account and read the subject line
of messages coming from a certain email address.
I then want it to be able to execute the command i wrote on the subject.
It would be nice
On Wed, Feb 14, 2018 at 7:05 AM, Maroso Marco wrote:
> Hi,
>
> what i'm trying to do is develop my own email client, but a simple one.
>
> I just want it to connect to a specific email account and read the subject
> line of messages coming from a certain email address.
>
> I then want it to be ab
Mark Lawrence wrote:
IIRC the same source for the "nospam" stuff of some months ago which I
believe was purely accidental.
I have told the site admin about this, hopefully he will be able
to put a stop to it again.
--
Greg
--
https://mail.python.org/mailman/listinfo/python-list
Il giorno martedì 13 febbraio 2018 21:18:37 UTC+1, Chris Angelico ha scritto:
> On Wed, Feb 14, 2018 at 7:05 AM, Maroso Marco wrote:
> > Hi,
> >
> > what i'm trying to do is develop my own email client, but a simple one.
> >
> > I just want it to connect to a specific email account and read the su
> On Feb 13, 2018, at 10:02 AM, Dan Stromberg wrote:
>
> On Tue, Feb 13, 2018 at 9:28 AM, Israel Brewster
> wrote:
>> As such, I'm considering three possible solutions:
>>
>> 1) Make some sort of installer package that includes the python3 installer
>> 2) Somehow automate the download and inst
On 2018-02-13 22:54, Maroso Marco wrote:
Il giorno martedì 13 febbraio 2018 21:18:37 UTC+1, Chris Angelico ha scritto:
On Wed, Feb 14, 2018 at 7:05 AM, Maroso Marco wrote:
> Hi,
>
> what i'm trying to do is develop my own email client, but a simple one.
>
> I just want it to connect to a specif
Hello everyone,
Django-hotsauce 1.0 commercial edition (LTS) is now available for
preorder :)
Checkout: https://www.livestore.ca/product/django-hotsauce/
I'm also looking for expert Django and Python programmers to test and
review the design and API of Django-hotsauce 1.0 commercial edition
On Wed, 14 Feb 2018 03:08:07 +1100, Chris Angelico wrote:
[...]
> import psycopg2
>
> If it's already been imported, Python will go fetch it straight from the
> cache, so it's fast.
Since Jason is talking about "a variety of scripts", it is quite possible
that the sys.modules cache will not sav
On Tue, 13 Feb 2018 08:02:38 -0800, Jason wrote:
> I have a variety of scripts that import some large libraries, and rather
> than create a million little scripts with specific imports, I'd like to
> so something like
>
> psycopg2 = ensure_imported (psycopg2)
>
> This way, regardless of invocati
On 2/13/18 6:41 PM, Etienne Robillard wrote:
Hello everyone,
Django-hotsauce 1.0 commercial edition (LTS) is now available for
preorder :)
Checkout: https://www.livestore.ca/product/django-hotsauce/
I'm also looking for expert Django and Python programmers to test and
review the design and
30 matches
Mail list logo