STWA Documentation. Release Rafał Mirończyk

Size: px
Start display at page:

Download "STWA Documentation. Release Rafał Mirończyk"

Transcription

1 STWA Documentation Release Rafał Mirończyk Sep 29, 2017

2

3 Contents 1 Accounts Enums Forms Helpers Models Views Health Forms Models Views Shared Context Processors Helpers Models Templatetags Filters Tags Indices and tables 17 Python Module Index 19 i

4 ii

5 Contents: Contents 1

6 2 Contents

7 CHAPTER 1 Accounts Enums accounts.enums.sex_select = (( F, Female ), ( M, Male )) selection for sex field Forms class accounts.forms.change form(*args, **kwargs) Bases: accounts.forms.checkcurrentpasswordmixin, accounts.forms. mixin class Meta button_text = Change name = address change Change Form.base_fields = OrderedDict([( , <django.forms.fields. field object>), ( current_passw Change Form.declared_fields = OrderedDict([( , <django.forms.fields. field object>), ( current_ Change Form.media class accounts.forms.changepasswordform(*args, **kwargs) Bases: accounts.forms.setnewpasswordformmixin class Meta button_text = Change password name = Password change ChangePasswordForm.base_fields = OrderedDict([( password, <django.forms.fields.charfield object>), ( re_pas ChangePasswordForm.clean_old_password() 3

8 ChangePasswordForm.declared_fields = OrderedDict([( password, <django.forms.fields.charfield object>), ( r ChangePasswordForm.media class accounts.forms.checkcurrentpasswordmixin(data=none, files=none, auto_id=u id_%s, prefix=none, initial=none, error_class=<class django.forms.utils.errorlist >, label_suffix=none, empty_permitted=false) Bases: django.forms.forms.form base_fields = OrderedDict([( current_password, <django.forms.fields.charfield object>)]) clean_current_password() declared_fields = OrderedDict([( current_password, <django.forms.fields.charfield object>)]) media class accounts.forms. mixin(data=none, files=none, auto_id=u id_%s, prefix=none, initial=none, error_class=<class django.forms.utils.errorlist >, label_suffix=none, empty_permitted=false) Bases: django.forms.forms.form base_fields = OrderedDict([( , <django.forms.fields. field object>)]) clean_ () declared_fields = OrderedDict([( , <django.forms.fields. field object>)]) media class accounts.forms.loginform(data=none, files=none, auto_id=u id_%s, prefix=none, initial=none, error_class=<class django.forms.utils.errorlist >, label_suffix=none, empty_permitted=false) Bases: django.forms.forms.form class Meta button_text = Sign in name = Sign in LoginForm.base_fields = OrderedDict([( username, <django.forms.fields.charfield object>), ( password, <django LoginForm.declared_fields = OrderedDict([( username, <django.forms.fields.charfield object>), ( password, <d LoginForm.media class accounts.forms.newpasswordform(data=none, files=none, auto_id=u id_%s, prefix=none, initial=none, error_class=<class django.forms.utils.errorlist >, label_suffix=none, empty_permitted=false) Bases: accounts.forms.setnewpasswordformmixin class Meta button_text = Change password name = Password change NewPasswordForm.base_fields = OrderedDict([( password, <django.forms.fields.charfield object>), ( re_passwor NewPasswordForm.declared_fields = OrderedDict([( password, <django.forms.fields.charfield object>), ( re_pa 4 Chapter 1. Accounts

9 NewPasswordForm.media class accounts.forms.passwordresetform(data=none, files=none, auto_id=u id_%s, prefix=none, initial=none, error_class=<class django.forms.utils.errorlist >, label_suffix=none, empty_permitted=false) Bases: accounts.forms.usernameor mixin class Meta button_text = Reset Password name = Password reset PasswordResetForm.base_fields = OrderedDict([( username_or_ , <django.forms.fields.charfield object>)] PasswordResetForm.declared_fields = OrderedDict([( username_or_ , <django.forms.fields.charfield obj PasswordResetForm.media class accounts.forms.registrationform(*args, **kwargs) Bases: accounts.forms. mixin class Meta button_text = Sign up name = Sign up RegistrationForm.base_fields = OrderedDict([( , <django.forms.fields. field object>), ( username, < RegistrationForm.clean_re_password() RegistrationForm.clean_username() RegistrationForm.declared_fields = OrderedDict([( , <django.forms.fields. field object>), ( usernam RegistrationForm.media class accounts.forms.resendactivationmailform(data=none, files=none, auto_id=u id_%s, prefix=none, initial=none, error_class=<class django.forms.utils.errorlist >, label_suffix=none, empty_permitted=false) Bases: accounts.forms.usernameor mixin class Meta button_text = Send activation link name = Send activation link ResendActivationMailForm.base_fields = OrderedDict([( username_or_ , <django.forms.fields.charfield ResendActivationMailForm.clean_username_or_ () ResendActivationMailForm.declared_fields = OrderedDict([( username_or_ , <django.forms.fields.cha ResendActivationMailForm.media 1.2. Forms 5

10 class accounts.forms.setnewpasswordformmixin(data=none, files=none, auto_id=u id_%s, prefix=none, initial=none, error_class=<class django.forms.utils.errorlist >, label_suffix=none, empty_permitted=false) Bases: django.forms.forms.form base_fields = OrderedDict([( password, <django.forms.fields.charfield object>), ( re_password, <django.forms.field clean_re_password() declared_fields = OrderedDict([( password, <django.forms.fields.charfield object>), ( re_password, <django.form media class accounts.forms.userprofileform(data=none, files=none, auto_id=u id_%s, prefix=none, initial=none, error_class=<class django.forms.utils.errorlist >, label_suffix=none, empty_permitted=false, instance=none) Bases: django.forms.models.modelform class Meta button_text = Save exclude = ( user,) model alias of UserProfile name = Profile settings UserProfileForm.base_fields = OrderedDict([( dob, <django.forms.fields.datefield object>), ( sex, <django.for UserProfileForm.clean_dob() UserProfileForm.clean_height() UserProfileForm.declared_fields = OrderedDict([( dob, <django.forms.fields.datefield object>)]) UserProfileForm.media class accounts.forms.usernameor mixin(data=none, files=none, auto_id=u id_%s, prefix=none, initial=none, error_class=<class django.forms.utils.errorlist >, label_suffix=none, empty_permitted=false) Bases: django.forms.forms.form base_fields = OrderedDict([( username_or_ , <django.forms.fields.charfield object>)]) clean_username_or_ () declared_fields = OrderedDict([( username_or_ , <django.forms.fields.charfield object>)]) media Helpers accounts.helpers.get_mail_provider_url( ) Get url to provider of given address Parameters address 6 Chapter 1. Accounts

11 Returns url to s provider login page Models class accounts.models. activation(id, token, created_at, user_id, ) Bases: app.shared.models.createdatmixin, app.shared.models.sha1tokenmixin exception DoesNotExist Bases: django.core.exceptions.objectdoesnotexist exception Activation.MultipleObjectsReturned Bases: django.core.exceptions.multipleobjectsreturned Activation.activation_link Get new activation link Returns complete change activation link Return type str Activation.get_next_by_created_at(*moreargs, **morekwargs) Activation.get_previous_by_created_at(*moreargs, **morekwargs) Activation.objects = <django.db.models.manager.manager object> Activation.user class accounts.models.passwordreset(id, token, created_at, user_id) Bases: app.shared.models.createdatmixin, app.shared.models.sha1tokenmixin exception DoesNotExist Bases: django.core.exceptions.objectdoesnotexist exception PasswordReset.MultipleObjectsReturned Bases: django.core.exceptions.multipleobjectsreturned PasswordReset.get_next_by_created_at(*moreargs, **morekwargs) PasswordReset.get_password_reset_link() Returns password reset link Returns complete password reset link Return type str PasswordReset.get_previous_by_created_at(*moreargs, **morekwargs) PasswordReset.objects = <django.db.models.manager.manager object> PasswordReset.user class accounts.models.useractivation(id, token, created_at, user_id) Bases: app.shared.models.createdatmixin, app.shared.models.sha1tokenmixin exception DoesNotExist Bases: django.core.exceptions.objectdoesnotexist exception UserActivation.MultipleObjectsReturned Bases: django.core.exceptions.multipleobjectsreturned UserActivation.activation_link Returns user activation link 1.4. Models 7

12 Returns complete user activation link Return type str UserActivation.get_next_by_created_at(*moreargs, **morekwargs) UserActivation.get_previous_by_created_at(*moreargs, **morekwargs) UserActivation.objects = <django.db.models.manager.manager object> UserActivation.user class accounts.models.userprofile(id, user_id, dob, sex, height) Bases: django.db.models.base.model exception DoesNotExist Bases: django.core.exceptions.objectdoesnotexist exception UserProfile.MultipleObjectsReturned Bases: django.core.exceptions.multipleobjectsreturned UserProfile.age Returns user age in years Return type int UserProfile.bmi Compute BMI for last weighting Returns tuple of user BMI and date of last weighting Return type tuple UserProfile.favourite_sport 1.get discipline with most workouts in last year 2.If there is no workouts in last year - get from all workouts Returns favourite discipline object UserProfile.favourite_sport_method(**extra_filters) 1.get discipline with most workouts in last year 2.If there is no workouts in last year - get from all workouts Parameters extra_filters extra sport queryset filters Returns favourite discipline object UserProfile.favourite_sport_with_distance Get favourite discipline with displayable distance. 1.get discipline with most workouts in last year 2.If there is no workouts in last year - get from all workouts Returns favourite discipline with displayable distance object UserProfile.get_sex_display(*moreargs, **morekwargs) 8 Chapter 1. Accounts

13 UserProfile.get_sports_in_year(year=None) Returns list of sports from workouts in given calendar year sorted by workouts number. If year is not given use current year. Parameters year int, year Returns sports from given year workouts Return type list UserProfile.last_weight Get last user weight Returns tuple of last weight and date of last weighting or None Return type tuple UserProfile.objects = <django.db.models.manager.manager object> UserProfile.sex_visible Returns user sex for template Return type str UserProfile.user accounts.models.on_user_create(sender, instance, created, **kwargs) Views class accounts.views.baseprofileupdateview(**kwargs) Bases: app.shared.views.loginrequiredmixin, django.views.generic.edit. UpdateView get_object(queryset=none) model alias of UserProfile class accounts.views.profilesettingsview(**kwargs) Bases: accounts.views.baseprofileupdateview form_class alias of UserProfileForm get_success_url() template_name = accounts/profile_settings.html class accounts.views.showuserprofileview(**kwargs) Bases: django.views.generic.detail.detailview get_context_data(**kwargs) model alias of User slug_field = username slug_url_kwarg = username template_name = accounts/user_profile.html 1.5. Views 9

14 accounts.views. _change(request, *args, **kwargs) Show form for change accounts.views. _change_confirm(request, *args, **kwargs) Activate new address accounts.views. _change_confirm_end(request, *args, **kwargs) accounts.views. _change_end(request, *args, **kwargs) Show page after change accounts.views.is_ _used(request) Check, if is already in use by any user Returns code 200, found or not found accounts.views.is_username_used(request) Check, if username is already in database Returns code 200, found or not found accounts.views.login_view(request, *args, **kwargs) login user accounts.views.logout_view(request) Log out user accounts.views.password_change(request, *args, **kwargs) Change password accounts.views.password_reset(request, *args, **kwargs) Password reset accounts.views.password_reset_confirm(request, *args, **kwargs) Confirm password reset accounts.views.registration(request, *args, **kwargs) Create new account accounts.views.registration_activation(request) Activate account and delete used token accounts.views.registration_activation_resend(request, *args, **kwargs) Resend activation accounts.views.registration_end(request, *args, **kwargs) Show after registration page 10 Chapter 1. Accounts

15 CHAPTER 2 Health Forms Models Views 11

16 12 Chapter 2. Health

17 CHAPTER 3 Shared Context Processors shared.context_processors.settings_values(request) Context processor, which sends setting values to templates. Returns dict of settings values Helpers shared.helpers.create_url(scheme=, url=, path=, params=none) Creates URI by adding GET parameters to URL Parameters scheme url scheme, e.g. http url base url, e.g. example.com path patch, e.g. /foo/bar/baz params dict of GET parameters, e.g. { key : val } shared.helpers.get_date_format(date_type) Parameters date_type week, month, year or all-time Returns date format shared.helpers.is_whole(x) shared.helpers.unix_time(datetime_) Parameters datetime datetime object with or without timezone Returns unix time for given datetime Return type int 13

18 Models class shared.models.createdatmixin(*args, **kwargs) Bases: django.db.models.base.model class Meta abstract = False CreatedAtMixin.get_next_by_created_at(*moreargs, **morekwargs) CreatedAtMixin.get_previous_by_created_at(*moreargs, **morekwargs) class shared.models.namemixin(*args, **kwargs) Bases: django.db.models.base.model class Meta abstract = False class shared.models.relateddatemixin(*args, **kwargs) Bases: django.db.models.base.model class Meta abstract = False RelatedDateMixin.get_next_by_related_date(*moreargs, **morekwargs) RelatedDateMixin.get_previous_by_related_date(*moreargs, **morekwargs) class shared.models.sha1tokenmixin(*args, **kwargs) Bases: django.db.models.base.model class Meta abstract = False SHA1TokenMixin.get_activation_link(url_name, token_param_name= token ) Get complete url with token Parameters url_name url name from urls.py token_param_name name of get param for token. Returns complete url with get token_param_name=token Return type str SHA1TokenMixin.save(*args, **kwargs) class shared.models.slugmixin(*args, **kwargs) Bases: django.db.models.base.model class Meta abstract = False SlugMixin.save(*args, **kwargs) 14 Chapter 3. Shared

19 Templatetags Filters shared.templatetags.shared_filters.i_dont_want_none(val) If value is None, returns empty string Parameters val value to check if is not None Returns value if not None, otherwise empty string shared.templatetags.shared_filters.bootstrap(field, addon= ) shared.templatetags.shared_filters.field_type(widget) Filter for getting field type Usage: {{ field.field.widget field_type }} Returns field type Tags shared.templatetags.shared_tags.is_active_tab(request, url, *params) Check, if given tab is active Usage: {% is_active_tab 'url_startswith' %} Parameters url first part of url path with starting / params parameters for url Returns string active if tab is active, else empty string Return type str 3.4. Templatetags 15

20 16 Chapter 3. Shared

21 CHAPTER 4 Indices and tables genindex modindex search 17

22 18 Chapter 4. Indices and tables

23 Python Module Index a accounts.enums, 3 accounts.forms, 3 accounts.helpers, 6 accounts.models, 7 accounts.views, 9 h health.views, 11 s shared.context_processors, 13 shared.helpers, 13 shared.models, 14 shared.templatetags.shared_filters, 15 shared.templatetags.shared_tags, 15 19

24 20 Python Module Index

25 Index A abstract (shared.models.createdatmixin.meta attribute), 14 abstract (shared.models.namemixin.meta attribute), 14 abstract (shared.models.relateddatemixin.meta attribute), 14 abstract (shared.models.sha1tokenmixin.meta attribute), 14 abstract (shared.models.slugmixin.meta attribute), 14 accounts.enums (module), 3 accounts.forms (module), 3 accounts.helpers (module), 6 accounts.models (module), 7 accounts.views (module), 9 activation_link (accounts.models. activation attribute), 7 activation_link (accounts.models.useractivation attribute), 7 age (accounts.models.userprofile attribute), 8 B base_fields (accounts.forms.change form attribute), 3 base_fields (accounts.forms.changepasswordform attribute), 3 base_fields (accounts.forms.checkcurrentpasswordmixin attribute), 4 base_fields (accounts.forms. mixin attribute), 4 base_fields (accounts.forms.loginform attribute), 4 base_fields (accounts.forms.newpasswordform attribute), 4 base_fields (accounts.forms.passwordresetform attribute), 5 base_fields (accounts.forms.registrationform attribute), 5 base_fields (accounts.forms.resendactivationmailform attribute), 5 base_fields (accounts.forms.setnewpasswordformmixin attribute), 6 base_fields (accounts.forms.usernameor mixin attribute), 6 base_fields (accounts.forms.userprofileform attribute), 6 BaseProfileUpdateView (class in accounts.views), 9 bmi (accounts.models.userprofile attribute), 8 bootstrap() (in module shared.templatetags.shared_filters), 15 button_text (accounts.forms.change form.meta attribute), 3 button_text (accounts.forms.changepasswordform.meta attribute), 3 button_text (accounts.forms.loginform.meta attribute), 4 button_text (accounts.forms.newpasswordform.meta attribute), 4 button_text (accounts.forms.passwordresetform.meta attribute), 5 button_text (accounts.forms.registrationform.meta attribute), 5 button_text (accounts.forms.resendactivationmailform.meta attribute), 5 button_text (accounts.forms.userprofileform.meta attribute), 6 C Change Form (class in accounts.forms), 3 Change Form.Meta (class in accounts.forms), 3 ChangePasswordForm (class in accounts.forms), 3 ChangePasswordForm.Meta (class in accounts.forms), 3 CheckCurrentPasswordMixin (class in accounts.forms), 4 clean_current_password() (accounts.forms.checkcurrentpasswordmixin method), 4 clean_dob() (accounts.forms.userprofileform method), 6 clean_ () (accounts.forms. mixin method), 4 clean_height() (accounts.forms.userprofileform method), 6 clean_old_password() (accounts.forms.changepasswordform method), 3 21

26 clean_re_password() (accounts.forms.registrationform method), 5 clean_re_password() (accounts.forms.setnewpasswordformmixin method), 6 clean_username() (accounts.forms.registrationform method), 5 clean_username_or_ () (accounts.forms.resendactivationmailform method), 5 clean_username_or_ () (accounts.forms.usernameor mixin method), 6 create_url() (in module shared.helpers), 13 CreatedAtMixin (class in shared.models), 14 CreatedAtMixin.Meta (class in shared.models), 14 D declared_fields (accounts.forms.change form attribute), 3 declared_fields (accounts.forms.changepasswordform attribute), 4 declared_fields (accounts.forms.checkcurrentpasswordmixin attribute), 4 declared_fields (accounts.forms. mixin attribute), 4 declared_fields (accounts.forms.loginform attribute), 4 declared_fields (accounts.forms.newpasswordform attribute), 4 declared_fields (accounts.forms.passwordresetform attribute), 5 declared_fields (accounts.forms.registrationform attribute), 5 declared_fields (accounts.forms.resendactivationmailform get_activation_link() (shared.models.sha1tokenmixin method), 14 get_context_data() (accounts.views.showuserprofileview method), 9 get_date_format() (in module shared.helpers), 13 get_mail_provider_url() (in module accounts.helpers), 6 get_next_by_created_at() (accounts.models. activation method), 7 get_next_by_created_at() (accounts.models.passwordreset method), 7 get_next_by_created_at() (accounts.models.useractivation method), 8 get_next_by_created_at() (shared.models.relateddatemixin method), 14 get_object() (accounts.views.baseprofileupdateview attribute), 5 method), 9 declared_fields (accounts.forms.setnewpasswordformmixinget_password_reset_link() (accounts.models.passwordreset method), attribute), 6 declared_fields (accounts.forms.usernameor mixin 7 attribute), 6 get_previous_by_created_at() (accounts.models. activation method), declared_fields (accounts.forms.userprofileform attribute), 6 7 get_previous_by_created_at() (accounts.models.passwordreset method), E _change() (in module accounts.views), 9 _change_confirm() (in module accounts.views), 10 7 get_previous_by_created_at() (accounts.models.useractivation _change_confirm_end() (in module accounts.views), method), _change_end() (in module accounts.views), 10 Activation (class in accounts.models), 7 Activation.DoesNotExist, 7 Activation.MultipleObjectsReturned, 7 get_previous_by_created_at() (shared.models.createdatmixin 14 get_previous_by_related_date() method), Mixin (class in accounts.forms), 4 (shared.models.relateddatemixin method), 14 exclude (accounts.forms.userprofileform.meta attribute), get_sex_display() (accounts.models.userprofile method), 6 8 F favourite_sport (accounts.models.userprofile attribute), 8 favourite_sport_method() (accounts.models.userprofile method), 8 favourite_sport_with_distance (accounts.models.userprofile attribute), 8 field_type() (in module shared.templatetags.shared_filters), 15 form_class (accounts.views.profilesettingsview attribute), 9 G (shared.models.createdatmixin 14 get_next_by_related_date() method), 22 Index

27 get_sports_in_year() (accounts.models.userprofile method), 8 get_success_url() (accounts.views.profilesettingsview method), 9 H health.views (module), 11 I I_dont_want_None() (in module shared.templatetags.shared_filters), 15 is_active_tab() (in module shared.templatetags.shared_tags), 15 is_ _used() (in module accounts.views), 10 is_username_used() (in module accounts.views), 10 is_whole() (in module shared.helpers), 13 L last_weight (accounts.models.userprofile attribute), 9 login_view() (in module accounts.views), 10 LoginForm (class in accounts.forms), 4 LoginForm.Meta (class in accounts.forms), 4 logout_view() (in module accounts.views), 10 M media (accounts.forms.change form attribute), 3 media (accounts.forms.changepasswordform attribute), 4 media (accounts.forms.checkcurrentpasswordmixin attribute), 4 media (accounts.forms. mixin attribute), 4 media (accounts.forms.loginform attribute), 4 media (accounts.forms.newpasswordform attribute), 4 media (accounts.forms.passwordresetform attribute), 5 media (accounts.forms.registrationform attribute), 5 media (accounts.forms.resendactivationmailform attribute), 5 media (accounts.forms.setnewpasswordformmixin attribute), 6 media (accounts.forms.usernameor mixin attribute), 6 media (accounts.forms.userprofileform attribute), 6 model (accounts.forms.userprofileform.meta attribute), 6 model (accounts.views.baseprofileupdateview attribute), 9 model (accounts.views.showuserprofileview attribute), 9 N name (accounts.forms.change form.meta attribute), 3 name (accounts.forms.changepasswordform.meta attribute), 3 name (accounts.forms.loginform.meta attribute), 4 name (accounts.forms.newpasswordform.meta attribute), 4 name (accounts.forms.passwordresetform.meta attribute), 5 name (accounts.forms.registrationform.meta attribute), 5 name (accounts.forms.resendactivationmailform.meta attribute), 5 name (accounts.forms.userprofileform.meta attribute), 6 NameMixin (class in shared.models), 14 NameMixin.Meta (class in shared.models), 14 NewPasswordForm (class in accounts.forms), 4 NewPasswordForm.Meta (class in accounts.forms), 4 O objects (accounts.models. activation attribute), 7 objects (accounts.models.passwordreset attribute), 7 objects (accounts.models.useractivation attribute), 8 objects (accounts.models.userprofile attribute), 9 on_user_create() (in module accounts.models), 9 P password_change() (in module accounts.views), 10 password_reset() (in module accounts.views), 10 password_reset_confirm() (in module accounts.views), 10 PasswordReset (class in accounts.models), 7 PasswordReset.DoesNotExist, 7 PasswordReset.MultipleObjectsReturned, 7 PasswordResetForm (class in accounts.forms), 5 PasswordResetForm.Meta (class in accounts.forms), 5 ProfileSettingsView (class in accounts.views), 9 R registration() (in module accounts.views), 10 registration_activation() (in module accounts.views), 10 registration_activation_resend() (in module accounts.views), 10 registration_end() (in module accounts.views), 10 RegistrationForm (class in accounts.forms), 5 RegistrationForm.Meta (class in accounts.forms), 5 RelatedDateMixin (class in shared.models), 14 RelatedDateMixin.Meta (class in shared.models), 14 ResendActivationMailForm (class in accounts.forms), 5 ResendActivationMailForm.Meta (class in accounts.forms), 5 S save() (shared.models.sha1tokenmixin method), 14 save() (shared.models.slugmixin method), 14 SetNewPasswordFormMixin (class in accounts.forms), 5 settings_values() (in module shared.context_processors), 13 Index 23

28 SEX_SELECT (in module accounts.enums), 3 sex_visible (accounts.models.userprofile attribute), 9 SHA1TokenMixin (class in shared.models), 14 SHA1TokenMixin.Meta (class in shared.models), 14 shared.context_processors (module), 13 shared.helpers (module), 13 shared.models (module), 14 shared.templatetags.shared_filters (module), 15 shared.templatetags.shared_tags (module), 15 ShowUserProfileView (class in accounts.views), 9 slug_field (accounts.views.showuserprofileview attribute), 9 slug_url_kwarg (accounts.views.showuserprofileview attribute), 9 SlugMixin (class in shared.models), 14 SlugMixin.Meta (class in shared.models), 14 T template_name (accounts.views.profilesettingsview attribute), 9 template_name (accounts.views.showuserprofileview attribute), 9 U unix_time() (in module shared.helpers), 13 user (accounts.models. activation attribute), 7 user (accounts.models.passwordreset attribute), 7 user (accounts.models.useractivation attribute), 8 user (accounts.models.userprofile attribute), 9 UserActivation (class in accounts.models), 7 UserActivation.DoesNotExist, 7 UserActivation.MultipleObjectsReturned, 7 UsernameOr Mixin (class in accounts.forms), 6 UserProfile (class in accounts.models), 8 UserProfile.DoesNotExist, 8 UserProfile.MultipleObjectsReturned, 8 UserProfileForm (class in accounts.forms), 6 UserProfileForm.Meta (class in accounts.forms), 6 24 Index

Django PAM Documentation

Django PAM Documentation Django PAM Documentation Release 1.4.1 Carl J. Nobile Aug 01, 2018 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Configuration...............................................

More information

django-permission Documentation

django-permission Documentation django-permission Documentation Release 0.8.8 Alisue October 29, 2015 Contents 1 django-permission 1 1.1 Documentation.............................................. 1 1.2 Installation................................................

More information

ska Documentation Release Artur Barseghyan

ska Documentation Release Artur Barseghyan ska Documentation Release 1.6.7 Artur Barseghyan February 09, 2017 Contents 1 Key concepts 3 2 Features 5 2.1 Core ska module.............................................

More information

Django Service Objects Documentation

Django Service Objects Documentation Django Service Objects Documentation Release 0.5.0 mixxorz, c17r Sep 11, 2018 User Documentation 1 What? 1 2 Installation 3 2.1 Philosophy................................................ 3 2.2 Usage...................................................

More information

Django Hordak Documentation

Django Hordak Documentation Django Hordak Documentation Release 1.0 Adam Charnock Aug 31, 2018 Contents: 1 Requirements 3 1.1 Installation................................................ 3 1.2 Settings..................................................

More information

django-password-reset Documentation

django-password-reset Documentation django-password-reset Documentation Release 1.0 Bruno Renié Sep 21, 2017 Contents 1 Quickstart 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

Django Concurrency Documentation

Django Concurrency Documentation Django Concurrency Documentation Release 1.5.a20180306090556 Stefano Apostolico Mar 06, 2018 Contents 1 Overview 1 2 How it works 3 3 Table Of Contents 5 4 Links 25 i ii CHAPTER 1 Overview django-concurrency

More information

EDPC Mentoring Database Documentation

EDPC Mentoring Database Documentation EDPC Mentoring Database Documentation Release 0.1.0 EDPC Jul 20, 2017 Contents 1 Getting started 1 1.1 Before you start............................................. 1 1.2 Running a test instance with

More information

django-slim Documentation

django-slim Documentation django-slim Documentation Release 0.5 Artur Barseghyan December 24, 2013 Contents i ii django-slim Contents 1 2 Contents CHAPTER 1 Description Simple implementation of multi-lingual

More information

PyZabbixObj Documentation

PyZabbixObj Documentation PyZabbixObj Documentation Release 0.1 Fabio Toscano Aug 26, 2017 Contents Python Module Index 3 i ii PyZabbixObj Documentation, Release 0.1 PyZabbixObj is a Python module for working with Zabbix API,

More information

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 1.1.2-stable Juda Kaleta Nov 10, 2017 Contents 1 Installation & Setup 3 1.1 Installation................................................ 3 1.2 Setup...................................................

More information

django-newsletter Documentation

django-newsletter Documentation django-newsletter Documentation Release 0.5.1 Mathijs de Bruin Nov 16, 2017 Contents 1 Installation 3 2 Usage 7 3 Templates 9 3.1 Web view templates......................................... 9 3.2 Email

More information

Django Extra Views Documentation

Django Extra Views Documentation Django Extra Views Documentation Release 0.12.0 Andrew Ingram Nov 30, 2018 Contents 1 Features 3 2 Table of Contents 5 2.1 Getting Started.............................................. 5 2.2 Formset Views..............................................

More information

Promgen Documentation

Promgen Documentation Promgen Documentation Release 0.26.dev Paul Traylor Apr 05, 2018 Contents 1 Overview 3 1.1 Installing Promgen............................................ 3 1.2 Using Promgen..............................................

More information

lol_stats Documentation

lol_stats Documentation lol_stats Documentation Release 0.1 Edward Chen August 21, 2014 Contents 1 Background 3 2 Contents 5 2.1 lol_stats package............................................. 5 2.2 api package................................................

More information

Kiki Documentation. Release 0.7a1. Stephen Burrows

Kiki Documentation. Release 0.7a1. Stephen Burrows Kiki Documentation Release 0.7a1 Stephen Burrows August 14, 2013 CONTENTS i ii Kiki Documentation, Release 0.7a1 Kiki is envisioned as a Django-based mailing list manager which can replace Mailman. CONTENTS

More information

iqoptionapi Release Jan 13, 2018

iqoptionapi Release Jan 13, 2018 iqoptionapi Release Jan 13, 2018 Contents 1 iqoptionapi 3 1.1 iqoptionapi package........................................... 3 1.1.1 Subpackages.......................................... 3 1.1.1.1 iqoptionapi.http

More information

Marshmallow-Mongoengine Documentation

Marshmallow-Mongoengine Documentation Marshmallow-Mongoengine Documentation Release 0.7.7 Emmanuel Leblond January 30, 2017 Contents 1 Contents 3 1.1 Tutorial.................................................. 3 1.2 API Reference..............................................

More information

json2xls Documentation

json2xls Documentation json2xls Documentation Release 0.1.3c axiaoxin Aug 10, 2017 Contents 1 3 2 5 3 API 9 i ii json2xls Documentation, Release 0.1.3c jsonexceljsonexceljson jsonjsonurljsonjson Contents 1 json2xls Documentation,

More information

canary Documentation Release 0.1 Branton K. Davis

canary Documentation Release 0.1 Branton K. Davis canary Documentation Release 0.1 Branton K. Davis August 18, 2012 CONTENTS 1 Installation 3 1.1 Installing Canary Reports........................................ 3 1.2 Running the Demo Project........................................

More information

django-boardinghouse Documentation

django-boardinghouse Documentation django-boardinghouse Documentation Release 0.5.0.dev Matthew Schinckel Jun 26, 2018 Contents 1 Philosophy 3 1.1 Multi-tenancy or multi-instance?.................................... 3 1.2 Data storage

More information

Easy-select2 Documentation

Easy-select2 Documentation Easy-select2 Documentation Release 1.2.2 Lobanov Stanislav aka asyncee September 15, 2014 Contents 1 Installation 3 2 Quickstart 5 3 Configuration 7 4 Usage 9 5 Reference 11 5.1 Widgets..................................................

More information

eoddata-client Documentation

eoddata-client Documentation eoddata-client Documentation Release 0.3.3 Aleksey Sep 27, 2017 Table of Contents: 1 Usage 1 2 Client API 3 2.1 Http client................................................ 3 2.2 Errors...................................................

More information

Bricks Documentation. Release 1.0. Germano Guerrini

Bricks Documentation. Release 1.0. Germano Guerrini Bricks Documentation Release 1.0 Germano Guerrini January 27, 2015 Contents 1 Requirements 3 2 Contents 5 2.1 Getting Started.............................................. 5 2.2 Basic Usage...............................................

More information

django-organizations Documentation

django-organizations Documentation django-organizations Documentation Release 1.1.1 Ben Lopatin Aug 29, 2018 Contents 1 Getting started 3 1.1 Installation................................................ 3 1.2 Configuration...............................................

More information

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 0.7.stable Juda Kaleta December 21, 2013 Contents i ii Django app for easy embeding YouTube and Vimeo videos and music from SoundCloud. Repository is located on

More information

django-modern-rpc Documentation

django-modern-rpc Documentation django-modern-rpc Documentation Release 0.10.0 Antoine Lorence Dec 11, 2017 Table of Contents 1 What is RPC 1 2 What is django-modern-rpc 3 3 Requirements 5 4 Main features 7 5 Quick-start 9 5.1 Quick-start

More information

Django-Select2 Documentation. Nirupam Biswas

Django-Select2 Documentation. Nirupam Biswas Nirupam Biswas Mar 07, 2018 Contents 1 Get Started 3 1.1 Overview................................................. 3 1.2 Installation................................................ 3 1.3 External Dependencies..........................................

More information

django-oauth2-provider Documentation

django-oauth2-provider Documentation django-oauth2-provider Documentation Release 0.2.7-dev Alen Mujezinovic Aug 16, 2017 Contents 1 Getting started 3 1.1 Getting started.............................................. 3 2 API 5 2.1 provider.................................................

More information

f5-icontrol-rest Documentation

f5-icontrol-rest Documentation f5-icontrol-rest Documentation Release 1.3.10 F5 Networks Aug 04, 2018 Contents 1 Overview 1 2 Installation 3 2.1 Using Pip................................................. 3 2.2 GitHub..................................................

More information

django-osm-field Release 0.3.1

django-osm-field Release 0.3.1 django-osm-field Release 0.3.1 Oct 04, 2017 Contents 1 Installation 3 2 Usage 5 3 History 9 4 References 11 5 Indices and tables 15 Python Module Index 17 i ii Contents: Contents 1 2 Contents CHAPTER

More information

django-model-report Documentation

django-model-report Documentation django-model-report Documentation Release 0.2.1 juanpex Nov 06, 2017 Contents 1 Demo 3 1.1 User Guide................................................ 3 1.2 Modules.................................................

More information

pyshk Documentation Release Jeremy Low

pyshk Documentation Release Jeremy Low pyshk Documentation Release 1.1.0 Jeremy Low December 20, 2015 Contents 1 Warnings 3 2 Installation 5 3 Authentication Tutorial 7 3.1 Introduction............................................... 7 3.2

More information

alphafilter Documentation

alphafilter Documentation alphafilter Documentation Release 0.6 coordt September 09, 2013 CONTENTS i ii alphafilter Documentation, Release 0.6 Contents: CONTENTS 1 alphafilter Documentation, Release 0.6 2 CONTENTS CHAPTER ONE

More information

MyClinic. Password Reset Guide

MyClinic. Password Reset Guide MyClinic Password Reset Guide Content Retrieving your username Retrieving your password using security question Retrieving your password without remembering login credentials Retrieving your password using

More information

PyOTP Documentation. Release PyOTP contributors

PyOTP Documentation. Release PyOTP contributors PyOTP Documentation Release 0.0.1 PyOTP contributors Jun 10, 2017 Contents 1 Quick overview of using One Time Passwords on your phone 3 2 Installation 5 3 Usage 7 3.1 Time-based OTPs............................................

More information

django-openid Documentation

django-openid Documentation django-openid Documentation Release 2.0a Simon Willison September 27, 2017 Contents 1 Installation 3 2 Accepting OpenID 5 2.1 Redirecting somewhere else....................................... 6 2.2 Requesting

More information

A quick user guide to Trace & Tracking

A quick user guide to Trace & Tracking A quick user guide to Trace & Tracking rev. 1.1 A quick user guide to Trace & Tracking To start working with Trace & Tracking, type the URL into your favorite web browser and login with your username and

More information

Django Data Importer Documentation

Django Data Importer Documentation Django Data Importer Documentation Release 2.2.1 Valder Gallo May 15, 2015 Contents 1 Django Data Importer 3 1.1 Documentation and usage........................................ 3 1.2 Installation................................................

More information

Home Assistant Documentation

Home Assistant Documentation Home Assistant Documentation Release 0.73.0.dev0 Home Assistant Team Jul 14, 2018 Contents 1 homeassistant.bootstrap 3 2 homeassistant.core 5 3 Module contents 7 4 homeassistant.components.device_tracker

More information

django-ratelimit-backend Documentation

django-ratelimit-backend Documentation django-ratelimit-backend Documentation Release 1.2 Bruno Renié Sep 13, 2017 Contents 1 Usage 3 1.1 Installation................................................ 3 1.2 Quickstart................................................

More information

django-conduit Documentation

django-conduit Documentation django-conduit Documentation Release 0.0.1 Alec Koumjian Apr 24, 2017 Contents 1 Why Use Django-Conduit? 3 2 Table of Contents 5 2.1 Filtering and Ordering.......................................... 5

More information

MyGeotab Python SDK Documentation

MyGeotab Python SDK Documentation MyGeotab Python SDK Documentation Release 0.8.0 Aaron Toth Dec 13, 2018 Contents 1 Features 3 2 Usage 5 3 Installation 7 4 Documentation 9 5 Changes 11 5.1 0.8.0 (2018-06-18)............................................

More information

Django-frontend-notification Documentation

Django-frontend-notification Documentation Django-frontend-notification Documentation Release 0.2.0 Arezqui Belaid February 25, 2016 Contents 1 Introduction 3 1.1 Overview................................................. 3 1.2 Documentation..............................................

More information

django-subdomains Documentation

django-subdomains Documentation django-subdomains Documentation Release 2.1.0 ted kaemming April 29, 2016 Contents 1 Installation 3 2 Quick Start 5 2.1 Example Configuration.......................................... 5 3 Basic Usage

More information

bzz Documentation Release Rafael Floriano and Bernardo Heynemann

bzz Documentation Release Rafael Floriano and Bernardo Heynemann bzz Documentation Release 0.1.0 Rafael Floriano and Bernardo Heynemann Nov 15, 2017 Contents 1 Getting Started 3 2 Flattening routes 5 3 Indices and tables 7 3.1 Model Hive................................................

More information

prompt Documentation Release Stefan Fischer

prompt Documentation Release Stefan Fischer prompt Documentation Release 0.4.1 Stefan Fischer Nov 14, 2017 Contents: 1 Examples 1 2 API 3 3 Indices and tables 7 Python Module Index 9 i ii CHAPTER 1 Examples 1. Ask for a floating point number: >>>

More information

Kaiso Documentation. Release 0.1-dev. onefinestay

Kaiso Documentation. Release 0.1-dev. onefinestay Kaiso Documentation Release 0.1-dev onefinestay Sep 27, 2017 Contents 1 Neo4j visualization style 3 2 Contents 5 2.1 API Reference.............................................. 5 3 Indices and tables

More information

OstrichLib Documentation

OstrichLib Documentation OstrichLib Documentation Release 0.0.0 Itamar Ostricher May 10, 2016 Contents 1 utils package 3 1.1 collections utils module......................................... 3 1.2 path utils module.............................................

More information

tolerance Documentation

tolerance Documentation tolerance Documentation Release Alisue Apr 1, 217 Contents 1 tolerance 1 1.1 Features.................................................. 1 1.2 Installation................................................

More information

plexdevices Documentation

plexdevices Documentation plexdevices Documentation Release 0.4.1 Cory Parsons May 02, 2016 Contents 1 API Documentation 3 1.1 Main Interface.............................................. 3 1.2 Sessions.................................................

More information

spaste Documentation Release 1.0 Ben Webster

spaste Documentation Release 1.0 Ben Webster spaste Documentation Release 1.0 Ben Webster May 28, 2015 Contents 1 Application Overview 3 1.1 Snippets................................................. 3 1.2 Contact Form...............................................

More information

fragapy Documentation

fragapy Documentation fragapy Documentation Release 1.0 2011, Fragaria, s.r.o November 09, 2011 CONTENTS 1 Adminhelp 3 2 Amazon 5 2.1 AWS branded scripts........................................... 5 2.2 SES SMTP relay.............................................

More information

maya-cmds-help Documentation

maya-cmds-help Documentation maya-cmds-help Documentation Release Andres Weber May 28, 2017 Contents 1 1.1 Synopsis 3 1.1 1.1.1 Features.............................................. 3 2 1.2 Installation 5 2.1 1.2.1 Windows, etc............................................

More information

django-auditlog Documentation

django-auditlog Documentation django-auditlog Documentation Release 0.4.3 Jan-Jelle Kester Jul 05, 2017 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

NodeConductor SugarCRM Documentation

NodeConductor SugarCRM Documentation NodeConductor SugarCRM Documentation Release 0.5.0 OpenNode December 05, 2016 Contents 1 Guide 3 2 API 5 3 Endpoints 11 4 License 17 5 Indices and tables 19 i ii SugarCRM service provides an interface

More information

Archer Documentation. Release 0.1. Praekelt Dev

Archer Documentation. Release 0.1. Praekelt Dev Archer Documentation Release 0.1 Praekelt Dev February 12, 2014 Contents 1 User Service 3 1.1 Installation................................................ 3 1.2 API....................................................

More information

Django Localized Recurrence Documentation

Django Localized Recurrence Documentation Django Localized Recurrence Documentation Release 3.2.0 Erik Swanson Jan 03, 2019 Contents 1 Table of Contents 3 1.1 Installation................................................ 3 1.2 Quickstart and Basic

More information

freeze Documentation Release 0.7.0alpha Jean-Louis Fuchs

freeze Documentation Release 0.7.0alpha Jean-Louis Fuchs freeze Documentation Release 0.7.0alpha Jean-Louis Fuchs April 10, 2014 Contents i ii freeze.freeze(data_structure) Freeze tries to convert any data-structure in a hierarchy of tuples. freeze.object_to_items(data_structure)

More information

MyAnimeList Scraper. Release 0.3.0

MyAnimeList Scraper. Release 0.3.0 MyAnimeList Scraper Release 0.3.0 Mar 14, 2018 Contents 1 Overview 1 1.1 Installation & Usage........................................... 1 1.2 Development...............................................

More information

picrawler Documentation

picrawler Documentation picrawler Documentation Release 0.1.1 Ikuya Yamada October 07, 2013 CONTENTS 1 Installation 3 2 Getting Started 5 2.1 PiCloud Setup.............................................. 5 2.2 Basic Usage...............................................

More information

django-parler Documentation

django-parler Documentation django-parler Documentation Release 1.9.1 Diederik van der Boor and contributors Dec 06, 2017 Contents 1 Getting started 3 1.1 Quick start guide............................................. 3 1.2 Configuration

More information

django-revproxy Documentation

django-revproxy Documentation django-revproxy Documentation Release 0.9.14 Sergio Oliveira Jun 30, 2017 Contents 1 Features 3 2 Dependencies 5 3 Install 7 4 Contents: 9 4.1 Introduction...............................................

More information

SpaceEZ Documentation

SpaceEZ Documentation SpaceEZ Documentation Release v1.0.0 Juniper Networks Inc. July 13, 2015 Contents 1 Class Index 1 2 Module Index 3 3 Rest 5 4 Resource 9 5 Collection 13 6 Method 17 7 Service 19 8 Application 21 9 Async

More information

Django Groups Manager Documentation

Django Groups Manager Documentation Django Groups Manager Documentation Release 0.3.0 Vittorio Zamboni May 03, 2017 Contents 1 Documentation 3 1.1 Installation................................................ 3 1.2 Basic usage................................................

More information

Topic 7: Algebraic Data Types

Topic 7: Algebraic Data Types Topic 7: Algebraic Data Types 1 Recommended Exercises and Readings From Haskell: The craft of functional programming (3 rd Ed.) Exercises: 5.5, 5.7, 5.8, 5.10, 5.11, 5.12, 5.14 14.4, 14.5, 14.6 14.9, 14.11,

More information

Django-CSP Documentation

Django-CSP Documentation Django-CSP Documentation Release 3.0 James Socol, Mozilla September 06, 2016 Contents 1 Installing django-csp 3 2 Configuring django-csp 5 2.1 Policy Settings..............................................

More information

ProxySQL Tools Documentation

ProxySQL Tools Documentation ProxySQL Tools Documentation Release 0.3.12 TwinDB Development Team Dec 29, 2017 Contents 1 ProxySQL Tools 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

yarl Documentation Release Andrew Svetlov

yarl Documentation Release Andrew Svetlov yarl Documentation Release 1.2.0- Andrew Svetlov Apr 30, 2018 Contents 1 Introduction 3 2 Installation 5 3 Dependencies 7 4 API documentation 9 5 Comparison with other URL libraries 11 6 Source code 13

More information

tapi Documentation Release 0.1 Jimmy John

tapi Documentation Release 0.1 Jimmy John tapi Documentation Release 0.1 Jimmy John July 02, 2014 Contents 1 Why use TAPI? 3 2 Features 5 3 Dependencies 7 4 Installation 9 5 Quick Start 11 6 User Guide 13 6.1 Fundamentals...............................................

More information

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 0.6.stable Juda Kaleta October 04, 2013 CONTENTS i ii Django app for easy embeding YouTube and Vimeo videos and music from SoundCloud. Repository is located on

More information

ZeroVM Package Manager Documentation

ZeroVM Package Manager Documentation ZeroVM Package Manager Documentation Release 0.2.1 ZeroVM Team October 14, 2014 Contents 1 Introduction 3 1.1 Creating a ZeroVM Application..................................... 3 2 ZeroCloud Authentication

More information

JSONRPC Documentation

JSONRPC Documentation JSONRPC Documentation Release 1.0 Edward Langley March 29, 2016 Contents 1 Getting Started 3 2 JSON-RPC Server 5 3 JSON-RPC Proxy 7 4 jsonrpc.jsonutil 9 5 Indices and tables 11 Python Module Index 13

More information

Django Synctool Documentation

Django Synctool Documentation Django Synctool Documentation Release 1.0.0 Preston Timmons November 01, 2014 Contents 1 Basic usage 3 1.1 How it works............................................... 4 2 Installation 5 3 Contents 7 3.1

More information

The Django Web Framework Part VI

The Django Web Framework Part VI The Django Web Framework Part VI Web Programming Course Fall 2013 Outline Session Framework User Authentication & Authorization in Django 2 Session Framework Session Framework lets you store and retrieve

More information

pybtsync Documentation

pybtsync Documentation pybtsync Documentation Release 0.0.1 Tiago Macarios December 04, 2014 Contents 1 Tutorial and Walkthrough 3 1.1 Getting Started.............................................. 3 2 pybtsync module classes

More information

django-crucrudile Documentation

django-crucrudile Documentation django-crucrudile Documentation Release 0.9.1 Hugo Geoffroy (pstch) July 27, 2014 Contents 1 Installation 1 1.1 From Python package index....................................... 1 1.2 From source...............................................

More information

FriendlyShell Documentation

FriendlyShell Documentation FriendlyShell Documentation Release 0.0.0.dev0 Kevin S. Phillips Nov 15, 2018 Contents: 1 friendlyshell 3 1.1 friendlyshell package........................................... 3 2 Overview 9 3 Indices

More information

DynamiX Documentation

DynamiX Documentation DynamiX Documentation Release 0.1 Pascal Held May 13, 2015 Contents 1 Introduction 3 1.1 Resources................................................. 3 1.2 Requirements...............................................

More information

Django Sample Data Helper Documentation

Django Sample Data Helper Documentation Django Sample Data Helper Documentation Release 0.2.0 Jesús Espino García August 07, 2016 Contents 1 Install and configure 1 2 Quick start 3 2.1 Using SampleDataFiller.........................................

More information

gmusicapi-wrapper Documentation

gmusicapi-wrapper Documentation gmusicapi-wrapper Documentation Release 0.3.0 thebigmunch Nov 02, 2017 Contents 1 Mobile Client 3 2 Music Manager 7 3 Utils 11 Python Module Index 15 i ii A wrapper interface for gmusicapi providing extra

More information

Django IPRestrict Documentation

Django IPRestrict Documentation Django IPRestrict Documentation Release 1.4.1 Tamas Szabo Nov 06, 2017 Contents 1 Table of Contents 3 1.1 Requirements and Installation...................................... 3 1.2 Configuration...............................................

More information

django-session-security Documentation

django-session-security Documentation django-session-security Documentation Release 2.5.1 James Pic Oct 27, 2017 Contents 1 Why not just set the session to expire after X minutes? 3 2 How does it work? 5 3 Requirements 7 4 Resources 9 4.1

More information

Bambu API Documentation

Bambu API Documentation Bambu API Documentation Release 2.0.1 Steadman Sep 27, 2017 Contents 1 About Bambu API 3 2 About Bambu Tools 2.0 5 3 Installation 7 4 Basic usage 9 5 Questions or suggestions? 11 6 Contents 13 6.1 Defining

More information

ACT! Calendar to Excel

ACT! Calendar to Excel Another efficient and affordable ACT! Add-On by ACT! Calendar to Excel v.6.0 for ACT! 2008 and up http://www.exponenciel.com ACT! Calendar to Excel 2 Table of content Purpose of the add-on... 3 Installation

More information

Affinity Provider Portal Training Manual

Affinity Provider Portal Training Manual Training Manual Login This page enables a user to either login and/or register if he/she is not already a regstered user (ie. Providers and Staff users). The following are the functionalities which can

More information

django-messages Documentation

django-messages Documentation django-messages Documentation Release 0.5.0 Arne Brodowski Nov 18, 2017 Contents 1 Contents 3 1.1 Installing django-messages........................................ 3 1.2 Using django-messages.........................................

More information

yagmail Documentation

yagmail Documentation yagmail Documentation Release 0.10.189 kootenpv Feb 08, 2018 Contents 1 API Reference 3 1.1 Authentication.............................................. 3 1.2 SMTP Client...............................................

More information

Ninja Typers Web Application Design Document By Marvin Farrell C

Ninja Typers Web Application Design Document By Marvin Farrell C Ninja Typers Web Application Design Document By Marvin Farrell C00141725 Table of Contents 1. Introduction... 2 2. Django Files... 2 2.2. Project Files... 2 2.3. Application Files... 3 3. Use Cases...

More information

Torndb Release 0.3 Aug 30, 2017

Torndb Release 0.3 Aug 30, 2017 Torndb Release 0.3 Aug 30, 2017 Contents 1 Release history 3 1.1 Version 0.3, Jul 25 2014......................................... 3 1.2 Version 0.2, Dec 22 2013........................................

More information

izzati Documentation Release Gustav Hansen

izzati Documentation Release Gustav Hansen izzati Documentation Release 1.0.0 Gustav Hansen Sep 03, 2017 Contents: 1 Why? 3 1.1 Features.................................................. 3 2 Quickstart - Backend 5 2.1 Installation................................................

More information

TastyTopping Documentation

TastyTopping Documentation TastyTopping Documentation Release 1.2.5 Christian Boelsen August 10, 2015 Contents 1 Contents 3 1.1 Getting Started.............................................. 3 1.2 Authentication..............................................

More information

CGI Architecture Diagram. Web browser takes response from web server and displays either the received file or error message.

CGI Architecture Diagram. Web browser takes response from web server and displays either the received file or error message. What is CGI? The Common Gateway Interface (CGI) is a set of standards that define how information is exchanged between the web server and a custom script. is a standard for external gateway programs to

More information

python-aspectlib Release 0.4.1

python-aspectlib Release 0.4.1 python-aspectlib 0.4.1 Release 0.4.1 May 03, 2014 Contents i ii aspectlib is an aspect-oriented programming, monkey-patch and decorators library. It is useful when changing behavior in existing code is

More information

CALUMMA Management Tool User Manual

CALUMMA Management Tool User Manual CALUMMA Management Tool User Manual CALUMMA Management Tool Your Data Management SIMPLIFIED. by RISC Software GmbH The CALUMMA system is a highly adaptable data acquisition and management system, for complex

More information

deluge Documentation Release 2.0b2.dev43 Deluge Team

deluge Documentation Release 2.0b2.dev43 Deluge Team deluge Documentation Release 2.0b2.dev43 Deluge Team December 17, 2017 Contents 1 The Deluge Core 3 1.1 Deluge RPC............................................... 3 2 Deluge s Interfaces 11 2.1 Deluge

More information

Check to enable generation of refresh tokens when refreshing access tokens

Check to enable generation of refresh tokens when refreshing access tokens VERSION User: amadmin Server: sp.example.com LOG OUT OAuth2 Provider Save Reset Back to Services Realm Attributes Indicates required field Authorization Code Lifetime Refresh (seconds) If this field is

More information

sanction Documentation

sanction Documentation sanction Documentation Release 0.4 Demian Brecht May 14, 2014 Contents 1 Overview 3 2 Quickstart 5 2.1 Instantiation............................................... 5 2.2 Authorization Request..........................................

More information

Marathon Documentation

Marathon Documentation Marathon Documentation Release 3.0.0 Top Free Games Feb 07, 2018 Contents 1 Overview 3 1.1 Features.................................................. 3 1.2 Architecture...............................................

More information

colab Documentation Release 2.0dev Sergio Oliveira

colab Documentation Release 2.0dev Sergio Oliveira colab Documentation Release 2.0dev Sergio Oliveira Sep 27, 2017 Contents 1 User Documentation 3 1.1 Getting Started.............................................. 3 1.2 Widgets..................................................

More information