|
140 | 140 |
|
141 | 141 | - [watermark](https://github.com/rasbt/watermark) - An IPython magic extension for printing date and time stamps, version numbers, and hardware information.
|
142 | 142 |
|
143 |
| -- [Shell script](./useful_scripts/prepend_python_shebang.sh) for prepending Python-shebangs to .py files. |
| 143 | +- [Shell script](./useful_scripts/prepend_python_shebang.sh) For prepending Python-shebangs to .py files. |
144 | 144 |
|
145 |
| -- convert 'tab-delimited' to 'comma-separated' CSV files [[IPython nb](http://nbviewer.ipython.org/github/rasbt/python_reference/blob/master/useful_scripts/fix_tab_csv.ipynb)] |
| 145 | +- Convert 'tab-delimited' to 'comma-separated' CSV files [[IPython nb](http://nbviewer.ipython.org/github/rasbt/python_reference/blob/master/useful_scripts/fix_tab_csv.ipynb)] |
146 | 146 |
|
147 | 147 | - A random string generator [function](./useful_scripts/random_string_generator.py)
|
148 | 148 |
|
|
156 | 156 |
|
157 | 157 |
|
158 | 158 |
|
159 |
| -- [PyPI - the Python Package Index](https://pypi.python.org/pypi) - the official repository for all open source Python modules and packages |
| 159 | +- [PyPI - the Python Package Index](https://pypi.python.org/pypi) - The official repository for all open source Python modules and packages. |
160 | 160 |
|
161 |
| -- [PEP 8](http://legacy.python.org/dev/peps/pep-0008/) - The official style guide for Python code |
| 161 | +- [PEP 8](http://legacy.python.org/dev/peps/pep-0008/) - The official style guide for Python code. |
162 | 162 |
|
163 | 163 |
|
| 164 | +<br> |
164 | 165 |
|
165 | 166 | **// News**
|
166 | 167 |
|
167 |
| -- [Python subreddit](http://www.reddit.com/r/Python/) - my favorite resource to catch up with Python news and great Python-related articles |
| 168 | +- [Python subreddit](http://www.reddit.com/r/Python/) - My favorite resource to catch up with Python news and great Python-related articles. |
168 | 169 |
|
169 |
| -- [Python community on Google+](https://plus.google.com/communities/103393744324769547228) - a nice and friendly community to share and discuss everything about Python |
| 170 | +- [Python community on Google+](https://plus.google.com/communities/103393744324769547228) - A nice and friendly community to share and discuss everything about Python. |
170 | 171 |
|
171 |
| -- [Python Weekly](http://www.pythonweekly.com) - A free weekly newsletter featuring curated news, articles, new releases, jobs etc. related to Python |
| 172 | +- [Python Weekly](http://www.pythonweekly.com) - A free weekly newsletter featuring curated news, articles, new releases, jobs etc. related to Python. |
172 | 173 |
|
173 | 174 |
|
| 175 | +<br> |
174 | 176 |
|
175 | 177 | **// Resources for learning Python**
|
176 | 178 |
|
177 |
| -- [Learn Python The Hard Way](http://learnpythonthehardway.org/book/) - one of the most popular and recommended resources for learning Python |
| 179 | +- [Learn Python The Hard Way](http://learnpythonthehardway.org/book/) - The popular and probably most recommended resource for learning Python. |
| 180 | + |
| 181 | +- [Dive Into Python](http://www.diveintopython.net) / [Dive Into Python 3](http://getpython3.com/diveintopython3/) - A free Python book for experienced programmers. |
178 | 182 |
|
179 |
| -- [Dive Into Python](http://www.diveintopython.net) / [Dive Into Python 3](http://getpython3.com/diveintopython3/) - a free Python book for experienced programmers |
| 183 | +- [The Hitchhiker’s Guide to Python](http://docs.python-guide.org/en/latest/) - A free best-practice handbook for both novices and experts. |
180 | 184 |
|
181 |
| -- [The Hitchhiker’s Guide to Python](http://docs.python-guide.org/en/latest/) - a free best-practice handbook for both novices and experts |
| 185 | +- [Think Python - How to Think Like a Computer Scientist](http://www.greenteapress.com/thinkpython/) - An introduction for beginners starting with basic concepts of programming. |
182 | 186 |
|
183 |
| -- [Think Python - How to Think Like a Computer Scientist](http://www.greenteapress.com/thinkpython/) - an introduction for beginners starting with basic concepts of programming |
| 187 | +- [Python Patterns](http://matthiaseisen.com/pp/topics/t003/) - A directory of proven, reusable solutions to common programming problems. |
| 188 | + |
| 189 | +<br> |
184 | 190 |
|
185 | 191 | **// My favorite Python projects and packages**
|
186 | 192 |
|
187 |
| -- [The IPython Notebook](http://ipython.org/notebook.html) - an interactive computational environment for combining code execution, documentation (with Markdown and LateX support), inline plots, and rich media all in one document. |
| 193 | +- [The IPython Notebook](http://ipython.org/notebook.html) - An interactive computational environment for combining code execution, documentation (with Markdown and LateX support), inline plots, and rich media all in one document. |
188 | 194 |
|
189 |
| -- [matplotlib](http://matplotlib.org) - Python's favorite plotting library |
| 195 | +- [matplotlib](http://matplotlib.org) - Python's favorite plotting library. |
190 | 196 |
|
191 |
| -- [NumPy](http://www.numpy.org) - a library for multi-dimensional arrays and matrices, along with a large library of high-level mathematical functions to operate on these arrays |
| 197 | +- [NumPy](http://www.numpy.org) - A library for multi-dimensional arrays and matrices, along with a large library of high-level mathematical functions to operate on these arrays. |
192 | 198 |
|
193 |
| -- [SciPy](http://www.scipy.org) - a library that provides various useful functions for numerical computing, such as modules for optimization, linear algebra, integration, interpolation, ... |
| 199 | +- [SciPy](http://www.scipy.org) - A library that provides various useful functions for numerical computing, such as modules for optimization, linear algebra, integration, interpolation, ... |
194 | 200 |
|
195 | 201 |
|
196 |
| -- [pandas](http://pandas.pydata.org) - high-performance, easy-to-use data structures and data analysis tools build on top of Numpy |
| 202 | +- [pandas](http://pandas.pydata.org) - High-performance, easy-to-use data structures and data analysis tools build on top of NumPy. |
197 | 203 |
|
198 |
| -- [Cython](http://cython.org) - C-extensions for Python, an optimizing static compiler to combine Python and C code |
| 204 | +- [Cython](http://cython.org) - C-extensions for Python, an optimizing static compiler to combine Python and C code. |
199 | 205 |
|
200 |
| -- [Numba](http://numba.pydata.org) - an just-in-time specializing compiler which compiles annotated Python and NumPy code to LLVM (through decorators) |
| 206 | +- [Numba](http://numba.pydata.org) - A just-in-time specializing compiler which compiles annotated Python and NumPy code to LLVM (through decorators) |
201 | 207 |
|
202 |
| -- [scikit-learn](http://scikit-learn.org/stable/) - a powerful machine learning library for Python and tools for efficient data mining and analysis |
| 208 | +- [scikit-learn](http://scikit-learn.org/stable/) - A powerful machine learning library for Python and tools for efficient data mining and analysis. |
203 | 209 |
|
204 | 210 |
|
205 | 211 |
|
0 commit comments