Skip to content

Commit 23b91a3

Browse files
committed
move contributing section above tldr in readme
1 parent a109c74 commit 23b91a3

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,6 @@ df.row_by_value('x', 10)
121121
- **register_series_method**: register a methods directly with a pandas Series.
122122
- **register_series_accessor**: register an accessor (and it's methods) with a pandas Series.
123123

124-
125-
126124
## Installation
127125

128126
You can install using **pip**:
@@ -134,6 +132,12 @@ or conda (thanks @ericmjl)!
134132
conda install -c conda-forge pandas-flavor
135133
```
136134

135+
## Contributing
136+
137+
Pull requests are always welcome! If you find a bug, don't hestitate to open an issue or submit a PR. If you're not sure how to do that, check out this [simple guide](https://github.com/Zsailer/guide-to-working-as-team-on-github).
138+
139+
If you have a feature request, please open an issue or submit a PR!
140+
137141
## TL;DR
138142

139143
Pandas 0.23 introduced a simpler API for [extending Pandas](https://pandas.pydata.org/pandas-docs/stable/development/extending.html#extending-pandas). This API provided two key decorators, `register_dataframe_accessor` and `register_series_accessor`, that enable users to register **accessors** with Pandas DataFrames and Series.
@@ -147,9 +151,3 @@ Pandas Flavor originated as a library to backport these decorators to older vers
147151
When you register a method, Pandas flavor actually creates and registers a (this is subtle, but important) **custom accessor class that mimics** the behavior of a method by:
148152
1. inheriting the docstring of your function
149153
2. overriding the `__call__` method to call your function.
150-
151-
## Contributing
152-
153-
Pull requests are always welcome! If you find a bug, don't hestitate to open an issue or submit a PR. If you're not sure how to do that, check out this [simple guide](https://github.com/Zsailer/guide-to-working-as-team-on-github).
154-
155-
If you have a feature request, please open an issue or submit a PR!

0 commit comments

Comments
 (0)