We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 797ff80 commit 8a89f2bCopy full SHA for 8a89f2b
doc/source/whatsnew/v1.3.0.rst
@@ -36,14 +36,14 @@ headers included in the request. This can be used to control the User-Agent
36
header or send other custom headers (:issue:`36688`).
37
For example:
38
39
-.. ipython:: python
+.. code-block:: ipython
40
41
- headers = {"User-Agent": "pandas"}
42
- df = pd.read_csv(
43
- "https://download.bls.gov/pub/time.series/cu/cu.item",
44
- sep="\t",
45
- storage_options=headers
46
- )
+ In [1]: headers = {"User-Agent": "pandas"}
+ In [2]: df = pd.read_csv(
+ ...: "https://download.bls.gov/pub/time.series/cu/cu.item",
+ ...: sep="\t",
+ ...: storage_options=headers
+ ...: )
47
48
.. _whatsnew_130.enhancements.read_to_xml:
49
0 commit comments