in 753638 20160212 185728 sohcahto...@gmail.com wrote:
>On Friday, February 12, 2016 at 1:47:24 AM UTC-8, Mohammed Zakria wrote:
>> hello
>> i want to know the company that ican work as freelance python devloper
>
>There are some recruiters that read this mailing list and will send
>unsolicited e-
On 13-2-2016 2:43, Joel Goldstick wrote:
> On Fri, Feb 12, 2016 at 3:16 PM, Manas Soni wrote:
>
>>
>> I have downloaded python and when I click on it, it asks me to repair
>> which I do, it then says successful however when I click on it again it
>> won’t let me on it
>> Sent from Mail for Window
On Saturday 13 February 2016 07:13 AM, Joel Goldstick wrote:
On Fri, Feb 12, 2016 at 3:16 PM, Manas Soni wrote:
I have downloaded python and when I click on it, it asks me to repair
which I do, it then says successful however when I click on it again it
won’t let me on it
Sent from Mail for
Hi,
For fun and to learn a bit from messing around a little with audio samples,
I've created
a rhythm sample mixer inspired by the Roland TR-909 drum machine.
Basically you write rhythm sample patterns and it then sequences and mixes them
into a
output wav file or streams it to your speakers. S
On 12 February 2016 at 21:39, Mark Lawrence wrote:
> On 12/02/2016 20:16, Manas Soni wrote:
>>
>>
>> I have downloaded python and when I click on it, it asks me to repair
>> which I do, it then says successful however when I click on it again it
>> won’t let me on it
>> Sent from Mail for Windows
On Sat, Feb 13, 2016 at 7:35 AM, MWS wrote:
> couldn't find the default install python directory (maybe i didn't pay
> attention earlier), later, after some scratching my head and other
> intelligent thoughts and experiments i found it got installed in the users
> hidden appdata folder by default(
I am writing a program that has to deal with various date/time formats
and convert these into timestamps. It looks as if dateutil.parser.parse
should be able to handle about any format, but what I get is:
datetimestr = '2012-10-22 11:22:33'
print(dateutil.parser.parse(datetimestr))
result: date
On 02/13/2016 09:58 AM, Tom P wrote:
I am writing a program that has to deal with various date/time formats
and convert these into timestamps. It looks as if
dateutil.parser.parse should be able to handle about any format, but
what I get is:
datetimestr = '2012-10-22 11:22:33'
print(dateutil.
On 2/13/2016 5:35 AM, MWS wrote:
Just to add to the above discussion, i find that when my workplace
updated from win 7 to win 8.1 with fresh install, i downloaded the
official python 3.5 and installed it. Everything went well during
installation, but, i couldn't find the default install python d
Hello all.
I'm running in a very strange (for me at least) problem.
def getHash(self):
bfsz=File.blksz
h=hashlib.sha256()
hu=h.update
with open(self.getPath(),'rb') as f:
f.seek(File.hdrsz) # Skip
In my application I have used two approaches: 1. To store paths as a tree (as
directories for a tree. 2. For long list of similar paths, to store difference
of strings. Though this was c++/obj-c project, I can share a diff code with you
if you drip me a line (mkondrashin & gmail , com)
--
https
On 02/13/2016 07:13 PM, Gary Herron wrote:
On 02/13/2016 09:58 AM, Tom P wrote:
I am writing a program that has to deal with various date/time formats
and convert these into timestamps. It looks as if
dateutil.parser.parse should be able to handle about any format, but
what I get is:
datetimest
On 02/13/2016 12:27 PM, Tom P wrote:
On 02/13/2016 07:13 PM, Gary Herron wrote:
On 02/13/2016 09:58 AM, Tom P wrote:
I am writing a program that has to deal with various date/time formats
and convert these into timestamps. It looks as if
dateutil.parser.parse should be able to handle about any
On 13/02/2016 17:58, Tom P wrote:
I am writing a program that has to deal with various date/time formats
and convert these into timestamps. It looks as if dateutil.parser.parse
should be able to handle about any format, but what I get is:
datetimestr = '2012-10-22 11:22:33'
print(dateutil.parser
I meant eating! :-)
--
https://mail.python.org/mailman/listinfo/python-list
On Sun, Feb 14, 2016 at 9:26 AM, Paulo da Silva
wrote:
> I meant eating! :-)
Heh, "heating" works too - the more you use memory, the more it heats up :)
I'm assuming this is inside "class File:" and you have class members
for your constants like header size? There's no context for the name
"File
Hello. Is there a way to change my subscription option from digest to
individual e-mails? I couldn't find any information on the list web
page: https://mail.python.org/mailman/listinfo/python-list.
I've tried filling out the subscription form again, but the result was
an automated e-mail about
On 13/02/2016 23:15, Heaven Hodges wrote:
Hello. Is there a way to change my subscription option from digest to
individual e-mails? I couldn't find any information on the list web
page: https://mail.python.org/mailman/listinfo/python-list.
At the bottom of that page is a button to "Unsubscribe
Às 22:45 de 13-02-2016, Chris Angelico escreveu:
> On Sun, Feb 14, 2016 at 9:26 AM, Paulo da Silva
> wrote:
>> I meant eating! :-)
>
> Heh, "heating" works too - the more you use memory, the more it heats up :)
:-) It is heating my head!
...
>
> What happens if, after hashing each file (and ret
On Sun, Feb 14, 2016 at 12:44 PM, Paulo da Silva
wrote:
>> What happens if, after hashing each file (and returning from this
>> function), you call gc.collect()? If that reduces your RAM usage, you
>> have reference cycles somewhere.
>>
> I have used gc and del. No luck.
>
> The most probable caus
On Sun, 14 Feb 2016 06:29 am, Paulo da Silva wrote:
> Hello all.
>
> I'm running in a very strange (for me at least) problem.
>
> def getHash(self):
> bfsz=File.blksz
> h=hashlib.sha256()
> hu=h.update
> with open(self.getPath(),'rb') as f:
> f.seek(File.hdrsz)# Skip header
> b=f.read(bfsz)
I'm writing a price parser. I need to do the equivalent of perl's
$$var to instantiate a class where $car is the class_name.
I'm passing 'Ebay' or 'Newegg' or 'Amazon' via cmd-line. I have a module
named ebay.py and a class called Ebay (price parser). I do something
like:
\> main.py ebay mother
On Friday, February 12, 2016 at 7:06:45 AM UTC-6, anthony averett wrote:
> I have downloaded python but I cannot open up idle. I really need this
> issue resolved for I have work do for one of my computer science class.
Sorry, but you failed to provide enough information. Here
are a few possibilit
On Saturday, February 13, 2016 at 10:41:20 PM UTC-6, Veek. M wrote:
> how do i replace the 'Ebay' bit with a variable so that I
> can load any class via cmd line.
Is this what you're trying to do?
(Python2.x code)
>>> import Tkinter as tk
>>> classNames = ["Button", "Label"]
>>> root = tk.Tk()
>
Rick Johnson wrote:
> On Saturday, February 13, 2016 at 10:41:20 PM UTC-6, Veek. M wrote:
>> how do i replace the 'Ebay' bit with a variable so that I
>> can load any class via cmd line.
>
> Is this what you're trying to do?
>
> (Python2.x code)
import Tkinter as tk
classNames = ["Butt
Veek. M wrote:
I'm writing a price parser. I need to do the equivalent of perl's
$$var to instantiate a class where $car is the class_name.
I'm passing 'Ebay' or 'Newegg' or 'Amazon' via cmd-line. I have a module
named ebay.py and a class called Ebay (price parser). I do something
like:
\> m
Gregory Ewing wrote:
> Veek. M wrote:
>> I'm writing a price parser. I need to do the equivalent of perl's
>> $$var to instantiate a class where $car is the class_name.
>>
>> I'm passing 'Ebay' or 'Newegg' or 'Amazon' via cmd-line. I have a
>> module named ebay.py and a class called Ebay (price p
On 14Feb2016 10:10, Veek. M wrote:
I'm writing a price parser. I need to do the equivalent of perl's
$$var to instantiate a class where $car is the class_name.
I'm passing 'Ebay' or 'Newegg' or 'Amazon' via cmd-line. I have a module
named ebay.py and a class called Ebay (price parser). I do som
On Saturday, February 13, 2016 at 11:39:56 PM UTC-6, Veek. M wrote:
> Nope - this is what i'm doing:
>
> class Foo():
> pass
>
> x = 'Foo'
>
> How do i use 'x' to create an instance of class Foo?
Use the builtin function `getattr` on the module that contains
the class named "Foo".
For exampl
I was unable to reproduce the situation using a simple program just
walking through all files>4K, with or without the seek, and computing
their shasums.
Only some fluctuations of about 500MB in memory consumption.
I'll look at this when I get more time, taking in consideration the
suggestions here
30 matches
Mail list logo