-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #213 from nobledeveloper01/noble
Created python.js file and added all Python docs in the README.md to …
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
awesome-oss-docs/src/constants/docs/orderByAlphabet/python.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
export default { | ||
title: "Python Open Source Documentation", | ||
documentations: [ | ||
{ | ||
title: "Python Docs", | ||
description: | ||
"Python is a high-level, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation. Python is dynamically typed and garbage-collected. It supports multiple programming paradigms, including structured, object-oriented, and functional programming.", | ||
projectUrl: "https://docs.python.org/3/", | ||
githubUrl: "", | ||
owner: "Community Owned Documentation", | ||
}, | ||
{ | ||
title: "CPython", | ||
description: | ||
"The Official Python programming language source code written in C.", | ||
projectUrl: "https://devguide.python.org/", | ||
githubUrl: "", | ||
owner: "Community Owned Documentation", | ||
}, | ||
], | ||
}; |