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.
Files changed (48) hide show
  1. app/__init__.py +0 -0
  2. app/asgi.py +16 -0
  3. app/cli.py +921 -0
  4. app/client.py +228 -0
  5. app/config.py +403 -0
  6. app/data/__init__.py +1 -0
  7. app/data/bookmarks.example.json +42 -0
  8. app/github_complete.py +796 -0
  9. app/interactive.py +622 -0
  10. app/local_server.py +124 -0
  11. app/server_cli.py +458 -0
  12. app/settings.py +188 -0
  13. app/tests.py +160 -0
  14. app/theme.py +81 -0
  15. app/urls.py +7 -0
  16. app/usage.py +94 -0
  17. app/version.py +67 -0
  18. app/wsgi.py +16 -0
  19. bookmarks/__init__.py +0 -0
  20. bookmarks/admin.py +1 -0
  21. bookmarks/apps.py +5 -0
  22. bookmarks/keys_catalog.py +54 -0
  23. bookmarks/management/__init__.py +0 -0
  24. bookmarks/management/commands/__init__.py +0 -0
  25. bookmarks/management/commands/check_database.py +190 -0
  26. bookmarks/management/commands/load_bookmarks.py +127 -0
  27. bookmarks/management/commands/watch_bookmarks.py +106 -0
  28. bookmarks/migrations/0001_initial.py +34 -0
  29. bookmarks/migrations/0002_bookmark_defaults.py +18 -0
  30. bookmarks/migrations/__init__.py +0 -0
  31. bookmarks/models.py +21 -0
  32. bookmarks/resolve.py +259 -0
  33. bookmarks/templates/bookmarks/base.html +96 -0
  34. bookmarks/templates/bookmarks/browser_url.html +75 -0
  35. bookmarks/templates/bookmarks/cmd.html +642 -0
  36. bookmarks/templates/bookmarks/copilot_review.html +96 -0
  37. bookmarks/templates/bookmarks/index.html +80 -0
  38. bookmarks/templates/bookmarks/list.html +162 -0
  39. bookmarks/templates/bookmarks/opensearch.xml +8 -0
  40. bookmarks/test_cli.py +2522 -0
  41. bookmarks/tests.py +282 -0
  42. bookmarks/urls.py +20 -0
  43. bookmarks/views.py +378 -0
  44. bunnify-0.2.0.dist-info/METADATA +222 -0
  45. bunnify-0.2.0.dist-info/RECORD +48 -0
  46. bunnify-0.2.0.dist-info/WHEEL +4 -0
  47. bunnify-0.2.0.dist-info/entry_points.txt +3 -0
  48. 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()