Skip to content

Commit

Permalink
add license (w/ header) and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Apr 18, 2022
1 parent 3036ee1 commit 9ada5a0
Show file tree
Hide file tree
Showing 16 changed files with 433 additions and 0 deletions.
373 changes: 373 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Kukiko

Kukiko is a private and personal use Discord bot.
Kukiko started as a fork of [R. Danny](https://github.com/Rapptz/RoboDanny) which I have now modified greatly.

This is also my testing bot for the latest release of [discord.py](https://github.com/Rapptz/discord.py).

## Setup

Currently I do not support running an instance of my bot, sorry.
Setup details will not be given, if you can figure it out, go nuts.
6 changes: 6 additions & 0 deletions extensions/_stars.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from __future__ import annotations

import asyncio
Expand Down
1 change: 1 addition & 0 deletions extensions/help.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from __future__ import annotations

from typing import TYPE_CHECKING, AsyncGenerator, Mapping
Expand Down
1 change: 1 addition & 0 deletions extensions/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from __future__ import annotations

import asyncio
Expand Down
1 change: 1 addition & 0 deletions extensions/tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from __future__ import annotations

import argparse
Expand Down
1 change: 1 addition & 0 deletions extensions/todo.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from __future__ import annotations

from textwrap import shorten
Expand Down
1 change: 1 addition & 0 deletions utilities/async_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from __future__ import annotations

import asyncio
Expand Down
1 change: 1 addition & 0 deletions utilities/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from __future__ import annotations

import asyncio
Expand Down
6 changes: 6 additions & 0 deletions utilities/context.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from __future__ import annotations

import asyncio
Expand Down
1 change: 1 addition & 0 deletions utilities/converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

import datetime
import re
import zoneinfo
Expand Down
6 changes: 6 additions & 0 deletions utilities/db.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from __future__ import annotations

import json
Expand Down
6 changes: 6 additions & 0 deletions utilities/nihongo.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from ._types import (
JishoWordsPayload,
KanjiDevKanjiPayload,
Expand Down
6 changes: 6 additions & 0 deletions utilities/paginator.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from __future__ import annotations

import asyncio
Expand Down
6 changes: 6 additions & 0 deletions utilities/prefix.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from __future__ import annotations

from typing import TYPE_CHECKING, Optional
Expand Down
6 changes: 6 additions & 0 deletions utilities/ui.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""

from __future__ import annotations

from typing import TYPE_CHECKING
Expand Down

0 comments on commit 9ada5a0

Please sign in to comment.