mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
from django.urls import path
|
|
|
|
from .views import (
|
|
CategoryDetailAPI,
|
|
CategoryListAPI,
|
|
RelationDetail,
|
|
RelationList,
|
|
SpanDetailAPI,
|
|
SpanListAPI,
|
|
TextLabelDetailAPI,
|
|
TextLabelListAPI,
|
|
)
|
|
|
|
urlpatterns = [
|
|
path(route="examples/<int:example_id>/relations", view=RelationList.as_view(), name="relation_list"),
|
|
path(
|
|
route="examples/<int:example_id>/relations/<int:annotation_id>",
|
|
view=RelationDetail.as_view(),
|
|
name="relation_detail",
|
|
),
|
|
path(route="examples/<int:example_id>/categories", view=CategoryListAPI.as_view(), name="category_list"),
|
|
path(
|
|
route="examples/<int:example_id>/categories/<int:annotation_id>",
|
|
view=CategoryDetailAPI.as_view(),
|
|
name="category_detail",
|
|
),
|
|
path(route="examples/<int:example_id>/spans", view=SpanListAPI.as_view(), name="span_list"),
|
|
path(route="examples/<int:example_id>/spans/<int:annotation_id>", view=SpanDetailAPI.as_view(), name="span_detail"),
|
|
path(route="examples/<int:example_id>/texts", view=TextLabelListAPI.as_view(), name="text_list"),
|
|
path(
|
|
route="examples/<int:example_id>/texts/<int:annotation_id>",
|
|
view=TextLabelDetailAPI.as_view(),
|
|
name="text_detail",
|
|
),
|
|
]
|