├── .gitignore ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── 4-bug.yml │ ├── 5-feature.yml │ ├── 3-category.yml │ ├── 1-repository.yml │ └── 2-change.yml ├── pull_request_template.md ├── dependabot.yml └── workflows │ ├── dependabot.yml │ ├── reference.yml │ ├── issue.yml │ ├── accepted.yml │ ├── category.yml │ ├── repository.yml │ ├── change.yml │ └── update.yml ├── logo.png ├── categories.json ├── repositories.json ├── README.md └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Katsute/awesome-myanimelist/HEAD/logo.png -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /categories.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Android", 3 | "Browser Extension", 4 | "Client", 5 | "Database", 6 | "Discord Bot", 7 | "List Design", 8 | "List Tracker", 9 | "Profile", 10 | "Programming", 11 | "Userscript", 12 | "Website" 13 | ] -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: github-actions 4 | directory: / 5 | labels: [dependencies] 6 | assignees: [Katsute] 7 | schedule: 8 | interval: monthly 9 | time: "00:00" 10 | timezone: US/Eastern 11 | open-pull-requests-limit: 10 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4-bug.yml: -------------------------------------------------------------------------------- 1 | name: ⚠️ Bug Report 2 | description: Report an issue with this repository. 3 | labels: [bug] 4 | body: 5 | - type: textarea 6 | attributes: 7 | label: Issue 8 | description: | 9 | Describe the issue and include steps to replicate if possible. 10 | validations: 11 | required: true -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- 1 | name: Dependabot[bot] 2 | 3 | on: [pull_request_target] 4 | 5 | jobs: 6 | dependabot: 7 | name: Dependabot[bot] 8 | runs-on: ubuntu-latest 9 | timeout-minutes: 10 10 | if: github.event.pull_request.user.login == 'dependabot[bot]' 11 | steps: 12 | - name: Checkout Repository 13 | uses: actions/checkout@v6 14 | 15 | - name: Approve Pull Request 16 | continue-on-error: true 17 | run: gh pr review $PR --approve 18 | env: 19 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 20 | PR: ${{ github.event.pull_request.number }} -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/5-feature.yml: -------------------------------------------------------------------------------- 1 | name: 🆕 Feature Request 2 | description: Suggestions for this repository. 3 | labels: [feature request] 4 | body: 5 | - type: markdown 6 | attributes: 7 | value: | 8 | This form is only for requesting new features, if you want to add a new category or repository please use one of the below forms: 9 | 10 | * [Category Request](https://github.com/Katsute/awesome-myanimelist/issues/new?template=3-category.yml) 11 | * [Repository Request](https://github.com/Katsute/awesome-myanimelist/issues/new?template=1-repository.yml) 12 | 13 | - type: textarea 14 | attributes: 15 | label: Feature 16 | description: | 17 | Describe the feature. 18 | validations: 19 | required: true 20 | 21 | - type: textarea 22 | attributes: 23 | label: Reason 24 | description: | 25 | Explain why this feature should be added. 26 | validations: 27 | required: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-category.yml: -------------------------------------------------------------------------------- 1 | name: ➕ Category Request 2 | description: Add a new category type to this list. 3 | labels: [category request] 4 | assignees: [Katsute] 5 | body: 6 | - type: input 7 | attributes: 8 | label: Category 9 | description: The proposed category name. Alphanumerics only. 10 | validations: 11 | required: true 12 | 13 | - type: textarea 14 | attributes: 15 | label: Reason 16 | description: Explain why you think this category should be added. 17 | validations: 18 | required: true 19 | 20 | - type: textarea 21 | attributes: 22 | label: Examples 23 | description: Include a list of repositories that might appear in the proposed category (using ones already in this list is also acceptable). 24 | validations: 25 | required: true 26 | 27 | - type: markdown 28 | attributes: 29 | value: | 30 | Do not modify this form after you submit your request, our workflows depend on a strict request format. -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-repository.yml: -------------------------------------------------------------------------------- 1 | name: ➕ Repository Request 2 | description: Add your repository to this list. 3 | labels: [repository request] 4 | assignees: [Katsute] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Repositories can only be submitted to this list if: 10 | 11 | * Related directly to MyAnimeList. 12 | * At least 10 stars. 13 | * Updated within the last year. 14 | 15 | - type: input 16 | attributes: 17 | label: Repository 18 | description: | 19 | The repository owner and name. Example: `Katsute/awesome-myanimelist` 20 | validations: 21 | required: true 22 | 23 | - type: dropdown 24 | attributes: 25 | label: Category 26 | description: Which categories the repository should appear in. 27 | multiple: true 28 | options: [Android, Browser Extension, Client, Database, Discord Bot, List Design, List Tracker, Profile, Programming, Userscript, Website] 29 | validations: 30 | required: true 31 | 32 | - type: markdown 33 | attributes: 34 | value: | 35 | Do not modify this form after you submit your request, our workflows depend on a strict request format. -------------------------------------------------------------------------------- /.github/workflows/reference.yml: -------------------------------------------------------------------------------- 1 | name: Repository Reference 2 | 3 | on: 4 | issues: 5 | types: [opened, reopened] 6 | 7 | jobs: 8 | lock-issue: 9 | name: Repository Reference 10 | runs-on: ubuntu-latest 11 | if: contains(github.event.issue.labels.*.name, 'repository request') || contains(github.event.issue.labels.*.name, 'change request') 12 | steps: 13 | - name: Checkout Repository 14 | uses: actions/checkout@v6 15 | with: 16 | token: ${{ secrets.GITHUB_TOKEN }} 17 | 18 | - name: Parse Body 19 | uses: actions/github-script@v8 20 | env: 21 | BODY: ${{ github.event.issue.body }} 22 | with: 23 | github-token: ${{ secrets.GITHUB_TOKEN }} 24 | script: |- 25 | core.exportVariable("REPOSITORY", process.env.BODY.split(/(?:\r?\n){2,}/gm)[1]); 26 | 27 | - name: Post Comment 28 | run: |- 29 | gh issue comment $ISSUE -b "Repository: [$REPOSITORY](https://github.com/$REPOSITORY)

This is an automated message, do not reply to this comment." 30 | env: 31 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 32 | ISSUE: ${{ github.event.issue.number }} 33 | REPOSITORY: ${{ env.REPOSITORY }} -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-change.yml: -------------------------------------------------------------------------------- 1 | name: ➕ Change Request 2 | description: Change or remove a listed repository. 3 | labels: [change request] 4 | assignees: [Katsute] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Change requests are only permitted if you **own the repository** that is being changed. Do not submit a request if you are not the owner. 10 | 11 | - type: input 12 | attributes: 13 | label: Repository 14 | description: | 15 | The repository owner and name. Example: `Katsute/awesome-myanimelist` 16 | validations: 17 | required: true 18 | 19 | - type: dropdown 20 | attributes: 21 | label: Change Request 22 | options: 23 | - Modify this listing 24 | - Remove this listing 25 | validations: 26 | required: true 27 | 28 | - type: markdown 29 | attributes: 30 | value: | 31 | If you are removing a listing you can skip the below section, otherwise please select which categories the repository should be listed under. 32 | 33 | - type: dropdown 34 | attributes: 35 | label: Category 36 | description: Which categories the repository should appear in. 37 | multiple: true 38 | options: [Android, Browser Extension, Client, Database, Discord Bot, List Design, List Tracker, Profile, Programming, Userscript, Website] 39 | validations: 40 | required: false 41 | 42 | - type: markdown 43 | attributes: 44 | value: | 45 | Do not modify this form after you submit your request, our workflows depend on a strict request format. -------------------------------------------------------------------------------- /.github/workflows/issue.yml: -------------------------------------------------------------------------------- 1 | name: Issue Lock 2 | 3 | on: 4 | issues: 5 | types: [opened, reopened, closed] 6 | pull_request: 7 | types: [opened, reopened, closed] 8 | 9 | jobs: 10 | lock-issue: 11 | name: Lock Issue 12 | runs-on: ubuntu-latest 13 | if: github.event.action == 'closed' && github.event.issue 14 | steps: 15 | - name: Checkout Repository 16 | uses: actions/checkout@v6 17 | with: 18 | token: ${{ secrets.GITHUB_TOKEN }} 19 | 20 | - name: Lock Issue 21 | run: gh issue lock $ISSUE 22 | env: 23 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 24 | ISSUE: ${{ github.event.issue.number }} 25 | 26 | unlock-issue: 27 | name: Unlock Issue 28 | runs-on: ubuntu-latest 29 | if: github.event.action != 'closed' && github.event.issue 30 | steps: 31 | - name: Checkout Repository 32 | uses: actions/checkout@v6 33 | with: 34 | token: ${{ secrets.GITHUB_TOKEN }} 35 | 36 | - name: Unlock Issue 37 | run: gh issue unlock $ISSUE 38 | env: 39 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 40 | ISSUE: ${{ github.event.issue.number }} 41 | 42 | lock-pr: 43 | name: Lock Pull Request 44 | runs-on: ubuntu-latest 45 | if: github.event.action == 'closed' && github.event.pull_request 46 | steps: 47 | - name: Checkout Repository 48 | uses: actions/checkout@v6 49 | with: 50 | token: ${{ secrets.GITHUB_TOKEN }} 51 | 52 | - name: Lock Issue 53 | run: gh pr lock $ISSUE 54 | env: 55 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 56 | ISSUE: ${{ github.event.pull_request.number }} 57 | 58 | unlock-pr: 59 | name: Unlock Pull Request 60 | runs-on: ubuntu-latest 61 | if: github.event.action != 'closed' && github.event.pull_request 62 | steps: 63 | - name: Checkout Repository 64 | uses: actions/checkout@v6 65 | with: 66 | token: ${{ secrets.GITHUB_TOKEN }} 67 | 68 | - name: Unlock Issue 69 | run: gh pr unlock $ISSUE 70 | env: 71 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 72 | ISSUE: ${{ github.event.pull_request.number }} -------------------------------------------------------------------------------- /repositories.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "repository": "9elt/Reko", 4 | "category": [ 5 | "Website" 6 | ] 7 | }, 8 | { 9 | "repository": "axiel7/MoeList", 10 | "category": [ 11 | "Android", 12 | "List Tracker" 13 | ] 14 | }, 15 | { 16 | "repository": "Chris-Kode/myanimelist-api-v2", 17 | "category": [ 18 | "Programming" 19 | ] 20 | }, 21 | { 22 | "repository": "darenliang/mal-api", 23 | "category": [ 24 | "Programming" 25 | ] 26 | }, 27 | { 28 | "repository": "destructo570/Sushi-Unofficial-MAL-Client", 29 | "category": [ 30 | "Android", 31 | "List Tracker" 32 | ] 33 | }, 34 | { 35 | "repository": "Drutol/MALClient", 36 | "category": [ 37 | "Android", 38 | "Client", 39 | "List Tracker" 40 | ] 41 | }, 42 | { 43 | "repository": "erengy/taiga", 44 | "category": [ 45 | "Client", 46 | "List Tracker" 47 | ] 48 | }, 49 | { 50 | "repository": "infanf/myanili", 51 | "category": [ 52 | "List Tracker", 53 | "Website" 54 | ] 55 | }, 56 | { 57 | "repository": "JICA98/DailyAL", 58 | "category": [ 59 | "Client" 60 | ] 61 | }, 62 | { 63 | "repository": "jikan-me/jikan", 64 | "category": [ 65 | "Programming" 66 | ] 67 | }, 68 | { 69 | "repository": "KatsuteDev/Mal4J", 70 | "category": [ 71 | "Programming" 72 | ] 73 | }, 74 | { 75 | "repository": "Kylart/MalScraper", 76 | "category": [ 77 | "Programming" 78 | ] 79 | }, 80 | { 81 | "repository": "MAL-Dubs/MAL-Dubs", 82 | "category": [ 83 | "Userscript" 84 | ] 85 | }, 86 | { 87 | "repository": "MALSync/MALSync", 88 | "category": [ 89 | "Browser Extension", 90 | "List Tracker" 91 | ] 92 | }, 93 | { 94 | "repository": "nstratos/go-myanimelist", 95 | "category": [ 96 | "Programming" 97 | ] 98 | }, 99 | { 100 | "repository": "platers/MAL-Map", 101 | "category": [ 102 | "Programming" 103 | ] 104 | }, 105 | { 106 | "repository": "rl404/sekai", 107 | "category": [ 108 | "Website" 109 | ] 110 | }, 111 | { 112 | "repository": "Sharkaboi/MediaHub", 113 | "category": [ 114 | "Android", 115 | "List Tracker" 116 | ] 117 | }, 118 | { 119 | "repository": "ValerioLyndon/MAL-Public-List-Designs", 120 | "category": [ 121 | "List Design" 122 | ] 123 | }, 124 | { 125 | "repository": "ValerioLyndon/Theme-Customiser", 126 | "category": [ 127 | "List Design" 128 | ] 129 | } 130 | ] -------------------------------------------------------------------------------- /.github/workflows/accepted.yml: -------------------------------------------------------------------------------- 1 | name: Accepted Change 2 | 3 | on: 4 | issues: 5 | types: [closed] 6 | 7 | jobs: 8 | category: 9 | name: Accepted Category 10 | runs-on: ubuntu-latest 11 | if: contains(github.event.issue.labels.*.name, 'accepted') && contains(github.event.issue.labels.*.name, 'category request') 12 | steps: 13 | - name: Checkout Repository 14 | uses: actions/checkout@v6 15 | with: 16 | token: ${{ secrets.GITHUB_TOKEN }} 17 | 18 | - name: Parse Body 19 | uses: actions/github-script@v8 20 | env: 21 | BODY: ${{ github.event.issue.body }} 22 | with: 23 | github-token: ${{ secrets.GITHUB_TOKEN }} 24 | script: core.exportVariable("CATEGORY", process.env.BODY.split(/(?:\r?\n){2,}/gm)[1]); 25 | 26 | - name: Dispatch Workflow 27 | env: 28 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 29 | CATEGORY: ${{ env.CATEGORY }} 30 | run: gh workflow run category.yml -f category=$CATEGORY 31 | 32 | item: 33 | name: Accepted Repository 34 | runs-on: ubuntu-latest 35 | if: contains(github.event.issue.labels.*.name, 'accepted') && contains(github.event.issue.labels.*.name, 'repository request') 36 | steps: 37 | - name: Checkout Repository 38 | uses: actions/checkout@v6 39 | with: 40 | token: ${{ secrets.GITHUB_TOKEN }} 41 | 42 | - name: Parse Body 43 | uses: actions/github-script@v8 44 | env: 45 | BODY: ${{ github.event.issue.body }} 46 | with: 47 | github-token: ${{ secrets.GITHUB_TOKEN }} 48 | script: |- 49 | core.exportVariable("REPOSITORY", process.env.BODY.split(/(?:\r?\n){2,}/gm)[1]); 50 | core.exportVariable("CATEGORY", process.env.BODY.split(/(?:\r?\n){2,}/gm)[3].replace(/ /gm, "")); 51 | 52 | - name: Dispatch Workflow 53 | env: 54 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 55 | REPOSITORY: ${{ env.REPOSITORY }} 56 | CATEGORY: ${{ env.CATEGORY }} 57 | run: gh workflow run repository.yml -f repository=$REPOSITORY -f category=$CATEGORY 58 | 59 | change: 60 | name: Accepted Change 61 | runs-on: ubuntu-latest 62 | if: contains(github.event.issue.labels.*.name, 'accepted') && contains(github.event.issue.labels.*.name, 'change request') 63 | steps: 64 | - name: Checkout Repository 65 | uses: actions/checkout@v6 66 | with: 67 | token: ${{ secrets.GITHUB_TOKEN }} 68 | 69 | - name: Parse Body 70 | uses: actions/github-script@v8 71 | env: 72 | BODY: ${{ github.event.issue.body }} 73 | with: 74 | github-token: ${{ secrets.GITHUB_TOKEN }} 75 | script: |- 76 | core.exportVariable("REPOSITORY", process.env.BODY.split(/(?:\r?\n){2,}/gm)[1]); 77 | core.exportVariable("CATEGORY", process.env.BODY.split(/(?:\r?\n){2,}/gm)[5].replace(/ /gm, "")); 78 | 79 | - name: Dispatch Workflow 80 | env: 81 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 82 | REPOSITORY: ${{ env.REPOSITORY }} 83 | CATEGORY: ${{ env.CATEGORY }} 84 | run: gh workflow run change.yml -f repository=$REPOSITORY -f category=$CATEGORY -------------------------------------------------------------------------------- /.github/workflows/category.yml: -------------------------------------------------------------------------------- 1 | name: New Category 2 | 3 | on: 4 | workflow_dispatch: 5 | inputs: 6 | category: 7 | required: true 8 | description: Category 9 | type: string 10 | 11 | jobs: 12 | item: 13 | name: New Category 14 | runs-on: ubuntu-latest 15 | steps: 16 | - name: Checkout Repository 17 | uses: actions/checkout@v6 18 | with: 19 | token: ${{ secrets.GITHUB_TOKEN }} 20 | 21 | - name: Install Node 22 | uses: actions/setup-node@v6 23 | with: 24 | architecture: x64 25 | node-version: 20 26 | 27 | - name: Verify Branch Name 28 | uses: actions/github-script@v8 29 | env: 30 | BRANCH: ${{ github.event.inputs.category }} 31 | with: 32 | github-token: ${{ secrets.GITHUB_TOKEN }} 33 | script: | 34 | core.exportVariable("BRANCH", "category/" + process.env.BRANCH.replace(/[^\w]/gm, '-').toLowerCase()); 35 | 36 | - name: Checkout New Branch 37 | env: 38 | BRANCH: ${{ env.BRANCH }} 39 | run: |- 40 | git checkout -B "$BRANCH" 41 | 42 | - name: Write Changes 43 | uses: actions/github-script@v8 44 | env: 45 | CATEGORY: ${{ github.event.inputs.category }} 46 | with: 47 | github-token: ${{ secrets.GITHUB_TOKEN }} 48 | script: |- 49 | const fs = require("fs"); 50 | const path = require("path"); 51 | const __dirname = path.resolve(); 52 | 53 | const file = path.join(__dirname, "categories.json"); 54 | let data = JSON.parse(fs.readFileSync(file, "utf-8")); 55 | 56 | const category = process.env.CATEGORY; 57 | 58 | data = data.filter(item => item !== category); 59 | data.push(category); 60 | data.sort(); 61 | 62 | fs.writeFileSync(file, JSON.stringify(data, null, 4)); 63 | 64 | const repository = path.join(__dirname, ".github", "ISSUE_TEMPLATE", "1-repository.yml"); 65 | fs.writeFileSync(repository, (fs.readFileSync(repository, "utf-8").replace(/options: ?\[.*]/gm, `options: [${data.join(", ")}]`))); 66 | 67 | const change = path.join(__dirname, ".github", "ISSUE_TEMPLATE", "2-change.yml"); 68 | fs.writeFileSync(change, (fs.readFileSync(change, "utf-8").replace(/options: ?\[.*]/gm, `options: [${data.join(", ")}]`))); 69 | 70 | - name: Commit Changes 71 | env: 72 | CATEGORY: ${{ github.event.inputs.category }} 73 | run: |- 74 | git config --global user.name "github-actions[bot]" 75 | git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" 76 | git add -u 77 | git commit -m "Add new category '$CATEGORY'" 78 | git push origin HEAD 79 | 80 | - name: Create PR 81 | env: 82 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 83 | CATEGORY: ${{ github.event.inputs.category }} 84 | run: gh pr create -l "category request" -t "[New Category] $CATEGORY" -b "Automated category request for '$CATEGORY'" -a "Katsute" 85 | 86 | - name: Dispatch README 87 | env: 88 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 89 | BRANCH: ${{ env.BRANCH }} 90 | run: gh workflow run update.yml -r "$BRANCH" -------------------------------------------------------------------------------- /.github/workflows/repository.yml: -------------------------------------------------------------------------------- 1 | name: New Repository 2 | 3 | on: 4 | workflow_dispatch: 5 | inputs: 6 | repository: 7 | required: true 8 | description: Repository name, 'OWNER/REPO' 9 | type: string 10 | category: 11 | required: true 12 | description: Categories, comma separated 13 | type: string 14 | 15 | jobs: 16 | item: 17 | name: New Repository 18 | runs-on: ubuntu-latest 19 | steps: 20 | - name: Checkout Repository 21 | uses: actions/checkout@v6 22 | with: 23 | token: ${{ secrets.GITHUB_TOKEN }} 24 | 25 | - name: Install Node 26 | uses: actions/setup-node@v6 27 | with: 28 | architecture: x64 29 | node-version: 20 30 | 31 | - name: Verify Branch Name 32 | uses: actions/github-script@v8 33 | env: 34 | BRANCH: ${{ github.event.inputs.repository }} 35 | with: 36 | github-token: ${{ secrets.GITHUB_TOKEN }} 37 | script: |- 38 | core.exportVariable("BRANCH", "repository/" + process.env.BRANCH.replace(/[^\w]/gm, '-').toLowerCase()); 39 | 40 | - name: Checkout New Branch 41 | env: 42 | BRANCH: ${{ env.BRANCH }} 43 | run: |- 44 | git checkout -B "$BRANCH" 45 | 46 | - name: Write Changes 47 | uses: actions/github-script@v8 48 | env: 49 | REPOSITORY: ${{ github.event.inputs.repository }} 50 | CATEGORY: ${{ github.event.inputs.category }} 51 | with: 52 | github-token: ${{ secrets.GITHUB_TOKEN }} 53 | script: |- 54 | const fs = require("fs"); 55 | const path = require("path"); 56 | const __dirname = path.resolve(); 57 | 58 | const file = path.join(__dirname, "repositories.json"); 59 | let data = JSON.parse(fs.readFileSync(file, "utf-8")); 60 | 61 | const repository = process.env.REPOSITORY; 62 | const category = process.env.CATEGORY; 63 | 64 | data = data.filter(item => item.repository.toLowerCase() !== repository.toLowerCase()); 65 | 66 | data.push({ 67 | repository: repository, 68 | category: category.split(",").map(s => s.trim()) 69 | }); 70 | 71 | data.sort((a, b) => a.repository.toLowerCase() > b.repository.toLowerCase() ? 1 : -1); 72 | 73 | fs.writeFileSync(file, JSON.stringify(data, null, 4)); 74 | 75 | - name: Commit Changes 76 | env: 77 | REPOSITORY: ${{ github.event.inputs.repository }} 78 | run: |- 79 | git config --global user.name "github-actions[bot]" 80 | git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" 81 | git add -u 82 | git commit -m "Add new repository '$REPOSITORY'" 83 | git push origin HEAD 84 | 85 | - name: Create PR 86 | env: 87 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 88 | REPOSITORY: ${{ github.event.inputs.repository }} 89 | run: gh pr create -l "repository request" -t "[New Repository] $REPOSITORY" -b "Automated repository request for [$REPOSITORY](https://github.com/$REPOSITORY)" -a "Katsute" 90 | 91 | - name: Dispatch README 92 | env: 93 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 94 | BRANCH: ${{ env.BRANCH }} 95 | run: gh workflow run update.yml -r "$BRANCH" -------------------------------------------------------------------------------- /.github/workflows/change.yml: -------------------------------------------------------------------------------- 1 | name: Change Request 2 | 3 | on: 4 | workflow_dispatch: 5 | inputs: 6 | repository: 7 | required: true 8 | description: Repository name, 'OWNER/REPO' 9 | type: string 10 | category: 11 | required: true 12 | description: Category, comma separated; Use 'DELETE' for deletion. 13 | type: string 14 | 15 | jobs: 16 | item: 17 | name: Change Request 18 | runs-on: ubuntu-latest 19 | steps: 20 | - name: Checkout Repository 21 | uses: actions/checkout@v6 22 | with: 23 | token: ${{ secrets.GITHUB_TOKEN }} 24 | 25 | - name: Install Node 26 | uses: actions/setup-node@v6 27 | with: 28 | architecture: x64 29 | node-version: 20 30 | 31 | - name: Verify Branch Name 32 | uses: actions/github-script@v8 33 | env: 34 | BRANCH: ${{ github.event.inputs.repository }} 35 | with: 36 | github-token: ${{ secrets.GITHUB_TOKEN }} 37 | script: |- 38 | core.exportVariable("BRANCH", "repository/" + process.env.BRANCH.replace(/[^\w]/gm, '-').toLowerCase()); 39 | 40 | - name: Checkout New Branch 41 | env: 42 | BRANCH: ${{ env.BRANCH }} 43 | run: |- 44 | git checkout -B "$BRANCH" 45 | 46 | - name: Write Changes 47 | uses: actions/github-script@v8 48 | env: 49 | REPOSITORY: ${{ github.event.inputs.repository }} 50 | CATEGORY: ${{ github.event.inputs.category }} 51 | with: 52 | github-token: ${{ secrets.GITHUB_TOKEN }} 53 | script: |- 54 | const fs = require("fs"); 55 | const path = require("path"); 56 | const __dirname = path.resolve(); 57 | 58 | const file = path.join(__dirname, "repositories.json"); 59 | let data = JSON.parse(fs.readFileSync(file, "utf-8")); 60 | 61 | const repository = process.env.REPOSITORY; 62 | const category = process.env.CATEGORY; 63 | 64 | data = data.filter(item => item.repository.toLowerCase() !== repository.toLowerCase()); 65 | 66 | if(category != "DELETE") 67 | data.push({ 68 | repository: repository, 69 | category: category.split(",").map(s => s.trim()) 70 | }); 71 | 72 | data.sort((a, b) => a.repository.toLowerCase() > b.repository.toLowerCase() ? 1 : -1); 73 | 74 | fs.writeFileSync(file, JSON.stringify(data, null, 4)); 75 | 76 | - name: Commit Changes 77 | env: 78 | REPOSITORY: ${{ github.event.inputs.repository }} 79 | run: |- 80 | git config --global user.name "github-actions[bot]" 81 | git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" 82 | git add -u 83 | git commit -m "Modify '$REPOSITORY'" 84 | git push origin HEAD 85 | 86 | - name: Create PR 87 | env: 88 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 89 | REPOSITORY: ${{ github.event.inputs.repository }} 90 | run: gh pr create -l "change request" -t "[Change] $REPOSITORY" -b "Automated change request for [$REPOSITORY](https://github.com/$REPOSITORY)" -a "Katsute" 91 | 92 | - name: Dispatch README 93 | env: 94 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 95 | BRANCH: ${{ env.BRANCH }} 96 | run: gh workflow run update.yml -r "$BRANCH" -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- 1 | name: README Update 2 | 3 | on: 4 | workflow_dispatch: 5 | schedule: 6 | - cron: 0 12 * 1-2,11-12 0 7 | - cron: 0 11 * 3-10 0 8 | 9 | jobs: 10 | item: 11 | name: Update README 12 | runs-on: ubuntu-latest 13 | steps: 14 | - name: Checkout Repository 15 | uses: actions/checkout@v6 16 | with: 17 | token: ${{ secrets.GITHUB_TOKEN }} 18 | 19 | - name: Install Node 20 | uses: actions/setup-node@v6 21 | with: 22 | architecture: x64 23 | node-version: 20 24 | 25 | - name: Write Changes 26 | uses: actions/github-script@v8 27 | with: 28 | github-token: ${{ secrets.GITHUB_TOKEN }} 29 | script: |- 30 | const fs = require("fs"); 31 | const path = require("path"); 32 | const __dirname = path.resolve(); 33 | 34 | const README = path.join(__dirname, "README.md"); 35 | const categories = JSON.parse(fs.readFileSync(path.join(__dirname, "categories.json"), "utf-8")); 36 | const repositories = JSON.parse(fs.readFileSync(path.join(__dirname, "repositories.json"), "utf-8")); 37 | 38 | let buf = ""; 39 | 40 | for(const category of categories){ 41 | buf += '\n'; 42 | buf += ` * [${category}](#${category.toLowerCase().replace(/ /gm, '-')})`; 43 | } 44 | 45 | buf += '\n'; 46 | 47 | fs.writeFileSync(README, fs.readFileSync(README, "utf-8").replace(/(?<=\n).*(?=\n?)/gms, buf + '\n')); 48 | 49 | buf = ""; 50 | 51 | for(const category of categories){ 52 | const repos = repositories.filter(r => r.category.includes(category)).sort((a, b) => a.repository.toLowerCase() > b.repository.toLowerCase() ? 1 : -1); 53 | if(repos.length > 0){ 54 | buf += '\n'; 55 | buf += `## ${category}`; 56 | buf += '\n'; 57 | for(const r of repos){ 58 | const repo = (await github.rest.repos.get({ 59 | owner: r.repository.split('/')[0], 60 | repo: r.repository.split('/')[1] 61 | })).data; 62 | 63 | buf += '\n'; 64 | buf += `

 ${repo.full_name}

\n`; 65 | buf += '\n'; 66 | buf += `${repo.language} • ⭐ ${repo.stargazers_count} • Updated ${new Date(repo.pushed_at).toLocaleDateString("en-US", {year:"numeric", month:"long", day:"numeric"})}\n`; 67 | buf += '\n'; 68 | buf += `${repo.description}\n`; 69 | } 70 | buf += '\n'; 71 | buf += `
`; 72 | buf += '\n'; 73 | } 74 | } 75 | 76 | fs.writeFileSync(README, fs.readFileSync(README, "utf-8").replace(/(?<=\n).*(?=\n?)/gms, buf + '\n').trim()); 77 | 78 | - name: Commit Changes 79 | run: |- 80 | git config --global user.name "github-actions[bot]" 81 | git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" 82 | git add -u 83 | git commit -m "Update README" 84 | git push -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 | 6 |

Awesome MyAnimeList

7 | A curated list of all things MyAnimeList 8 |
9 |
10 | 11 | 12 |
13 |
14 |
15 | Submit a New Repository 16 |
17 |
18 | 19 | ## Contents 20 | 21 | 22 | 23 | * [Android](#android) 24 | * [Browser Extension](#browser-extension) 25 | * [Client](#client) 26 | * [Database](#database) 27 | * [Discord Bot](#discord-bot) 28 | * [List Design](#list-design) 29 | * [List Tracker](#list-tracker) 30 | * [Profile](#profile) 31 | * [Programming](#programming) 32 | * [Userscript](#userscript) 33 | * [Website](#website) 34 | 35 | 36 | 37 | 38 | 39 | ## Android 40 | 41 |

 axiel7/MoeList

42 | 43 | Kotlin • ⭐ 609 • Updated December 14, 2025 44 | 45 | Another unofficial Android MAL client 46 | 47 |

 destructo570/Sushi-Unofficial-MAL-Client

48 | 49 | Kotlin • ⭐ 20 • Updated September 23, 2022 50 | 51 | Sushi is a modern and minimal android client for MyAnimeList 52 | 53 |

 Drutol/MALClient

54 | 55 | C# • ⭐ 374 • Updated August 6, 2024 56 | 57 | Not so small client app for Myanimelist.net - Windows 10 UWP & Android 58 | 59 |

 Sharkaboi/MediaHub

60 | 61 | Kotlin • ⭐ 58 • Updated November 26, 2022 62 | 63 | A simple, easy to use MyAnimeList android client alternative. 64 | 65 | 66 | 67 | ## Browser Extension 68 | 69 |

 MALSync/MALSync

70 | 71 | TypeScript • ⭐ 2706 • Updated December 14, 2025 72 | 73 | Integrates MyAnimeList/AniList/Kitsu/Simkl into various sites, with auto episode tracking. 74 | 75 | 76 | 77 | ## Client 78 | 79 |

 Drutol/MALClient

80 | 81 | C# • ⭐ 374 • Updated August 6, 2024 82 | 83 | Not so small client app for Myanimelist.net - Windows 10 UWP & Android 84 | 85 |

 erengy/taiga

86 | 87 | C++ • ⭐ 2242 • Updated October 19, 2025 88 | 89 | A lightweight anime tracker for Windows 90 | 91 |

 JICA98/DailyAL

92 | 93 | Dart • ⭐ 244 • Updated November 2, 2025 94 | 95 | DailyAL - MyAnimeList Client 96 | 97 | 98 | 99 | ## List Design 100 | 101 |

 ValerioLyndon/MAL-Public-List-Designs

102 | 103 | CSS • ⭐ 114 • Updated April 16, 2025 104 | 105 | MyAnimeList designs available for anyone to use. 106 | 107 |

 ValerioLyndon/Theme-Customiser

108 | 109 | CSS • ⭐ 39 • Updated June 27, 2025 110 | 111 | Easy customisation of list designs for MyAnimeList. 112 | 113 | 114 | 115 | ## List Tracker 116 | 117 |

 axiel7/MoeList

118 | 119 | Kotlin • ⭐ 609 • Updated December 14, 2025 120 | 121 | Another unofficial Android MAL client 122 | 123 |

 destructo570/Sushi-Unofficial-MAL-Client

124 | 125 | Kotlin • ⭐ 20 • Updated September 23, 2022 126 | 127 | Sushi is a modern and minimal android client for MyAnimeList 128 | 129 |

 Drutol/MALClient

130 | 131 | C# • ⭐ 374 • Updated August 6, 2024 132 | 133 | Not so small client app for Myanimelist.net - Windows 10 UWP & Android 134 | 135 |

 erengy/taiga

136 | 137 | C++ • ⭐ 2242 • Updated October 19, 2025 138 | 139 | A lightweight anime tracker for Windows 140 | 141 |

 infanf/myanili

142 | 143 | TypeScript • ⭐ 19 • Updated December 10, 2025 144 | 145 | MyAnimeList web client with trakt.tv, AniList, Kitsu, aniSearch, Shikimori, Manga-Updates, SIMKL, Annict and LiveChart integration 146 | 147 |

 MALSync/MALSync

148 | 149 | TypeScript • ⭐ 2706 • Updated December 14, 2025 150 | 151 | Integrates MyAnimeList/AniList/Kitsu/Simkl into various sites, with auto episode tracking. 152 | 153 |

 Sharkaboi/MediaHub

154 | 155 | Kotlin • ⭐ 58 • Updated November 26, 2022 156 | 157 | A simple, easy to use MyAnimeList android client alternative. 158 | 159 | 160 | 161 | ## Programming 162 | 163 |

 Chris-Kode/myanimelist-api-v2

164 | 165 | JavaScript • ⭐ 49 • Updated January 9, 2024 166 | 167 | An awesome wrapper on Nodejs for the new MyAnimeList's API v2! 168 | 169 |

 darenliang/mal-api

170 | 171 | Python • ⭐ 47 • Updated March 4, 2023 172 | 173 | A local MyAnimeList API 174 | 175 |

 jikan-me/jikan

176 | 177 | PHP • ⭐ 988 • Updated July 27, 2025 178 | 179 | Unofficial MyAnimeList PHP+REST API which provides functions other than the official API 180 | 181 |

 KatsuteDev/Mal4J

182 | 183 | Java • ⭐ 37 • Updated December 1, 2025 184 | 185 | Java wrapper for the official MyAnimeList API 186 | 187 |

 Kylart/MalScraper

188 | 189 | JavaScript • ⭐ 190 • Updated March 7, 2025 190 | 191 | Scrape everything you can from MyAnimeList.net 192 | 193 |

 nstratos/go-myanimelist

194 | 195 | Go • ⭐ 41 • Updated July 19, 2025 196 | 197 | Go library for accessing the MyAnimeList API: https://myanimelist.net/apiconfig/references/api/v2 198 | 199 |

 platers/MAL-Map

200 | 201 | TypeScript • ⭐ 238 • Updated November 28, 2022 202 | 203 | Cluster and visualize relationships between anime on MyAnimeList 204 | 205 | 206 | 207 | ## Userscript 208 | 209 |

 MAL-Dubs/MAL-Dubs

210 | 211 | JavaScript • ⭐ 47 • Updated December 13, 2025 212 | 213 | MAL Dubs is a userscript which labels over 5300 English dubbed titles on MyAnimeList.net and adds a Dubbed filter to search, seasonal and top anime pages. 214 | 215 | 216 | 217 | ## Website 218 | 219 |

 9elt/Reko

220 | 221 | Rust • ⭐ 13 • Updated June 26, 2025 222 | 223 | Web API to match similar MyAnimeList users and get anime recommendations 224 | 225 |

 infanf/myanili

226 | 227 | TypeScript • ⭐ 19 • Updated December 10, 2025 228 | 229 | MyAnimeList web client with trakt.tv, AniList, Kitsu, aniSearch, Shikimori, Manga-Updates, SIMKL, Annict and LiveChart integration 230 | 231 |

 rl404/sekai

232 | 233 | TypeScript • ⭐ 11 • Updated December 12, 2025 234 | 235 | Convert your MyAnimeList anime list to force-directed graph and see your anime world. 236 | 237 | 238 | 239 | 240 | 241 | ##   242 | 243 | [![Creative Commons License](https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png)](http://creativecommons.org/licenses/by-nc-sa/4.0/) 244 | 245 | Licensed under [CC BY-NC-SA 4.0](http://creativecommons.org/licenses/by-nc-sa/4.0/). -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution-NonCommercial-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International 58 | Public License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-NonCommercial-ShareAlike 4.0 International Public License 63 | ("Public License"). To the extent this Public License may be 64 | interpreted as a contract, You are granted the Licensed Rights in 65 | consideration of Your acceptance of these terms and conditions, and the 66 | Licensor grants You such rights in consideration of benefits the 67 | Licensor receives from making the Licensed Material available under 68 | these terms and conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-NC-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution, NonCommercial, and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. NonCommercial means not primarily intended for or directed towards 126 | commercial advantage or monetary compensation. For purposes of 127 | this Public License, the exchange of the Licensed Material for 128 | other material subject to Copyright and Similar Rights by digital 129 | file-sharing or similar means is NonCommercial provided there is 130 | no payment of monetary compensation in connection with the 131 | exchange. 132 | 133 | l. Share means to provide material to the public by any means or 134 | process that requires permission under the Licensed Rights, such 135 | as reproduction, public display, public performance, distribution, 136 | dissemination, communication, or importation, and to make material 137 | available to the public including in ways that members of the 138 | public may access the material from a place and at a time 139 | individually chosen by them. 140 | 141 | m. Sui Generis Database Rights means rights other than copyright 142 | resulting from Directive 96/9/EC of the European Parliament and of 143 | the Council of 11 March 1996 on the legal protection of databases, 144 | as amended and/or succeeded, as well as other essentially 145 | equivalent rights anywhere in the world. 146 | 147 | n. You means the individual or entity exercising the Licensed Rights 148 | under this Public License. Your has a corresponding meaning. 149 | 150 | 151 | Section 2 -- Scope. 152 | 153 | a. License grant. 154 | 155 | 1. Subject to the terms and conditions of this Public License, 156 | the Licensor hereby grants You a worldwide, royalty-free, 157 | non-sublicensable, non-exclusive, irrevocable license to 158 | exercise the Licensed Rights in the Licensed Material to: 159 | 160 | a. reproduce and Share the Licensed Material, in whole or 161 | in part, for NonCommercial purposes only; and 162 | 163 | b. produce, reproduce, and Share Adapted Material for 164 | NonCommercial purposes only. 165 | 166 | 2. Exceptions and Limitations. For the avoidance of doubt, where 167 | Exceptions and Limitations apply to Your use, this Public 168 | License does not apply, and You do not need to comply with 169 | its terms and conditions. 170 | 171 | 3. Term. The term of this Public License is specified in Section 172 | 6(a). 173 | 174 | 4. Media and formats; technical modifications allowed. The 175 | Licensor authorizes You to exercise the Licensed Rights in 176 | all media and formats whether now known or hereafter created, 177 | and to make technical modifications necessary to do so. The 178 | Licensor waives and/or agrees not to assert any right or 179 | authority to forbid You from making technical modifications 180 | necessary to exercise the Licensed Rights, including 181 | technical modifications necessary to circumvent Effective 182 | Technological Measures. For purposes of this Public License, 183 | simply making modifications authorized by this Section 2(a) 184 | (4) never produces Adapted Material. 185 | 186 | 5. Downstream recipients. 187 | 188 | a. Offer from the Licensor -- Licensed Material. Every 189 | recipient of the Licensed Material automatically 190 | receives an offer from the Licensor to exercise the 191 | Licensed Rights under the terms and conditions of this 192 | Public License. 193 | 194 | b. Additional offer from the Licensor -- Adapted Material. 195 | Every recipient of Adapted Material from You 196 | automatically receives an offer from the Licensor to 197 | exercise the Licensed Rights in the Adapted Material 198 | under the conditions of the Adapter's License You apply. 199 | 200 | c. No downstream restrictions. You may not offer or impose 201 | any additional or different terms or conditions on, or 202 | apply any Effective Technological Measures to, the 203 | Licensed Material if doing so restricts exercise of the 204 | Licensed Rights by any recipient of the Licensed 205 | Material. 206 | 207 | 6. No endorsement. Nothing in this Public License constitutes or 208 | may be construed as permission to assert or imply that You 209 | are, or that Your use of the Licensed Material is, connected 210 | with, or sponsored, endorsed, or granted official status by, 211 | the Licensor or others designated to receive attribution as 212 | provided in Section 3(a)(1)(A)(i). 213 | 214 | b. Other rights. 215 | 216 | 1. Moral rights, such as the right of integrity, are not 217 | licensed under this Public License, nor are publicity, 218 | privacy, and/or other similar personality rights; however, to 219 | the extent possible, the Licensor waives and/or agrees not to 220 | assert any such rights held by the Licensor to the limited 221 | extent necessary to allow You to exercise the Licensed 222 | Rights, but not otherwise. 223 | 224 | 2. Patent and trademark rights are not licensed under this 225 | Public License. 226 | 227 | 3. To the extent possible, the Licensor waives any right to 228 | collect royalties from You for the exercise of the Licensed 229 | Rights, whether directly or through a collecting society 230 | under any voluntary or waivable statutory or compulsory 231 | licensing scheme. In all other cases the Licensor expressly 232 | reserves any right to collect such royalties, including when 233 | the Licensed Material is used other than for NonCommercial 234 | purposes. 235 | 236 | 237 | Section 3 -- License Conditions. 238 | 239 | Your exercise of the Licensed Rights is expressly made subject to the 240 | following conditions. 241 | 242 | a. Attribution. 243 | 244 | 1. If You Share the Licensed Material (including in modified 245 | form), You must: 246 | 247 | a. retain the following if it is supplied by the Licensor 248 | with the Licensed Material: 249 | 250 | i. identification of the creator(s) of the Licensed 251 | Material and any others designated to receive 252 | attribution, in any reasonable manner requested by 253 | the Licensor (including by pseudonym if 254 | designated); 255 | 256 | ii. a copyright notice; 257 | 258 | iii. a notice that refers to this Public License; 259 | 260 | iv. a notice that refers to the disclaimer of 261 | warranties; 262 | 263 | v. a URI or hyperlink to the Licensed Material to the 264 | extent reasonably practicable; 265 | 266 | b. indicate if You modified the Licensed Material and 267 | retain an indication of any previous modifications; and 268 | 269 | c. indicate the Licensed Material is licensed under this 270 | Public License, and include the text of, or the URI or 271 | hyperlink to, this Public License. 272 | 273 | 2. You may satisfy the conditions in Section 3(a)(1) in any 274 | reasonable manner based on the medium, means, and context in 275 | which You Share the Licensed Material. For example, it may be 276 | reasonable to satisfy the conditions by providing a URI or 277 | hyperlink to a resource that includes the required 278 | information. 279 | 3. If requested by the Licensor, You must remove any of the 280 | information required by Section 3(a)(1)(A) to the extent 281 | reasonably practicable. 282 | 283 | b. ShareAlike. 284 | 285 | In addition to the conditions in Section 3(a), if You Share 286 | Adapted Material You produce, the following conditions also apply. 287 | 288 | 1. The Adapter's License You apply must be a Creative Commons 289 | license with the same License Elements, this version or 290 | later, or a BY-NC-SA Compatible License. 291 | 292 | 2. You must include the text of, or the URI or hyperlink to, the 293 | Adapter's License You apply. You may satisfy this condition 294 | in any reasonable manner based on the medium, means, and 295 | context in which You Share Adapted Material. 296 | 297 | 3. You may not offer or impose any additional or different terms 298 | or conditions on, or apply any Effective Technological 299 | Measures to, Adapted Material that restrict exercise of the 300 | rights granted under the Adapter's License You apply. 301 | 302 | 303 | Section 4 -- Sui Generis Database Rights. 304 | 305 | Where the Licensed Rights include Sui Generis Database Rights that 306 | apply to Your use of the Licensed Material: 307 | 308 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 309 | to extract, reuse, reproduce, and Share all or a substantial 310 | portion of the contents of the database for NonCommercial purposes 311 | only; 312 | 313 | b. if You include all or a substantial portion of the database 314 | contents in a database in which You have Sui Generis Database 315 | Rights, then the database in which You have Sui Generis Database 316 | Rights (but not its individual contents) is Adapted Material, 317 | including for purposes of Section 3(b); and 318 | 319 | c. You must comply with the conditions in Section 3(a) if You Share 320 | all or a substantial portion of the contents of the database. 321 | 322 | For the avoidance of doubt, this Section 4 supplements and does not 323 | replace Your obligations under this Public License where the Licensed 324 | Rights include other Copyright and Similar Rights. 325 | 326 | 327 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 328 | 329 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 330 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 331 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 332 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 333 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 334 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 335 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 336 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 337 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 338 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 339 | 340 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 341 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 342 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 343 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 344 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 345 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 346 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 347 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 348 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 349 | 350 | c. The disclaimer of warranties and limitation of liability provided 351 | above shall be interpreted in a manner that, to the extent 352 | possible, most closely approximates an absolute disclaimer and 353 | waiver of all liability. 354 | 355 | 356 | Section 6 -- Term and Termination. 357 | 358 | a. This Public License applies for the term of the Copyright and 359 | Similar Rights licensed here. However, if You fail to comply with 360 | this Public License, then Your rights under this Public License 361 | terminate automatically. 362 | 363 | b. Where Your right to use the Licensed Material has terminated under 364 | Section 6(a), it reinstates: 365 | 366 | 1. automatically as of the date the violation is cured, provided 367 | it is cured within 30 days of Your discovery of the 368 | violation; or 369 | 370 | 2. upon express reinstatement by the Licensor. 371 | 372 | For the avoidance of doubt, this Section 6(b) does not affect any 373 | right the Licensor may have to seek remedies for Your violations 374 | of this Public License. 375 | 376 | c. For the avoidance of doubt, the Licensor may also offer the 377 | Licensed Material under separate terms or conditions or stop 378 | distributing the Licensed Material at any time; however, doing so 379 | will not terminate this Public License. 380 | 381 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 382 | License. 383 | 384 | 385 | Section 7 -- Other Terms and Conditions. 386 | 387 | a. The Licensor shall not be bound by any additional or different 388 | terms or conditions communicated by You unless expressly agreed. 389 | 390 | b. Any arrangements, understandings, or agreements regarding the 391 | Licensed Material not stated herein are separate from and 392 | independent of the terms and conditions of this Public License. 393 | 394 | 395 | Section 8 -- Interpretation. 396 | 397 | a. For the avoidance of doubt, this Public License does not, and 398 | shall not be interpreted to, reduce, limit, restrict, or impose 399 | conditions on any use of the Licensed Material that could lawfully 400 | be made without permission under this Public License. 401 | 402 | b. To the extent possible, if any provision of this Public License is 403 | deemed unenforceable, it shall be automatically reformed to the 404 | minimum extent necessary to make it enforceable. If the provision 405 | cannot be reformed, it shall be severed from this Public License 406 | without affecting the enforceability of the remaining terms and 407 | conditions. 408 | 409 | c. No term or condition of this Public License will be waived and no 410 | failure to comply consented to unless expressly agreed to by the 411 | Licensor. 412 | 413 | d. Nothing in this Public License constitutes or may be interpreted 414 | as a limitation upon, or waiver of, any privileges and immunities 415 | that apply to the Licensor or You, including from the legal 416 | processes of any jurisdiction or authority. 417 | 418 | ======================================================================= 419 | 420 | Creative Commons is not a party to its public 421 | licenses. Notwithstanding, Creative Commons may elect to apply one of 422 | its public licenses to material it publishes and in those instances 423 | will be considered the “Licensor.” The text of the Creative Commons 424 | public licenses is dedicated to the public domain under the CC0 Public 425 | Domain Dedication. Except for the limited purpose of indicating that 426 | material is shared under a Creative Commons public license or as 427 | otherwise permitted by the Creative Commons policies published at 428 | creativecommons.org/policies, Creative Commons does not authorize the 429 | use of the trademark "Creative Commons" or any other trademark or logo 430 | of Creative Commons without its prior written consent including, 431 | without limitation, in connection with any unauthorized modifications 432 | to any of its public licenses or any other arrangements, 433 | understandings, or agreements concerning use of licensed material. For 434 | the avoidance of doubt, this paragraph does not form part of the 435 | public licenses. 436 | 437 | Creative Commons may be contacted at creativecommons.org. --------------------------------------------------------------------------------