Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
edc-next-appointment
Advanced tools
Base classes for managing next appointment CRF at each timepoint in clinicedc/edc projects
|pypi| |actions| |codecov| |downloads|
Base classes for managing next appointment CRF at each timepoint
Declare in your app as a longitudinal model / CRF.
For example:
.. code-block:: python
# model.py
class NextAppointment(NextAppointmentCrfModelMixin, CrfModelMixin, BaseUuidModel):
class Meta(CrfModelMixin.Meta, BaseUuidModel.Meta):
verbose_name = "Next Appointment"
verbose_name_plural = "Next Appointments"
# forms.py
class NextAppointmentForm(NextAppointmentModelFormMixin, CrfModelFormMixin, forms.ModelForm):
form_validator_cls = NextAppointmentFormValidator
class Meta:
model = NextAppointment
fields = "__all__"
# admin.py
@admin.register(NextAppointment, site=intecomm_subject_admin)
class NextAppointmentAdmin(NextAppointmentModelAdminMixin, CrfModelAdmin):
form = NextAppointmentForm
.. |pypi| image:: https://img.shields.io/pypi/v/edc-next-appointment.svg :target: https://pypi.python.org/pypi/edc-next-appointment
.. |actions| image:: https://github.com/clinicedc/edc-next-appointment/workflows/build/badge.svg?branch=develop :target: https://github.com/clinicedc/edc-next-appointment/actions?query=workflow:build
.. |codecov| image:: https://codecov.io/gh/clinicedc/edc-next-appointment/branch/develop/graph/badge.svg :target: https://codecov.io/gh/clinicedc/edc-next-appointment
.. |downloads| image:: https://pepy.tech/badge/edc-next-appointment :target: https://pepy.tech/project/edc-next-appointment
FAQs
Base classes for managing next appointment CRF at each timepoint in clinicedc/edc projects
We found that edc-next-appointment demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.