[PR #1576] [MERGED] v0.8.6-rc: Moving plugins to independent python packages with finite state machine interfaces #1450

Closed
opened 2026-03-01 14:49:51 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ArchiveBox/ArchiveBox/pull/1576
Author: @pirate
Created: 10/30/2024
Status: Merged
Merged: 11/3/2024
Merged by: @pirate

Base: devHead: regrets


📝 Commits (10+)

  • 60f0458 rename configfile to collection
  • b61f6ff rename system_tasks queue to commands queue
  • 4b6f08b swap more direct settings.CONFIG access to abx getters
  • 5d9a32c wip
  • b3c1cb7 move abx plugins inside vendor dir
  • d47d429 add placeholder pyproj
  • d93aa46 fix django.forms.JSONField does not exist 500 error
  • a5d99b8 add more plugins
  • 70926f1 replace os.access with os.path.isdir
  • 6530d1f remove vendored copy of pocket and add [debug] group of pkgs for running with DEBUG=True

📊 Changes

261 files changed (+5695 additions, -3003 deletions)

View changed files

📝 .github/workflows/test.yml (+1 -1)
📝 .gitmodules (+0 -6)
📝 archivebox/.flake8 (+1 -1)
📝 archivebox/__init__.py (+46 -3)
📝 archivebox/abid_utils/models.py (+1 -1)
archivebox/abx/__init__.py (+0 -131)
archivebox/abx/archivebox/__init__.py (+0 -30)
archivebox/abx/archivebox/base_binary.py (+0 -106)
archivebox/abx/archivebox/base_extractor.py (+0 -219)
archivebox/abx/archivebox/base_replayer.py (+0 -25)
archivebox/abx/archivebox/base_searchbackend.py (+0 -25)
archivebox/abx/archivebox/hookspec.py (+0 -52)
archivebox/abx/archivebox/reads.py (+0 -160)
archivebox/abx/django/__init__.py (+0 -1)
archivebox/abx/django/apps.py (+0 -13)
archivebox/abx/django/hookspec.py (+0 -125)
archivebox/abx/django/use.py (+0 -101)
archivebox/abx/hookspec.py (+0 -22)
archivebox/abx/manager.py (+0 -30)
archivebox/abx/pydantic_pkgr/__init__.py (+0 -1)

...and 80 more files

📄 Description

Summary

Related issues

Changes these areas

  • Bugfixes
  • Feature behavior
  • Command line interface
  • Configuration options
  • Internal architecture
  • Snapshot data layout on disk

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ArchiveBox/ArchiveBox/pull/1576 **Author:** [@pirate](https://github.com/pirate) **Created:** 10/30/2024 **Status:** ✅ Merged **Merged:** 11/3/2024 **Merged by:** [@pirate](https://github.com/pirate) **Base:** `dev` ← **Head:** `regrets` --- ### 📝 Commits (10+) - [`60f0458`](https://github.com/ArchiveBox/ArchiveBox/commit/60f0458c774574dc89c78b1ce4ebdf32fd39f13f) rename configfile to collection - [`b61f6ff`](https://github.com/ArchiveBox/ArchiveBox/commit/b61f6ff8d8b608d03fe10092567585dc6f33f21f) rename system_tasks queue to commands queue - [`4b6f08b`](https://github.com/ArchiveBox/ArchiveBox/commit/4b6f08b0fe1d93a79772dd1d4d7fdf0d4f409432) swap more direct settings.CONFIG access to abx getters - [`5d9a32c`](https://github.com/ArchiveBox/ArchiveBox/commit/5d9a32c36495c7cbc6a612205d3c2b6c7dd85505) wip - [`b3c1cb7`](https://github.com/ArchiveBox/ArchiveBox/commit/b3c1cb716ef238d1e8e2132c2c816c9f0e30f381) move abx plugins inside vendor dir - [`d47d429`](https://github.com/ArchiveBox/ArchiveBox/commit/d47d429e9db9b37ca0dedb9ad1242067c8f5e50f) add placeholder pyproj - [`d93aa46`](https://github.com/ArchiveBox/ArchiveBox/commit/d93aa469497ed21ce50655cfb5b83401c97035d2) fix django.forms.JSONField does not exist 500 error - [`a5d99b8`](https://github.com/ArchiveBox/ArchiveBox/commit/a5d99b87b90e2d5cfe0b8e214e07c7ec6c1bfe5b) add more plugins - [`70926f1`](https://github.com/ArchiveBox/ArchiveBox/commit/70926f1d9fe725aa31fd4a8ff8c367eb6060f6c3) replace os.access with os.path.isdir - [`6530d1f`](https://github.com/ArchiveBox/ArchiveBox/commit/6530d1f4bf578d31d5ce2261993c13c1c4f4c304) remove vendored copy of pocket and add [debug] group of pkgs for running with DEBUG=True ### 📊 Changes **261 files changed** (+5695 additions, -3003 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/test.yml` (+1 -1) 📝 `.gitmodules` (+0 -6) 📝 `archivebox/.flake8` (+1 -1) 📝 `archivebox/__init__.py` (+46 -3) 📝 `archivebox/abid_utils/models.py` (+1 -1) ➖ `archivebox/abx/__init__.py` (+0 -131) ➖ `archivebox/abx/archivebox/__init__.py` (+0 -30) ➖ `archivebox/abx/archivebox/base_binary.py` (+0 -106) ➖ `archivebox/abx/archivebox/base_extractor.py` (+0 -219) ➖ `archivebox/abx/archivebox/base_replayer.py` (+0 -25) ➖ `archivebox/abx/archivebox/base_searchbackend.py` (+0 -25) ➖ `archivebox/abx/archivebox/hookspec.py` (+0 -52) ➖ `archivebox/abx/archivebox/reads.py` (+0 -160) ➖ `archivebox/abx/django/__init__.py` (+0 -1) ➖ `archivebox/abx/django/apps.py` (+0 -13) ➖ `archivebox/abx/django/hookspec.py` (+0 -125) ➖ `archivebox/abx/django/use.py` (+0 -101) ➖ `archivebox/abx/hookspec.py` (+0 -22) ➖ `archivebox/abx/manager.py` (+0 -30) ➖ `archivebox/abx/pydantic_pkgr/__init__.py` (+0 -1) _...and 80 more files_ </details> ### 📄 Description <!-- IMPORTANT: Do not submit PRs with only formatting / PEP8 / line length changes. --> # Summary <!--e.g. This PR fixes ABC or adds the ability to do XYZ...--> # Related issues <!-- e.g. #123 or Roadmap goal # https://github.com/pirate/ArchiveBox/wiki/Roadmap --> # Changes these areas - [ ] Bugfixes - [ ] Feature behavior - [ ] Command line interface - [ ] Configuration options - [x] Internal architecture - [ ] Snapshot data layout on disk --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-01 14:49:51 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ArchiveBox#1450
No description provided.