From 5ac5e5ead3fc60e88866db03e11cecd9688da773 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Wed, 31 May 2023 07:20:40 +0000 Subject: automatic import of python-lamp-core --- .gitignore | 1 + python-lamp-core.spec | 328 ++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 330 insertions(+) create mode 100644 python-lamp-core.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..d56da2a 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/LAMP-core-2021.10.4.tar.gz diff --git a/python-lamp-core.spec b/python-lamp-core.spec new file mode 100644 index 0000000..2144955 --- /dev/null +++ b/python-lamp-core.spec @@ -0,0 +1,328 @@ +%global _empty_manifest_terminate_build 0 +Name: python-lamp-core +Version: 2021.10.4 +Release: 1 +Summary: The LAMP Platform API. +License: BSD-3-Clause +URL: https://docs.lamp.digital/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/19/dc/68c44e08f0d7cad0f412fc564223b3dc4b8cc7b22f779acee1ca8a3240ea/LAMP-core-2021.10.4.tar.gz +BuildArch: noarch + +Requires: python3-nulltype +Requires: python3-certifi +Requires: python3-dateutil +Requires: python3-urllib3 + +%description +*LAMP.API* | [**query**](docs/APIApi.md#query) | **POST** / | Query the LAMP Database. +*LAMP.API* | [**schema**](docs/APIApi.md#schema) | **GET** / | View the API schema document. +*LAMP.Activity* | [**all**](docs/ActivityApi.md#all) | **GET** /activity | Get the set of all activities. +*LAMP.Activity* | [**all_by_participant**](docs/ActivityApi.md#all_by_participant) | **GET** /participant/{participant_id}/activity | Get all activities for a participant. +*LAMP.Activity* | [**all_by_researcher**](docs/ActivityApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/activity | Get all activities for a researcher. +*LAMP.Activity* | [**all_by_study**](docs/ActivityApi.md#all_by_study) | **GET** /study/{study_id}/activity | Get all activities in a study. +*LAMP.Activity* | [**create**](docs/ActivityApi.md#create) | **POST** /study/{study_id}/activity | Create a new Activity under the given Study. +*LAMP.Activity* | [**delete**](docs/ActivityApi.md#delete) | **DELETE** /activity/{activity_id} | Delete an Activity. +*LAMP.Activity* | [**update**](docs/ActivityApi.md#update) | **PUT** /activity/{activity_id} | Update an Activity's settings. +*LAMP.Activity* | [**view**](docs/ActivityApi.md#view) | **GET** /activity/{activity_id} | Get a single activity, by identifier. +*LAMP.ActivityEvent* | [**all_by_participant**](docs/ActivityEventApi.md#all_by_participant) | **GET** /participant/{participant_id}/activity_event | Get all activity events for a participant. +*LAMP.ActivityEvent* | [**all_by_researcher**](docs/ActivityEventApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/activity_event | Get all activity events for a researcher by participant. +*LAMP.ActivityEvent* | [**all_by_study**](docs/ActivityEventApi.md#all_by_study) | **GET** /study/{study_id}/activity_event | Get all activity events for a study by participant. +*LAMP.ActivityEvent* | [**create**](docs/ActivityEventApi.md#create) | **POST** /participant/{participant_id}/activity_event | Create a new ActivityEvent for the given Participant. +*LAMP.ActivityEvent* | [**delete**](docs/ActivityEventApi.md#delete) | **DELETE** /participant/{participant_id}/activity_event | Delete a ActivityEvent. +*LAMP.ActivitySpec* | [**all**](docs/ActivitySpecApi.md#all) | **GET** /activity_spec | Get all ActivitySpecs registered. +*LAMP.ActivitySpec* | [**create**](docs/ActivitySpecApi.md#create) | **POST** /activity_spec | Create a new ActivitySpec. +*LAMP.ActivitySpec* | [**delete**](docs/ActivitySpecApi.md#delete) | **DELETE** /activity_spec/{activity_spec_name} | Delete an ActivitySpec. +*LAMP.ActivitySpec* | [**update**](docs/ActivitySpecApi.md#update) | **PUT** /activity_spec/{activity_spec_name} | Update an ActivitySpec. +*LAMP.ActivitySpec* | [**view**](docs/ActivitySpecApi.md#view) | **GET** /activity_spec/{activity_spec_name} | View an ActivitySpec. +*LAMP.Credential* | [**create**](docs/CredentialApi.md#create) | **POST** /type/{type_id}/credential | +*LAMP.Credential* | [**delete**](docs/CredentialApi.md#delete) | **DELETE** /type/{type_id}/credential/{access_key} | +*LAMP.Credential* | [**list**](docs/CredentialApi.md#list) | **GET** /type/{type_id}/credential | +*LAMP.Credential* | [**update**](docs/CredentialApi.md#update) | **PUT** /type/{type_id}/credential/{access_key} | +*LAMP.Participant* | [**all**](docs/ParticipantApi.md#all) | **GET** /participant | Get the set of all participants. +*LAMP.Participant* | [**all_by_researcher**](docs/ParticipantApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/participant | Get the set of all participants under a single researcher. +*LAMP.Participant* | [**all_by_study**](docs/ParticipantApi.md#all_by_study) | **GET** /study/{study_id}/participant | Get the set of all participants in a single study. +*LAMP.Participant* | [**create**](docs/ParticipantApi.md#create) | **POST** /study/{study_id}/participant | Create a new Participant for the given Study. +*LAMP.Participant* | [**delete**](docs/ParticipantApi.md#delete) | **DELETE** /participant/{participant_id} | Delete a participant AND all owned data or event streams. +*LAMP.Participant* | [**update**](docs/ParticipantApi.md#update) | **PUT** /participant/{participant_id} | Update a Participant's settings. +*LAMP.Participant* | [**view**](docs/ParticipantApi.md#view) | **GET** /participant/{participant_id} | Get a single participant, by identifier. +*LAMP.Researcher* | [**all**](docs/ResearcherApi.md#all) | **GET** /researcher | Get the set of all researchers. +*LAMP.Researcher* | [**create**](docs/ResearcherApi.md#create) | **POST** /researcher | Create a new Researcher. +*LAMP.Researcher* | [**delete**](docs/ResearcherApi.md#delete) | **DELETE** /researcher/{researcher_id} | Delete a researcher. +*LAMP.Researcher* | [**update**](docs/ResearcherApi.md#update) | **PUT** /researcher/{researcher_id} | Update a Researcher's settings. +*LAMP.Researcher* | [**view**](docs/ResearcherApi.md#view) | **GET** /researcher/{researcher_id} | Get a single researcher, by identifier. +*LAMP.Sensor* | [**all**](docs/SensorApi.md#all) | **GET** /sensor | Get the set of all sensors. +*LAMP.Sensor* | [**all_by_participant**](docs/SensorApi.md#all_by_participant) | **GET** /participant/{participant_id}/sensor | Get all sensors for a participant. +*LAMP.Sensor* | [**all_by_researcher**](docs/SensorApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/sensor | Get all sensors for a researcher. +*LAMP.Sensor* | [**all_by_study**](docs/SensorApi.md#all_by_study) | **GET** /study/{study_id}/sensor | View all sensors in a study. +*LAMP.Sensor* | [**create**](docs/SensorApi.md#create) | **POST** /study/{study_id}/sensor | Create a new Sensor under the given Study. +*LAMP.Sensor* | [**delete**](docs/SensorApi.md#delete) | **DELETE** /sensor/{sensor_id} | Delete a Sensor. +*LAMP.Sensor* | [**update**](docs/SensorApi.md#update) | **PUT** /sensor/{sensor_id} | Update an Sensor's settings. +*LAMP.Sensor* | [**view**](docs/SensorApi.md#view) | **GET** /sensor/{sensor_id} | Get a single sensor, by identifier. +*LAMP.SensorEvent* | [**all_by_participant**](docs/SensorEventApi.md#all_by_participant) | **GET** /participant/{participant_id}/sensor_event | Get all sensor events for a participant. +*LAMP.SensorEvent* | [**all_by_researcher**](docs/SensorEventApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/sensor_event | Get all sensor events for a researcher by participant. +*LAMP.SensorEvent* | [**all_by_study**](docs/SensorEventApi.md#all_by_study) | **GET** /study/{study_id}/sensor_event | Get all sensor events for a study by participant. +*LAMP.SensorEvent* | [**create**](docs/SensorEventApi.md#create) | **POST** /participant/{participant_id}/sensor_event | Create a new SensorEvent for the given Participant. +*LAMP.SensorEvent* | [**delete**](docs/SensorEventApi.md#delete) | **DELETE** /participant/{participant_id}/sensor_event | Delete a sensor event. +*LAMP.SensorSpec* | [**all**](docs/SensorSpecApi.md#all) | **GET** /sensor_spec | Get all SensorSpecs registered. +*LAMP.SensorSpec* | [**create**](docs/SensorSpecApi.md#create) | **POST** /sensor_spec | Create a new SensorSpec. +*LAMP.SensorSpec* | [**delete**](docs/SensorSpecApi.md#delete) | **DELETE** /sensor_spec/{sensor_spec_name} | Delete an SensorSpec. +*LAMP.SensorSpec* | [**update**](docs/SensorSpecApi.md#update) | **PUT** /sensor_spec/{sensor_spec_name} | Update an SensorSpec. +*LAMP.SensorSpec* | [**view**](docs/SensorSpecApi.md#view) | **GET** /sensor_spec/{sensor_spec_name} | Get a SensorSpec. +*LAMP.Study* | [**all**](docs/StudyApi.md#all) | **GET** /study | Get the set of all studies. +*LAMP.Study* | [**all_by_researcher**](docs/StudyApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/study | Get the set of studies for a single researcher. +*LAMP.Study* | [**create**](docs/StudyApi.md#create) | **POST** /researcher/{researcher_id}/study | Create a new Study for the given Researcher. +*LAMP.Study* | [**delete**](docs/StudyApi.md#delete) | **DELETE** /study/{study_id} | Delete a study. +*LAMP.Study* | [**update**](docs/StudyApi.md#update) | **PUT** /study/{study_id} | Update the study. +*LAMP.Study* | [**view**](docs/StudyApi.md#view) | **GET** /study/{study_id} | Get a single study, by identifier. +*LAMP.Type* | [**get_attachment**](docs/TypeApi.md#get_attachment) | **GET** /type/{type_id}/attachment/{attachment_key} | +*LAMP.Type* | [**get_dynamic_attachment**](docs/TypeApi.md#get_dynamic_attachment) | **GET** /type/{type_id}/attachment/dynamic/{attachment_key} | +*LAMP.Type* | [**list_attachments**](docs/TypeApi.md#list_attachments) | **GET** /type/{type_id}/attachment | +*LAMP.Type* | [**parent**](docs/TypeApi.md#parent) | **GET** /type/{type_id}/parent | Find the owner(s) of the resource. +*LAMP.Type* | [**set_attachment**](docs/TypeApi.md#set_attachment) | **PUT** /type/{type_id}/attachment/{attachment_key}/{target} | +*LAMP.Type* | [**set_dynamic_attachment**](docs/TypeApi.md#set_dynamic_attachment) | **PUT** /type/{type_id}/attachment/dynamic/{attachment_key}/{target} | +## Documentation For Models + - [AccessCitation](docs/AccessCitation.md) + - [Activity](docs/Activity.md) + - [ActivityEvent](docs/ActivityEvent.md) + - [ActivitySpec](docs/ActivitySpec.md) + - [Credential](docs/Credential.md) + - [Document](docs/Document.md) + - [DurationInterval](docs/DurationInterval.md) + - [DurationIntervalLegacy](docs/DurationIntervalLegacy.md) + - [DynamicAttachment](docs/DynamicAttachment.md) + - [Error](docs/Error.md) + - [Metadata](docs/Metadata.md) + - [Participant](docs/Participant.md) + - [Researcher](docs/Researcher.md) + - [Sensor](docs/Sensor.md) + - [SensorEvent](docs/SensorEvent.md) + - [SensorSpec](docs/SensorSpec.md) + - [Study](docs/Study.md) + - [TemporalSlice](docs/TemporalSlice.md) + +%package -n python3-lamp-core +Summary: The LAMP Platform API. +Provides: python-lamp-core +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-lamp-core +*LAMP.API* | [**query**](docs/APIApi.md#query) | **POST** / | Query the LAMP Database. +*LAMP.API* | [**schema**](docs/APIApi.md#schema) | **GET** / | View the API schema document. +*LAMP.Activity* | [**all**](docs/ActivityApi.md#all) | **GET** /activity | Get the set of all activities. +*LAMP.Activity* | [**all_by_participant**](docs/ActivityApi.md#all_by_participant) | **GET** /participant/{participant_id}/activity | Get all activities for a participant. +*LAMP.Activity* | [**all_by_researcher**](docs/ActivityApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/activity | Get all activities for a researcher. +*LAMP.Activity* | [**all_by_study**](docs/ActivityApi.md#all_by_study) | **GET** /study/{study_id}/activity | Get all activities in a study. +*LAMP.Activity* | [**create**](docs/ActivityApi.md#create) | **POST** /study/{study_id}/activity | Create a new Activity under the given Study. +*LAMP.Activity* | [**delete**](docs/ActivityApi.md#delete) | **DELETE** /activity/{activity_id} | Delete an Activity. +*LAMP.Activity* | [**update**](docs/ActivityApi.md#update) | **PUT** /activity/{activity_id} | Update an Activity's settings. +*LAMP.Activity* | [**view**](docs/ActivityApi.md#view) | **GET** /activity/{activity_id} | Get a single activity, by identifier. +*LAMP.ActivityEvent* | [**all_by_participant**](docs/ActivityEventApi.md#all_by_participant) | **GET** /participant/{participant_id}/activity_event | Get all activity events for a participant. +*LAMP.ActivityEvent* | [**all_by_researcher**](docs/ActivityEventApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/activity_event | Get all activity events for a researcher by participant. +*LAMP.ActivityEvent* | [**all_by_study**](docs/ActivityEventApi.md#all_by_study) | **GET** /study/{study_id}/activity_event | Get all activity events for a study by participant. +*LAMP.ActivityEvent* | [**create**](docs/ActivityEventApi.md#create) | **POST** /participant/{participant_id}/activity_event | Create a new ActivityEvent for the given Participant. +*LAMP.ActivityEvent* | [**delete**](docs/ActivityEventApi.md#delete) | **DELETE** /participant/{participant_id}/activity_event | Delete a ActivityEvent. +*LAMP.ActivitySpec* | [**all**](docs/ActivitySpecApi.md#all) | **GET** /activity_spec | Get all ActivitySpecs registered. +*LAMP.ActivitySpec* | [**create**](docs/ActivitySpecApi.md#create) | **POST** /activity_spec | Create a new ActivitySpec. +*LAMP.ActivitySpec* | [**delete**](docs/ActivitySpecApi.md#delete) | **DELETE** /activity_spec/{activity_spec_name} | Delete an ActivitySpec. +*LAMP.ActivitySpec* | [**update**](docs/ActivitySpecApi.md#update) | **PUT** /activity_spec/{activity_spec_name} | Update an ActivitySpec. +*LAMP.ActivitySpec* | [**view**](docs/ActivitySpecApi.md#view) | **GET** /activity_spec/{activity_spec_name} | View an ActivitySpec. +*LAMP.Credential* | [**create**](docs/CredentialApi.md#create) | **POST** /type/{type_id}/credential | +*LAMP.Credential* | [**delete**](docs/CredentialApi.md#delete) | **DELETE** /type/{type_id}/credential/{access_key} | +*LAMP.Credential* | [**list**](docs/CredentialApi.md#list) | **GET** /type/{type_id}/credential | +*LAMP.Credential* | [**update**](docs/CredentialApi.md#update) | **PUT** /type/{type_id}/credential/{access_key} | +*LAMP.Participant* | [**all**](docs/ParticipantApi.md#all) | **GET** /participant | Get the set of all participants. +*LAMP.Participant* | [**all_by_researcher**](docs/ParticipantApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/participant | Get the set of all participants under a single researcher. +*LAMP.Participant* | [**all_by_study**](docs/ParticipantApi.md#all_by_study) | **GET** /study/{study_id}/participant | Get the set of all participants in a single study. +*LAMP.Participant* | [**create**](docs/ParticipantApi.md#create) | **POST** /study/{study_id}/participant | Create a new Participant for the given Study. +*LAMP.Participant* | [**delete**](docs/ParticipantApi.md#delete) | **DELETE** /participant/{participant_id} | Delete a participant AND all owned data or event streams. +*LAMP.Participant* | [**update**](docs/ParticipantApi.md#update) | **PUT** /participant/{participant_id} | Update a Participant's settings. +*LAMP.Participant* | [**view**](docs/ParticipantApi.md#view) | **GET** /participant/{participant_id} | Get a single participant, by identifier. +*LAMP.Researcher* | [**all**](docs/ResearcherApi.md#all) | **GET** /researcher | Get the set of all researchers. +*LAMP.Researcher* | [**create**](docs/ResearcherApi.md#create) | **POST** /researcher | Create a new Researcher. +*LAMP.Researcher* | [**delete**](docs/ResearcherApi.md#delete) | **DELETE** /researcher/{researcher_id} | Delete a researcher. +*LAMP.Researcher* | [**update**](docs/ResearcherApi.md#update) | **PUT** /researcher/{researcher_id} | Update a Researcher's settings. +*LAMP.Researcher* | [**view**](docs/ResearcherApi.md#view) | **GET** /researcher/{researcher_id} | Get a single researcher, by identifier. +*LAMP.Sensor* | [**all**](docs/SensorApi.md#all) | **GET** /sensor | Get the set of all sensors. +*LAMP.Sensor* | [**all_by_participant**](docs/SensorApi.md#all_by_participant) | **GET** /participant/{participant_id}/sensor | Get all sensors for a participant. +*LAMP.Sensor* | [**all_by_researcher**](docs/SensorApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/sensor | Get all sensors for a researcher. +*LAMP.Sensor* | [**all_by_study**](docs/SensorApi.md#all_by_study) | **GET** /study/{study_id}/sensor | View all sensors in a study. +*LAMP.Sensor* | [**create**](docs/SensorApi.md#create) | **POST** /study/{study_id}/sensor | Create a new Sensor under the given Study. +*LAMP.Sensor* | [**delete**](docs/SensorApi.md#delete) | **DELETE** /sensor/{sensor_id} | Delete a Sensor. +*LAMP.Sensor* | [**update**](docs/SensorApi.md#update) | **PUT** /sensor/{sensor_id} | Update an Sensor's settings. +*LAMP.Sensor* | [**view**](docs/SensorApi.md#view) | **GET** /sensor/{sensor_id} | Get a single sensor, by identifier. +*LAMP.SensorEvent* | [**all_by_participant**](docs/SensorEventApi.md#all_by_participant) | **GET** /participant/{participant_id}/sensor_event | Get all sensor events for a participant. +*LAMP.SensorEvent* | [**all_by_researcher**](docs/SensorEventApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/sensor_event | Get all sensor events for a researcher by participant. +*LAMP.SensorEvent* | [**all_by_study**](docs/SensorEventApi.md#all_by_study) | **GET** /study/{study_id}/sensor_event | Get all sensor events for a study by participant. +*LAMP.SensorEvent* | [**create**](docs/SensorEventApi.md#create) | **POST** /participant/{participant_id}/sensor_event | Create a new SensorEvent for the given Participant. +*LAMP.SensorEvent* | [**delete**](docs/SensorEventApi.md#delete) | **DELETE** /participant/{participant_id}/sensor_event | Delete a sensor event. +*LAMP.SensorSpec* | [**all**](docs/SensorSpecApi.md#all) | **GET** /sensor_spec | Get all SensorSpecs registered. +*LAMP.SensorSpec* | [**create**](docs/SensorSpecApi.md#create) | **POST** /sensor_spec | Create a new SensorSpec. +*LAMP.SensorSpec* | [**delete**](docs/SensorSpecApi.md#delete) | **DELETE** /sensor_spec/{sensor_spec_name} | Delete an SensorSpec. +*LAMP.SensorSpec* | [**update**](docs/SensorSpecApi.md#update) | **PUT** /sensor_spec/{sensor_spec_name} | Update an SensorSpec. +*LAMP.SensorSpec* | [**view**](docs/SensorSpecApi.md#view) | **GET** /sensor_spec/{sensor_spec_name} | Get a SensorSpec. +*LAMP.Study* | [**all**](docs/StudyApi.md#all) | **GET** /study | Get the set of all studies. +*LAMP.Study* | [**all_by_researcher**](docs/StudyApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/study | Get the set of studies for a single researcher. +*LAMP.Study* | [**create**](docs/StudyApi.md#create) | **POST** /researcher/{researcher_id}/study | Create a new Study for the given Researcher. +*LAMP.Study* | [**delete**](docs/StudyApi.md#delete) | **DELETE** /study/{study_id} | Delete a study. +*LAMP.Study* | [**update**](docs/StudyApi.md#update) | **PUT** /study/{study_id} | Update the study. +*LAMP.Study* | [**view**](docs/StudyApi.md#view) | **GET** /study/{study_id} | Get a single study, by identifier. +*LAMP.Type* | [**get_attachment**](docs/TypeApi.md#get_attachment) | **GET** /type/{type_id}/attachment/{attachment_key} | +*LAMP.Type* | [**get_dynamic_attachment**](docs/TypeApi.md#get_dynamic_attachment) | **GET** /type/{type_id}/attachment/dynamic/{attachment_key} | +*LAMP.Type* | [**list_attachments**](docs/TypeApi.md#list_attachments) | **GET** /type/{type_id}/attachment | +*LAMP.Type* | [**parent**](docs/TypeApi.md#parent) | **GET** /type/{type_id}/parent | Find the owner(s) of the resource. +*LAMP.Type* | [**set_attachment**](docs/TypeApi.md#set_attachment) | **PUT** /type/{type_id}/attachment/{attachment_key}/{target} | +*LAMP.Type* | [**set_dynamic_attachment**](docs/TypeApi.md#set_dynamic_attachment) | **PUT** /type/{type_id}/attachment/dynamic/{attachment_key}/{target} | +## Documentation For Models + - [AccessCitation](docs/AccessCitation.md) + - [Activity](docs/Activity.md) + - [ActivityEvent](docs/ActivityEvent.md) + - [ActivitySpec](docs/ActivitySpec.md) + - [Credential](docs/Credential.md) + - [Document](docs/Document.md) + - [DurationInterval](docs/DurationInterval.md) + - [DurationIntervalLegacy](docs/DurationIntervalLegacy.md) + - [DynamicAttachment](docs/DynamicAttachment.md) + - [Error](docs/Error.md) + - [Metadata](docs/Metadata.md) + - [Participant](docs/Participant.md) + - [Researcher](docs/Researcher.md) + - [Sensor](docs/Sensor.md) + - [SensorEvent](docs/SensorEvent.md) + - [SensorSpec](docs/SensorSpec.md) + - [Study](docs/Study.md) + - [TemporalSlice](docs/TemporalSlice.md) + +%package help +Summary: Development documents and examples for lamp-core +Provides: python3-lamp-core-doc +%description help +*LAMP.API* | [**query**](docs/APIApi.md#query) | **POST** / | Query the LAMP Database. +*LAMP.API* | [**schema**](docs/APIApi.md#schema) | **GET** / | View the API schema document. +*LAMP.Activity* | [**all**](docs/ActivityApi.md#all) | **GET** /activity | Get the set of all activities. +*LAMP.Activity* | [**all_by_participant**](docs/ActivityApi.md#all_by_participant) | **GET** /participant/{participant_id}/activity | Get all activities for a participant. +*LAMP.Activity* | [**all_by_researcher**](docs/ActivityApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/activity | Get all activities for a researcher. +*LAMP.Activity* | [**all_by_study**](docs/ActivityApi.md#all_by_study) | **GET** /study/{study_id}/activity | Get all activities in a study. +*LAMP.Activity* | [**create**](docs/ActivityApi.md#create) | **POST** /study/{study_id}/activity | Create a new Activity under the given Study. +*LAMP.Activity* | [**delete**](docs/ActivityApi.md#delete) | **DELETE** /activity/{activity_id} | Delete an Activity. +*LAMP.Activity* | [**update**](docs/ActivityApi.md#update) | **PUT** /activity/{activity_id} | Update an Activity's settings. +*LAMP.Activity* | [**view**](docs/ActivityApi.md#view) | **GET** /activity/{activity_id} | Get a single activity, by identifier. +*LAMP.ActivityEvent* | [**all_by_participant**](docs/ActivityEventApi.md#all_by_participant) | **GET** /participant/{participant_id}/activity_event | Get all activity events for a participant. +*LAMP.ActivityEvent* | [**all_by_researcher**](docs/ActivityEventApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/activity_event | Get all activity events for a researcher by participant. +*LAMP.ActivityEvent* | [**all_by_study**](docs/ActivityEventApi.md#all_by_study) | **GET** /study/{study_id}/activity_event | Get all activity events for a study by participant. +*LAMP.ActivityEvent* | [**create**](docs/ActivityEventApi.md#create) | **POST** /participant/{participant_id}/activity_event | Create a new ActivityEvent for the given Participant. +*LAMP.ActivityEvent* | [**delete**](docs/ActivityEventApi.md#delete) | **DELETE** /participant/{participant_id}/activity_event | Delete a ActivityEvent. +*LAMP.ActivitySpec* | [**all**](docs/ActivitySpecApi.md#all) | **GET** /activity_spec | Get all ActivitySpecs registered. +*LAMP.ActivitySpec* | [**create**](docs/ActivitySpecApi.md#create) | **POST** /activity_spec | Create a new ActivitySpec. +*LAMP.ActivitySpec* | [**delete**](docs/ActivitySpecApi.md#delete) | **DELETE** /activity_spec/{activity_spec_name} | Delete an ActivitySpec. +*LAMP.ActivitySpec* | [**update**](docs/ActivitySpecApi.md#update) | **PUT** /activity_spec/{activity_spec_name} | Update an ActivitySpec. +*LAMP.ActivitySpec* | [**view**](docs/ActivitySpecApi.md#view) | **GET** /activity_spec/{activity_spec_name} | View an ActivitySpec. +*LAMP.Credential* | [**create**](docs/CredentialApi.md#create) | **POST** /type/{type_id}/credential | +*LAMP.Credential* | [**delete**](docs/CredentialApi.md#delete) | **DELETE** /type/{type_id}/credential/{access_key} | +*LAMP.Credential* | [**list**](docs/CredentialApi.md#list) | **GET** /type/{type_id}/credential | +*LAMP.Credential* | [**update**](docs/CredentialApi.md#update) | **PUT** /type/{type_id}/credential/{access_key} | +*LAMP.Participant* | [**all**](docs/ParticipantApi.md#all) | **GET** /participant | Get the set of all participants. +*LAMP.Participant* | [**all_by_researcher**](docs/ParticipantApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/participant | Get the set of all participants under a single researcher. +*LAMP.Participant* | [**all_by_study**](docs/ParticipantApi.md#all_by_study) | **GET** /study/{study_id}/participant | Get the set of all participants in a single study. +*LAMP.Participant* | [**create**](docs/ParticipantApi.md#create) | **POST** /study/{study_id}/participant | Create a new Participant for the given Study. +*LAMP.Participant* | [**delete**](docs/ParticipantApi.md#delete) | **DELETE** /participant/{participant_id} | Delete a participant AND all owned data or event streams. +*LAMP.Participant* | [**update**](docs/ParticipantApi.md#update) | **PUT** /participant/{participant_id} | Update a Participant's settings. +*LAMP.Participant* | [**view**](docs/ParticipantApi.md#view) | **GET** /participant/{participant_id} | Get a single participant, by identifier. +*LAMP.Researcher* | [**all**](docs/ResearcherApi.md#all) | **GET** /researcher | Get the set of all researchers. +*LAMP.Researcher* | [**create**](docs/ResearcherApi.md#create) | **POST** /researcher | Create a new Researcher. +*LAMP.Researcher* | [**delete**](docs/ResearcherApi.md#delete) | **DELETE** /researcher/{researcher_id} | Delete a researcher. +*LAMP.Researcher* | [**update**](docs/ResearcherApi.md#update) | **PUT** /researcher/{researcher_id} | Update a Researcher's settings. +*LAMP.Researcher* | [**view**](docs/ResearcherApi.md#view) | **GET** /researcher/{researcher_id} | Get a single researcher, by identifier. +*LAMP.Sensor* | [**all**](docs/SensorApi.md#all) | **GET** /sensor | Get the set of all sensors. +*LAMP.Sensor* | [**all_by_participant**](docs/SensorApi.md#all_by_participant) | **GET** /participant/{participant_id}/sensor | Get all sensors for a participant. +*LAMP.Sensor* | [**all_by_researcher**](docs/SensorApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/sensor | Get all sensors for a researcher. +*LAMP.Sensor* | [**all_by_study**](docs/SensorApi.md#all_by_study) | **GET** /study/{study_id}/sensor | View all sensors in a study. +*LAMP.Sensor* | [**create**](docs/SensorApi.md#create) | **POST** /study/{study_id}/sensor | Create a new Sensor under the given Study. +*LAMP.Sensor* | [**delete**](docs/SensorApi.md#delete) | **DELETE** /sensor/{sensor_id} | Delete a Sensor. +*LAMP.Sensor* | [**update**](docs/SensorApi.md#update) | **PUT** /sensor/{sensor_id} | Update an Sensor's settings. +*LAMP.Sensor* | [**view**](docs/SensorApi.md#view) | **GET** /sensor/{sensor_id} | Get a single sensor, by identifier. +*LAMP.SensorEvent* | [**all_by_participant**](docs/SensorEventApi.md#all_by_participant) | **GET** /participant/{participant_id}/sensor_event | Get all sensor events for a participant. +*LAMP.SensorEvent* | [**all_by_researcher**](docs/SensorEventApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/sensor_event | Get all sensor events for a researcher by participant. +*LAMP.SensorEvent* | [**all_by_study**](docs/SensorEventApi.md#all_by_study) | **GET** /study/{study_id}/sensor_event | Get all sensor events for a study by participant. +*LAMP.SensorEvent* | [**create**](docs/SensorEventApi.md#create) | **POST** /participant/{participant_id}/sensor_event | Create a new SensorEvent for the given Participant. +*LAMP.SensorEvent* | [**delete**](docs/SensorEventApi.md#delete) | **DELETE** /participant/{participant_id}/sensor_event | Delete a sensor event. +*LAMP.SensorSpec* | [**all**](docs/SensorSpecApi.md#all) | **GET** /sensor_spec | Get all SensorSpecs registered. +*LAMP.SensorSpec* | [**create**](docs/SensorSpecApi.md#create) | **POST** /sensor_spec | Create a new SensorSpec. +*LAMP.SensorSpec* | [**delete**](docs/SensorSpecApi.md#delete) | **DELETE** /sensor_spec/{sensor_spec_name} | Delete an SensorSpec. +*LAMP.SensorSpec* | [**update**](docs/SensorSpecApi.md#update) | **PUT** /sensor_spec/{sensor_spec_name} | Update an SensorSpec. +*LAMP.SensorSpec* | [**view**](docs/SensorSpecApi.md#view) | **GET** /sensor_spec/{sensor_spec_name} | Get a SensorSpec. +*LAMP.Study* | [**all**](docs/StudyApi.md#all) | **GET** /study | Get the set of all studies. +*LAMP.Study* | [**all_by_researcher**](docs/StudyApi.md#all_by_researcher) | **GET** /researcher/{researcher_id}/study | Get the set of studies for a single researcher. +*LAMP.Study* | [**create**](docs/StudyApi.md#create) | **POST** /researcher/{researcher_id}/study | Create a new Study for the given Researcher. +*LAMP.Study* | [**delete**](docs/StudyApi.md#delete) | **DELETE** /study/{study_id} | Delete a study. +*LAMP.Study* | [**update**](docs/StudyApi.md#update) | **PUT** /study/{study_id} | Update the study. +*LAMP.Study* | [**view**](docs/StudyApi.md#view) | **GET** /study/{study_id} | Get a single study, by identifier. +*LAMP.Type* | [**get_attachment**](docs/TypeApi.md#get_attachment) | **GET** /type/{type_id}/attachment/{attachment_key} | +*LAMP.Type* | [**get_dynamic_attachment**](docs/TypeApi.md#get_dynamic_attachment) | **GET** /type/{type_id}/attachment/dynamic/{attachment_key} | +*LAMP.Type* | [**list_attachments**](docs/TypeApi.md#list_attachments) | **GET** /type/{type_id}/attachment | +*LAMP.Type* | [**parent**](docs/TypeApi.md#parent) | **GET** /type/{type_id}/parent | Find the owner(s) of the resource. +*LAMP.Type* | [**set_attachment**](docs/TypeApi.md#set_attachment) | **PUT** /type/{type_id}/attachment/{attachment_key}/{target} | +*LAMP.Type* | [**set_dynamic_attachment**](docs/TypeApi.md#set_dynamic_attachment) | **PUT** /type/{type_id}/attachment/dynamic/{attachment_key}/{target} | +## Documentation For Models + - [AccessCitation](docs/AccessCitation.md) + - [Activity](docs/Activity.md) + - [ActivityEvent](docs/ActivityEvent.md) + - [ActivitySpec](docs/ActivitySpec.md) + - [Credential](docs/Credential.md) + - [Document](docs/Document.md) + - [DurationInterval](docs/DurationInterval.md) + - [DurationIntervalLegacy](docs/DurationIntervalLegacy.md) + - [DynamicAttachment](docs/DynamicAttachment.md) + - [Error](docs/Error.md) + - [Metadata](docs/Metadata.md) + - [Participant](docs/Participant.md) + - [Researcher](docs/Researcher.md) + - [Sensor](docs/Sensor.md) + - [SensorEvent](docs/SensorEvent.md) + - [SensorSpec](docs/SensorSpec.md) + - [Study](docs/Study.md) + - [TemporalSlice](docs/TemporalSlice.md) + +%prep +%autosetup -n lamp-core-2021.10.4 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-lamp-core -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 31 2023 Python_Bot - 2021.10.4-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..5eb480f --- /dev/null +++ b/sources @@ -0,0 +1 @@ +beb70c48ec07184c1b23b978ef8c6a46 LAMP-core-2021.10.4.tar.gz -- cgit v1.2.3