File tree Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -37,21 +37,21 @@ Bug reports must:
37
37
38
38
#. Include a short, self-contained Python snippet reproducing the problem.
39
39
You can format the code nicely by using `GitHub Flavored Markdown
40
- <http://github.github.com/github-flavored-markdown/> `_::
40
+ <http://github.github.com/github-flavored-markdown/> `__
41
+
42
+ .. code-block :: python
41
43
42
- ```python
43
44
>> > from pandas_gbq import gbq
44
45
>> > df = gbq.read_gbq(... )
45
46
...
46
- ` ``
47
47
48
- #. Include the full version string of *pandas-gbq *. ::
48
+ #. Include the full version string of *pandas-gbq *.
49
+
50
+ .. code-block :: python
49
51
50
- ```python
51
52
>> > import pandas_gbq
52
53
>> > pandas_gbq.__version__
53
54
...
54
- ```
55
55
56
56
#. Explain why the current behavior is wrong/not desired and what you expect instead.
57
57
@@ -282,7 +282,7 @@ directive. This should also be put in the docstring when adding a new function
282
282
or method.
283
283
284
284
Contributing your changes to *pandas-gbq *
285
- =====================================
285
+ =========================================
286
286
287
287
Committing your code
288
288
--------------------
@@ -438,4 +438,4 @@ branch has not actually been merged.
438
438
439
439
The branch will still exist on GitHub, so to delete it there do::
440
440
441
- git push origin --delete shiny-new-feature
441
+ git push origin --delete shiny-new-feature
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ Contents:
30
30
writing.rst
31
31
tables.rst
32
32
api.rst
33
+ contributing.rst
33
34
changelog.rst
34
35
35
36
Original file line number Diff line number Diff line change 1
1
.. _reader :
2
2
3
- Reading
4
- =======
3
+ Reading Tables
4
+ ==============
5
5
6
6
Suppose you want to load all data from an existing BigQuery table : `test_dataset.test_table `
7
7
into a DataFrame using the :func: `~read_gbq ` function.
Original file line number Diff line number Diff line change 1
1
.. _create_tables :
2
2
3
- Creating BigQuery Tables
4
- ========================
3
+ Creating Tables
4
+ ===============
5
5
6
6
.. code-block :: ipython
7
7
You can’t perform that action at this time.
0 commit comments