Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: yangjunyan/awesome-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: vinta/awesome-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
Loading
Showing with 1,082 additions and 892 deletions.
  1. +1 −0 .github/FUNDING.yml
  2. +10 −0 .github/ISSUE_TEMPLATE/add-new-library-to-this-list.md
  3. +10 −0 .github/ISSUE_TEMPLATE/add-xxx.md
  4. +11 −0 .github/PULL_REQUEST_TEMPLATE.md
  5. +7 −0 .gitignore
  6. +18 −0 .travis.yml
  7. +12 −7 CONTRIBUTING.md
  8. +14 −0 Makefile
  9. +927 −884 README.md
  10. +1 −0 docs/CNAME
  11. +9 −0 docs/css/extra.css
  12. +26 −0 mkdocs.yml
  13. +2 −0 requirements.txt
  14. +34 −1 sort.py
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# These are supported funding model platforms
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/add-new-library-to-this-list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Add new library to this list
about: ''
title: ''
labels: ''
assignees: ''

---

**Please open a Pull Request instead.**
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/add-xxx.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Add XXX
about: Add new item to the list
title: ''
labels: ''
assignees: ''

---

**Please open a Pull Request instead.**
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## What is this Python project?

Describe features.

## What's the difference between this Python project and similar ones?

Enumerate comparisons.

--

Anyone who agrees with this pull request could submit an *Approve* review to it.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
.DS_Store

*.py[co]

docs/index.md
site/

# PyCharm IDE
.idea
18 changes: 18 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
language: python

python:
- "3.6"

script:
- python sort.py
- cp README.md docs/index.md
- mkdocs build

deploy:
provider: pages
local-dir: site
skip-cleanup: true
keep-history: true
github-token: $GITHUB_TOKEN
on:
branch: master
19 changes: 12 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -4,12 +4,17 @@ Your contributions are always welcome!

## Guidelines

* Add section if needed.
* Add section description.
* Add section title to Table of contents.
* Search previous suggestions before making a new one, as yours may be a duplicate.
* Add your links: `* [project-name](http://example.com/) - A short description ends with a dot.`
* Add one link per Pull Request.
* Make sure the PR title is in the format of `Add project-name`.
* Write down the reason why the library is awesome.
* Add the link: `* [project-name](http://example.com/) - A short description ends with a period.`
* Keep descriptions concise and **short**.
* Add a section if needed.
* Add the section description.
* Add the section title to Table of Contents.
* Search previous Pull Requests or Issues before making a new one, as yours may be a duplicate.
* Don't mention `Python` in the description as it's implied.
* Check your spelling and grammar.
* Make sure your text editor is set to remove trailing whitespace.
* Send a Pull Request.
* Remove any trailing whitespace.

Just a gentle reminder: **Try not to submit your own project. Instead, wait for someone finds it useful and submits it for you.**
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
site_install:
pip install -r requirements.txt

site_link:
ln -sf $(CURDIR)/README.md $(CURDIR)/docs/index.md

site_preview: site_link
mkdocs serve

site_build: site_link
mkdocs build

site_deploy: site_link
mkdocs gh-deploy --clean
Loading