Skip to content

Commit 723f362

Browse files
committed
First commit
0 parents  commit 723f362

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+4577
-0
lines changed

9781484222409.jpg

34.6 KB
Loading

LICENSE.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Freeware License, some rights reserved
2+
3+
Copyright (c) 2017 Kristian Rother
4+
5+
Permission is hereby granted, free of charge, to anyone obtaining a copy
6+
of this software and associated documentation files (the "Software"),
7+
to work with the Software within the limits of freeware distribution and fair use.
8+
This includes the rights to use, copy, and modify the Software for personal use.
9+
Users are also allowed and encouraged to submit corrections and modifications
10+
to the Software for the benefit of other users.
11+
12+
It is not allowed to reuse, modify, or redistribute the Software for
13+
commercial use in any way, or for a user�s educational materials such as books
14+
or blog articles without prior permission from the copyright holder.
15+
16+
The above copyright notice and this permission notice need to be included
17+
in all copies or substantial portions of the software.
18+
19+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22+
AUTHORS OR COPYRIGHT HOLDERS OR APRESS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25+
SOFTWARE.
26+
27+

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#Apress Source Code
2+
3+
This repository accompanies [*Pro Python Best Practices*](http://www.apress.com/9781484222409) by Kristian Rother (Apress, 2017).
4+
5+
![Cover image](9781484222409.jpg)
6+
7+
Download the files as a zip using the green button, or clone the repository to your machine using Git.
8+
9+
##Releases
10+
11+
Release v1.0 corresponds to the code in the published book, without corrections or updates.
12+
13+
##Contributions
14+
15+
See the file Contributing.md for more information on how you can contribute to this repository.

contributing.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Contributing to Apress Source Code
2+
3+
Copyright for Apress source code belongs to the author(s). However, under fair use you are encouraged to fork and contribute minor corrections and updates for the benefit of the author(s) and other readers.
4+
5+
## How to Contribute
6+
7+
1. Make sure you have a GitHub account.
8+
2. Fork the repository for the relevant book.
9+
3. Create a new branch on which to make your change, e.g.
10+
`git checkout -b my_code_contribution`
11+
4. Commit your change. Include a commit message describing the correction. Please note that if your commit message is not clear, the correction will not be accepted.
12+
5. Submit a pull request.
13+
14+
Thank you for your contribution!

maze_run-master/LICENSE.TXT

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2016 Kristian Rother
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

maze_run-master/README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
# Python Best Practices
3+
4+
(c) 2016 Dr. Kristian Rother
5+
6+
* [Chapter 1](https://github.com/krother/maze_run/tree/chapter_01)
7+
8+
## Part I - Debugging
9+
10+
* [Chapter 2](https://github.com/krother/maze_run/tree/chapter_02)
11+
* [Chapter 3](https://github.com/krother/maze_run/tree/chapter_03)
12+
* [Chapter 4](https://github.com/krother/maze_run/tree/chapter_04)
13+
* [Chapter 5](https://github.com/krother/maze_run/tree/chapter_05)
14+
* [Chapter 6](https://github.com/krother/maze_run/tree/chapter_06)
15+
* [Chapter 7](https://github.com/krother/maze_run/tree/chapter_07)
16+
17+
## Part II - Organizing Code
18+
19+
* [Chapter 8](https://github.com/krother/maze_run/tree/chapter_08)
20+
* [Chapter 9](https://github.com/krother/maze_run/tree/chapter_09)
21+
* [Chapter 10](https://github.com/krother/maze_run/tree/chapter_10)
22+
* [Chapter 11](https://github.com/krother/maze_run/tree/chapter_11)
23+
* [Chapter 12](https://github.com/krother/maze_run/tree/chapter_12)
24+
* [Chapter 13](https://github.com/krother/maze_run/tree/chapter_13)
25+
* [Chapter 14](https://github.com/krother/maze_run/tree/chapter_14)
26+

0 commit comments

Comments
 (0)