Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pramari/webapp
Django User Profiles and ActivityPub Federation, made easy.
https://github.com/pramari/webapp
activitypub django profile user-management webapp
Last synced: 4 days ago
JSON representation
Django User Profiles and ActivityPub Federation, made easy.
- Host: GitHub
- URL: https://github.com/pramari/webapp
- Owner: pramari
- License: bsd-3-clause
- Created: 2023-08-21T18:57:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-03T07:56:07.000Z (23 days ago)
- Last Synced: 2025-01-03T08:30:44.199Z (23 days ago)
- Topics: activitypub, django, profile, user-management, webapp
- Language: Python
- Homepage: https://pramari.de
- Size: 611 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webapp
```mermaid
info
``````mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
``````mermaid
classDiagram
Actor <|-- Inbox: receive
Actor : Inbox
Actor : Outbox
Actor : Followers
Actor : Follows
Inbox : get
Inbox : post
Outbox <|-- Actor: publish
Outbox : Collection[] activities
Likes <|-- Actor: like
```## Fediverse Actor
```
:py:class:`webapp.models.activitypub.actor.Actor`
```## Fediverse Following
## Fediverse Followers
### Build the package
```
python3 -m build --wheel
```