HTTP over Asynchronous AF_UNIX Socket in python

2015-01-26 Thread Norah Jones
out. Sorry if could explain my problem very well. Thanks, Norah Jones -- https://mail.python.org/mailman/listinfo/python-list

What is Application Context and Request Context in Flask and WerkZeug.

2014-04-07 Thread Norah Jones
quest arrives to the web application. Also if i am not using any openID providers for logging in the user into my website, how can i make the password secure. Should i use any framework for that? Thanks, Norah Jones -- https://mail.python.org/mailman/listinfo/python-list

How does apache runs a application when a request comes in?

2014-05-06 Thread Norah Jones
browser since so that the ZeroMQ thread is being created everytime and being assigned the port but since the port has already been assigned it shows error Thanks, Norah Jones -- https://mail.python.org/mailman/listinfo/python-list

How to change scrollbar color in pygtk ?

2013-08-21 Thread Norah Jones
().modify_fg(gtk.STATE_NORMAL,gtk.gdk.color_parse('#40515F')) testCaseDescWindow.get_hscrollbar().modify_fg(gtk.STATE_NORMAL,gtk.gdk.color_parse('#40515F')) Thanks, Norah Jones -- http://mail.python.org/mailman/listinfo/python-list

How to access Apples iCal-Server via Python?

2015-05-24 Thread Norah Jones
d the events within a time range from a user's calendar using python? Thanks, Norah Jones -- https://mail.python.org/mailman/listinfo/python-list

How can i create a random array of floats from 0 to 5 in python

2013-03-12 Thread Norah Jones
I want to create a random float array of size 100, with the values in the array ranging from 0 to 5. I have tried random.sample(range(5),100) but that does not work. How can i get what i want to achieve? -- http://mail.python.org/mailman/listinfo/python-list

Finding the Min for positive and negative in python 3.3 list

2013-03-12 Thread Norah Jones
For example: a=[-15,-30,-10,1,3,5] I want to find a negative and a positive minimum. example: negative print(min(a)) = -30 positive print(min(a)) = 1 -- http://mail.python.org/mailman/listinfo/python-list

Multiple rows from MySQL query saved in an array structure

2013-03-20 Thread Norah Jones
I have this Python code: self.lock_tables("read", ['nets_permissions as n', 'devices_permissions as d']) usrs = self.db.get("SELECT n.user_id FROM nets_permissions as n \ left join devices_permissions as d \ on n.user_id = d.user_id \

Splitting a list into even size chunks in python?

2013-03-27 Thread Norah Jones
Hi, I have a list of arbitrary length, and I need to split it up into equal size chunks. There are some obvious ways to do this, like keeping a counter and two lists, and when the second list fills up, add it to the first list and empty the second list for the next round of data, but this is p