Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #75294
| From | "水静流深" <1248283536@qq.com> |
|---|---|
| Subject | NameError: name 'requests' is not defined ? |
| Date | 2014-07-28 11:52 +0800 |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.12374.1406519536.18130.python-list@python.org> (permalink) |
[Multipart message — attachments visible in raw view] - view raw
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"?
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
NameError: name 'requests' is not defined ? "水静流深" <1248283536@qq.com> - 2014-07-28 11:52 +0800 Re: NameError: name 'requests' is not defined ? Miki Tebeka <miki.tebeka@gmail.com> - 2014-07-27 21:27 -0700 Re: NameError: name 'requests' is not defined � Steven D'Aprano <steve@pearwood.info> - 2014-07-28 05:07 +0000
csiph-web