473,387 Members | 3,810 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Problem with proxies


Hi All,

I access net using a proxy, which I have to authenticate everytime I try
to access net from my system. Now when I use urllib2.urlopen(url) , I
cant get ahead. I must provide proxy authentication , I tried reading
docs online which speak of something called as FancyUrlOpener. Now i
want to hardcode my username and password inside the script or somehow
save it.

How do I go ahead with that ??

-
Ameet

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email.

www.wipro.com
Oct 16 '07 #1
3 1693
i have never used proxies, in college it works fine dont know abt ur
wipro settings.
anyway try this http://docs.python.org/lib/urllib2-examples.html

then l8tr try this http://docs.python.org/lib/module-urllib2.html


Oct 16 '07 #2
I have struggling to efficiently convert a string list to
number. Here is my problem. I have a file that contains lines
such as:

data_1 1 1 2 3.5

After I read the data from the file by using readlines(), each
line contains a string. I use the re moduel to split the line
into ['data_1', '1','1','2','3.5']. I want to create a
dictionary which contains

{'data_1':[1 1 2 3.5]}

The problem is I coud not efficiently find a way to convert
the string to number.

Does anyone know how to create such dictionary efficiently?
Despite my Spidey-sense tingling that this is a homework
assignment, as similar forms of the question have popped up
several times in the last week, I supress it this time.

Paraphrasing Andy Dufresne, "Mr. Wang, do you trust your file?"[1]

If you don't trust the content of your file, you have to know either

1) how many columns of data to expect or
2) the type each should be (int or float)

If the same type for each is okay, you can use something like
>>s = {}
for line in file('in.txt'):
... k,v = line.rstrip('\n').split(None, 1)
... s[k] = map(float, v.split())
...
>>s
{'data_1': [1.0, 1.0, 2.0, 3.5], 'data_4': [1.0, 1.0, 8.0, 4.5]}

However, if you want them to be the actual types that evaluating
them would give (thus the trust-your-source issue), you can use this:
>>s = {}
for line in file('in.txt'):
... k,v = line.rstrip('\n').split(None, 1)
... s[k] = map(eval, v.split())
...
>>s
{'data_1': [1, 1, 2, 3.5], 'data_4': [1, 1, 8, 4.5]}
Both instances don't try to do anything smart with duplicate
keys, so if you want to append, Bruno Desthuilliers *just* posted
(in the last hour or so) a nice tip on this using
setdefault().append()

-tkc

[1]http://www.finestquotes.com/movie_quotes/movie/Shawshank%20Redemption/page/0.htm

Oct 16 '07 #3
I am new to Python and find it very interesting

welcome to the wonderful world of Python :)
so I decided to try to port a big project from matlab to
python. To prove the value of the python, I need to find an
python way to do it.
A good exercise for learning Python.
The input file contains many lines of data starts with a
label. The data lengths are not the same and the data type is
mixed with int and float. Some lines start with comment sign #
need to be removed from the dictionary. The mixed int and
float really cause me trouble to convert the data efficiently.
I will try your suggestion

Just check the results on each line as you iterate over
them...something like

results = {}
for line in file('in.txt'):
line = line.strip()
if line.startswith('#'): continue
key, values = line.split(None,1)
results[key] = map(eval, values.split())

-tkc

Oct 16 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: Clive Backham | last post by:
I tried posting this on comp.infosystems.www.misc, but that group appears to get very little traffic. So now I'm trying here. If there is a more appropriate group, please let me know. I'm...
0
by: jan v | last post by:
Hi everyone I have a problem with events. When the code reaches communication.SynchronisationServer.UpdateNotificationEvent+=new...
1
by: vijay | last post by:
Hello I am learnign Dot NEt I have implemted 1. remote object 2.Listener 3.Client Listener started and listening to requests Client started and able to nstantiate remote object But when a...
1
by: David Krmpotic | last post by:
Hi All! I have a .NET remoting Client-Server application with Server Activated Objects only.. something is worrying me.. sometimes (rarely), I can't connect to the server although it is...
0
by: hugo batista | last post by:
Hi Sorry to crosspost, but i'm not knowing what should be the correct newsgroup for this.... I have a web application which i want to show a windows forms user control in my web form. (lets...
4
by: Molina | last post by:
Hi !!! I have a VB.Net application that consumes an WebService. The problem is that the HTTP address works fine, but it will change to an HTTPS address, and it isn't working. The weird thing...
2
by: SenthilVel | last post by:
Hi All i am getting an error in remoting proxies like the below : Exception rethrown at : at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)...
1
by: SenthilVel | last post by:
Hi All i am getting an error in remoting proxies like the below : Exception rethrown at : at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)...
1
by: james | last post by:
Hi Guys, Is it expensive to create proxies in WCF? I always create new proxy instances (when not using sessions) so I don't have to worry about a proxy falling into a Faulted state. I started...
0
by: Kristian Reukauff | last post by:
Hi I have a problem with the .Net-Securty-Functions. I've got a client and a server. When I try to register a channel at the server with this line: ChannelServices.RegisterChannel(chan, false);...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.