bunnify 0.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- app/__init__.py +0 -0
- app/asgi.py +16 -0
- app/cli.py +921 -0
- app/client.py +228 -0
- app/config.py +403 -0
- app/data/__init__.py +1 -0
- app/data/bookmarks.example.json +42 -0
- app/github_complete.py +796 -0
- app/interactive.py +622 -0
- app/local_server.py +124 -0
- app/server_cli.py +458 -0
- app/settings.py +188 -0
- app/tests.py +160 -0
- app/theme.py +81 -0
- app/urls.py +7 -0
- app/usage.py +94 -0
- app/version.py +67 -0
- app/wsgi.py +16 -0
- bookmarks/__init__.py +0 -0
- bookmarks/admin.py +1 -0
- bookmarks/apps.py +5 -0
- bookmarks/keys_catalog.py +54 -0
- bookmarks/management/__init__.py +0 -0
- bookmarks/management/commands/__init__.py +0 -0
- bookmarks/management/commands/check_database.py +190 -0
- bookmarks/management/commands/load_bookmarks.py +127 -0
- bookmarks/management/commands/watch_bookmarks.py +106 -0
- bookmarks/migrations/0001_initial.py +34 -0
- bookmarks/migrations/0002_bookmark_defaults.py +18 -0
- bookmarks/migrations/__init__.py +0 -0
- bookmarks/models.py +21 -0
- bookmarks/resolve.py +259 -0
- bookmarks/templates/bookmarks/base.html +96 -0
- bookmarks/templates/bookmarks/browser_url.html +75 -0
- bookmarks/templates/bookmarks/cmd.html +642 -0
- bookmarks/templates/bookmarks/copilot_review.html +96 -0
- bookmarks/templates/bookmarks/index.html +80 -0
- bookmarks/templates/bookmarks/list.html +162 -0
- bookmarks/templates/bookmarks/opensearch.xml +8 -0
- bookmarks/test_cli.py +2522 -0
- bookmarks/tests.py +282 -0
- bookmarks/urls.py +20 -0
- bookmarks/views.py +378 -0
- bunnify-0.2.0.dist-info/METADATA +222 -0
- bunnify-0.2.0.dist-info/RECORD +48 -0
- bunnify-0.2.0.dist-info/WHEEL +4 -0
- bunnify-0.2.0.dist-info/entry_points.txt +3 -0
- bunnify-0.2.0.dist-info/licenses/LICENSE +21 -0
app/__init__.py
ADDED
|
File without changes
|
app/asgi.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""
|
|
2
|
+
ASGI config for bunnify project.
|
|
3
|
+
|
|
4
|
+
It exposes the ASGI callable as a module-level variable named ``application``.
|
|
5
|
+
|
|
6
|
+
For more information on this file, see
|
|
7
|
+
https://docs.djangoproject.com/en/6.0/howto/deployment/asgi/
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
import os
|
|
11
|
+
|
|
12
|
+
from django.core.asgi import get_asgi_application
|
|
13
|
+
|
|
14
|
+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "app.settings")
|
|
15
|
+
|
|
16
|
+
application = get_asgi_application()
|