├── .gitignore ├── Makefile ├── cmd └── build │ ├── go.mod │ ├── model.go │ ├── go.sum │ └── main.go ├── .github └── workflows │ └── update-data.yml ├── meta.yaml ├── README.md.template ├── README.md └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | # README.md 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: generate 2 | 3 | generate: 4 | ( cd ./cmd/build && go build -o /tmp/awesome-lark-generate ) 5 | cd ../.. 6 | /tmp/awesome-lark-generate 7 | -------------------------------------------------------------------------------- /cmd/build/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/go-lark/awesome-lark/cmd/build 2 | 3 | go 1.18 4 | 5 | require ( 6 | github.com/google/go-github v17.0.0+incompatible 7 | golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be 8 | ) 9 | 10 | require ( 11 | github.com/golang/protobuf v1.3.2 // indirect 12 | github.com/google/go-cmp v0.5.8 // indirect 13 | github.com/google/go-querystring v1.1.0 // indirect 14 | golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect 15 | google.golang.org/appengine v1.6.7 // indirect 16 | gopkg.in/yaml.v2 v2.4.0 // indirect 17 | ) 18 | -------------------------------------------------------------------------------- /cmd/build/model.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | // PageData . 4 | type PageData struct { 5 | Metadata []Metadata `yaml:"metadata"` 6 | Year int 7 | } 8 | 9 | // Metadata . 10 | type Metadata struct { 11 | Category string `yaml:"category"` 12 | Languages []Language `yaml:"languages"` 13 | } 14 | 15 | // Language . 16 | type Language struct { 17 | Language string `yaml:"language"` 18 | Repos []string `yaml:"repos"` 19 | ReposWithInfo []*RepoWithInfo `yaml:"-"` 20 | } 21 | 22 | // RepoWithInfo . 23 | type RepoWithInfo struct { 24 | Name string 25 | URL string 26 | Description string 27 | StargazersCount int 28 | } 29 | -------------------------------------------------------------------------------- /.github/workflows/update-data.yml: -------------------------------------------------------------------------------- 1 | name: update-data 2 | 3 | on: 4 | push: 5 | branches: [ main ] 6 | pull_request: 7 | branches: [ main ] 8 | schedule: 9 | - cron: "0 0 * * */1" 10 | 11 | jobs: 12 | run: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v2 16 | 17 | - name: Setup Go 18 | uses: actions/setup-go@v2 19 | with: 20 | go-version: 1.17 21 | 22 | - name: Update Data 23 | run: | 24 | make 25 | env: 26 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 27 | 28 | - name: Commit and Push 29 | run: | 30 | git config --global user.name 'github-actions[bot]' 31 | git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' 32 | git add --all 33 | git commit -am "Automated Commit: $(date)" || echo "no commit" 34 | git push || echo "no push" 35 | -------------------------------------------------------------------------------- /meta.yaml: -------------------------------------------------------------------------------- 1 | metadata: 2 | - category: SDK 3 | languages: 4 | - language: Go 5 | repos: 6 | - https://github.com/go-lark/lark 7 | - https://github.com/chyroc/lark 8 | - https://github.com/larksuite/oapi-sdk-go 9 | - https://github.com/fastwego/feishu 10 | - https://github.com/galaxy-book/feishu-sdk-golang 11 | - https://github.com/go-lark/docs 12 | - language: Java 13 | repos: 14 | - https://github.com/larksuite/oapi-sdk-java 15 | - language: JavaScript 16 | repos: 17 | - https://github.com/larksuite/node-sdk 18 | - https://github.com/dizys/lark-js-sdk 19 | - language: PHP 20 | repos: 21 | - https://github.com/guanguans/notify 22 | - language: Python 23 | repos: 24 | - https://github.com/larksuite/feishu 25 | - https://github.com/larksuite/oapi-sdk-python 26 | - language: Ruby 27 | repos: 28 | - https://github.com/seandong/lark-ruby-sdk 29 | - category: Middleware 30 | languages: 31 | - language: Go 32 | repos: 33 | - https://github.com/go-lark/lark-gin 34 | - https://github.com/go-lark/lark-hertz 35 | -------------------------------------------------------------------------------- /README.md.template: -------------------------------------------------------------------------------- 1 | # awesome-lark [![Awesome](https://github.com/sindresorhus/awesome/raw/main/media/badge.svg)](https://github.com/sindresorhus/awesome) 2 | 3 | A curated list of awesome Feishu/Lark APIs, libraries, and resources. 4 | 5 | ## Platforms 6 | 7 | - [飞书开放平台](https://open.feishu.cn/) 8 | - [Lark Open Platform](https://open.larksuite.com/) 9 | 10 | ## Libraries 11 | 12 | {{ range .Metadata }}### {{ .Category }} 13 | 14 | {{ range .Languages }}#### {{ .Language }} 15 | 16 | {{ range .ReposWithInfo }}- [{{ .Name }}(★{{ .StargazersCount}})]({{ .URL }}){{ if gt (len .Description) 0 }}: {{ .Description }}{{end}} 17 | {{ end }} 18 | {{ end }} 19 | {{ end }} 20 | 21 | ## Bots 22 | 23 | - [Chatopera 飞书 Custom App](https://github.com/chatopera/chatopera.feishu): 通过 Feishu 开放平台和 Chatopera 机器人平台上线企业聊天机器人服务。 24 | - [giphy-bot](https://github.com/go-lark/examples/tree/main/giphy-bot): A giphy bot which is built with go-lark/gin/gorm as an real world example. 25 | 26 | ## Tools 27 | 28 | - [Card Builder](https://open.feishu.cn/tool/cardbuilder) 29 | 30 | ## Resources 31 | 32 | - [开放平台文档](https://open.feishu.cn/document/home/index) 33 | - [Development documentation](https://open.larksuite.com/document/home/index) 34 | - [消息卡片设计规范](https://open.feishu.cn/document/ukTMukTMukTM/ugDOwYjL4gDM24CO4AjN) 35 | 36 | ## Contributing 37 | 38 | Pull Request are welcomed. 39 | 40 | ## License 41 | 42 | Copyright (c) David Zhang, {{.Year}}. Licensed under CC0 1.0 Universal. 43 | -------------------------------------------------------------------------------- /cmd/build/go.sum: -------------------------------------------------------------------------------- 1 | github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 2 | github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs= 3 | github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 4 | github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= 5 | github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg= 6 | github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= 7 | github.com/google/go-github v17.0.0+incompatible h1:N0LgJ1j65A7kfXrZnUDaYCs/Sf4rEjNlfyDHW9dolSY= 8 | github.com/google/go-github v17.0.0+incompatible/go.mod h1:zLgOLi98H3fifZn+44m+umXrS52loVEgC2AApnigrVQ= 9 | github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= 10 | github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= 11 | golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= 12 | golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= 13 | golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw= 14 | golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= 15 | golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be h1:vEDujvNQGv4jgYKudGeI/+DAX4Jffq6hpD55MmoEvKs= 16 | golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= 17 | golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 18 | golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 19 | golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= 20 | golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= 21 | golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= 22 | golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= 23 | golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= 24 | golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= 25 | google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c= 26 | google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= 27 | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= 28 | gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= 29 | gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # awesome-lark [![Awesome](https://github.com/sindresorhus/awesome/raw/main/media/badge.svg)](https://github.com/sindresorhus/awesome) 2 | 3 | A curated list of awesome Feishu/Lark APIs, libraries, and resources. 4 | 5 | ## Platforms 6 | 7 | - [飞书开放平台](https://open.feishu.cn/) 8 | - [Lark Open Platform](https://open.larksuite.com/) 9 | 10 | ## Libraries 11 | 12 | ### SDK 13 | 14 | #### Go 15 | 16 | - [go-lark/lark(★233)](https://github.com/go-lark/lark): An easy-to-use SDK for Feishu and Lark Open Platform (Instant Messaging API only) 17 | - [chyroc/lark(★458)](https://github.com/chyroc/lark): Feishu(飞书)/Lark Open API Go SDK, Support ALL Open API and Event Callback. 18 | - [larksuite/oapi-sdk-go(★522)](https://github.com/larksuite/oapi-sdk-go): larksuite oapi sdk by golang 19 | - [fastwego/feishu(★162)](https://github.com/fastwego/feishu): [飞书] A fast feishu development sdk written in Golang 20 | - [star-table/feishu-sdk-golang(★108)](https://github.com/star-table/feishu-sdk-golang): 飞书开放平台 SDK, 欢迎体验我们的产品 http://app.startable.cn 21 | - [go-lark/docs(★2)](https://github.com/go-lark/docs): 提供便捷的 Lark 云文档操作能力 22 | 23 | #### Java 24 | 25 | - [larksuite/oapi-sdk-java(★282)](https://github.com/larksuite/oapi-sdk-java): Larksuite official Java SDK 26 | 27 | #### JavaScript 28 | 29 | - [larksuite/node-sdk(★211)](https://github.com/larksuite/node-sdk): larksuite open sdk for nodejs 30 | - [dizys/lark-js-sdk(★6)](https://github.com/dizys/lark-js-sdk): Third-party JavaScript Lark (Feishu, 飞书) SDK written in TypeScript 31 | 32 | #### PHP 33 | 34 | - [guanguans/notify(★668)](https://github.com/guanguans/notify): Push notification SDK(AnPush、Bark、Chanify、DingTalk、Discord、Gitter、GoogleChat、IGot、Lark、Mattermost、MicrosoftTeams、NowPush、Ntfy、Push、Pushback、PushBullet、PushDeer、PushMe、Pushover、PushPlus、QQ、RocketChat、ServerChan、ShowdocPush、SimplePush、Slack、Telegram、WeWork、WPush、XiZhi、YiFengChuanHua、ZohoCliq、Zulip). 35 | 36 | #### Python 37 | 38 | - [larksuite/feishu(★83)](https://github.com/larksuite/feishu): [ 🚧 WIP ] feishu: Python SDK for Lark / Feishu 39 | - [larksuite/oapi-sdk-python(★442)](https://github.com/larksuite/oapi-sdk-python): Larksuite development interface SDK 40 | 41 | #### Ruby 42 | 43 | - [seandong/lark-ruby-sdk(★23)](https://github.com/seandong/lark-ruby-sdk): Ruby SDKs for Lark(飞书) API https://open.feishu.cn/ 44 | 45 | 46 | ### Middleware 47 | 48 | #### Go 49 | 50 | - [go-lark/lark-gin(★5)](https://github.com/go-lark/lark-gin): Gin Middleware for go-lark 51 | - [go-lark/lark-hertz(★0)](https://github.com/go-lark/lark-hertz): Hertz Middleware for go-lark 52 | 53 | 54 | 55 | 56 | ## Bots 57 | 58 | - [Chatopera 飞书 Custom App](https://github.com/chatopera/chatopera.feishu): 通过 Feishu 开放平台和 Chatopera 机器人平台上线企业聊天机器人服务。 59 | - [giphy-bot](https://github.com/go-lark/examples/tree/main/giphy-bot): A giphy bot which is built with go-lark/gin/gorm as an real world example. 60 | 61 | ## Tools 62 | 63 | - [Card Builder](https://open.feishu.cn/tool/cardbuilder) 64 | 65 | ## Resources 66 | 67 | - [开放平台文档](https://open.feishu.cn/document/home/index) 68 | - [Development documentation](https://open.larksuite.com/document/home/index) 69 | - [消息卡片设计规范](https://open.feishu.cn/document/ukTMukTMukTM/ugDOwYjL4gDM24CO4AjN) 70 | 71 | ## Contributing 72 | 73 | Pull Request are welcomed. 74 | 75 | ## License 76 | 77 | Copyright (c) David Zhang, 2025. Licensed under CC0 1.0 Universal. 78 | -------------------------------------------------------------------------------- /cmd/build/main.go: -------------------------------------------------------------------------------- 1 | // Package main . 2 | package main 3 | 4 | import ( 5 | "bytes" 6 | "context" 7 | "fmt" 8 | "io/ioutil" 9 | "log" 10 | "net/url" 11 | "os" 12 | "strings" 13 | "text/template" 14 | "time" 15 | 16 | "github.com/google/go-github/github" 17 | "golang.org/x/oauth2" 18 | "gopkg.in/yaml.v2" 19 | ) 20 | 21 | var githubClient *github.Client 22 | 23 | func main() { 24 | // init github client 25 | initGitHubClient() 26 | // load template 27 | tpl, err := loadTemplate() 28 | if err != nil { 29 | log.Fatalln(err) 30 | return 31 | } 32 | // load meta 33 | var pageData PageData 34 | err = loadMetadata(&pageData) 35 | if err != nil { 36 | log.Fatalln(err) 37 | return 38 | } 39 | pageData.Year = time.Now().Year() 40 | // build and write 41 | text, err := buildREADME(tpl, pageData) 42 | if err != nil { 43 | log.Fatalln(err) 44 | return 45 | } 46 | if err = writeREADME(text); err != nil { 47 | log.Fatalln(err) 48 | } 49 | } 50 | 51 | func initGitHubClient() { 52 | ts := oauth2.StaticTokenSource( 53 | &oauth2.Token{AccessToken: os.Getenv("GITHUB_TOKEN")}, 54 | ) 55 | tc := oauth2.NewClient(context.Background(), ts) 56 | githubClient = github.NewClient(tc) 57 | } 58 | 59 | func getRepoInfo(repoURL string) (*github.Repository, error) { 60 | u, _ := url.Parse(repoURL) 61 | path := strings.Split(u.Path, "/") 62 | if len(path) < 3 { 63 | return nil, fmt.Errorf("invalid repo url: %s", repoURL) 64 | } 65 | 66 | owner := path[1] 67 | repo := path[2] 68 | 69 | res, _, err := githubClient.Repositories.Get(context.Background(), owner, repo) 70 | return res, err 71 | } 72 | 73 | func loadTemplate() (string, error) { 74 | tpl, err := ioutil.ReadFile("README.md.template") 75 | if err != nil { 76 | return "", err 77 | } 78 | 79 | return string(tpl), nil 80 | } 81 | 82 | func loadMetadata(pageData *PageData) error { 83 | b, err := ioutil.ReadFile("meta.yaml") 84 | if err != nil { 85 | return err 86 | } 87 | if err = yaml.Unmarshal(b, &pageData); err != nil { 88 | return err 89 | } 90 | 91 | var loadRepoInfo func([]Metadata) error 92 | loadRepoInfo = func(md []Metadata) error { 93 | for i, cate := range md { 94 | for j, lang := range cate.Languages { 95 | for _, url := range lang.Repos { 96 | repo, err := getRepoInfo(url) 97 | if err != nil { 98 | return err 99 | } 100 | md[i].Languages[j].ReposWithInfo = append( 101 | md[i].Languages[j].ReposWithInfo, 102 | &RepoWithInfo{ 103 | Name: repo.GetFullName(), 104 | URL: repo.GetHTMLURL(), 105 | Description: getRepoDesc(lang.Language, repo.GetFullName(), repo.GetDescription()), 106 | StargazersCount: repo.GetStargazersCount(), 107 | }, 108 | ) 109 | } 110 | } 111 | } 112 | return nil 113 | } 114 | err = loadRepoInfo(pageData.Metadata) 115 | 116 | return err 117 | } 118 | 119 | func buildREADME(tpl string, pageData PageData) (string, error) { 120 | t, err := template.New("").Parse(tpl) 121 | if err != nil { 122 | return "", err 123 | } 124 | buf := new(bytes.Buffer) 125 | err = t.Execute(buf, pageData) 126 | return buf.String(), err 127 | } 128 | 129 | func writeREADME(text string) error { 130 | return ioutil.WriteFile("README.md", []byte(text), 0o644) 131 | } 132 | 133 | func getRepoDesc(category, fullname, desc string) string { 134 | if desc != "" { 135 | return desc 136 | } 137 | if strings.Contains(fullname, "larksuite/") { 138 | return fmt.Sprintf("Larksuite official %s SDK", category) 139 | } 140 | return "" 141 | } 142 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | --------------------------------------------------------------------------------