Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #75295
| References | <tencent_0C4197AD5C3B99803D5DA2BB@qq.com> |
|---|---|
| Date | 2014-07-27 21:23 -0700 |
| Subject | Re: NameError: name 'requests' is not defined ? |
| From | Dan Stromberg <drsalists@gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.12375.1406521444.18130.python-list@python.org> (permalink) |
On Sun, Jul 27, 2014 at 8:52 PM, 水静流深 <1248283536@qq.com> wrote: > there is a simple file `mydown.py` saved in `D:\Python34\Lib\site-packages` > there is only one line in mydown.py . > > import requests > > > > C:\Users\pengsir>d:\Python34\python > Python 3.4.0 (v3.4.0:04f714765c13, Mar 16 2014, 19:25:23) [MSC v.1600 64 bit > (AM > D64)] on win32 > Type "help", "copyright", "credits" or "license" for more information. >>>> import mydown >>>> dir(mydown) > ['__builtins__', '__cached__', '__doc__', '__file__', '__loader__', > '__name__', > '__package__', '__spec__', 'requests'] >>>> url='http://quote.eastmoney.com/hk/02222.html?StockCode=02222' >>>> requests.get(url) > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > NameError: name 'requests' is not defined > > why it run into "NameError: name 'requests' is not defined"? Perhaps try "mydown.requests.get(url)"?
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: NameError: name 'requests' is not defined ? Dan Stromberg <drsalists@gmail.com> - 2014-07-27 21:23 -0700
csiph-web