We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ed252a commit 74f77a1Copy full SHA for 74f77a1
doc/source/development/code_style.rst
@@ -159,3 +159,18 @@ For example:
159
160
# wrong
161
from common import test_base
162
+
163
164
+Miscellaneous
165
+=============
166
167
+Reading from a url
168
+------------------
169
170
+**Good:**
171
172
+.. code-block:: python
173
174
+ from pandas.io.common import urlopen
175
+ with urlopen('http://www.google.com') as url:
176
+ raw_text = url.read()
0 commit comments