-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDeveloper_Readme.txt
More file actions
32 lines (24 loc) · 1.13 KB
/
Copy pathDeveloper_Readme.txt
File metadata and controls
32 lines (24 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Hey everyone,
Just links to a few useful pages regarding git and code formatting:
Code formatting:
It would be quite cool, if we could document everything well. The style
guidelines for this are included in PEP-8 and PEP-257(docstrings). I
also appended an article, which has all the information with examples.
PEPs:
https://www.python.org/dev/peps/pep-0008/
https://www.python.org/dev/peps/pep-0257/
Articles:
https://realpython.com/python-pep8/
https://realpython.com/documenting-python-code/#docstrings-background
Git:
Git is a bit complicated to get into and I'm just getting used to it.
However, I think if you make it a habit for coding there are great
advantages. There is a difference between git and github. Git can
be used on your local machine and allows you to switch between
different states of your code. Github does the same with a remote
repository, where different people can contribute.
I got you a link for a tutorial, which only should take you half an hour.
How git works:
https://githowto.com/
How to contribute to an online repo:
https://codeburst.io/a-step-by-step-guide-to-making-your-first-github-contribution-5302260a2940