Best Python code snippet using selenium-respectful_python
models.py
Source: models.py
1# type: ignore2from app.schoology.api import datetime_to_schoology3from typing import Dict4from app.exts import db5import isodate6from datetime import datetime7update_realm = db.Table('update_realm', db.Model.metadata,8 db.Column('update_id', db.ForeignKey(9 'update.id'), primary_key=True),10 db.Column('realm_id', db.ForeignKey(11 'realm.id'), primary_key=True)12 )13class Update(db.Model):14 __tablename__ = 'update'15 id = db.Column(db.Integer, primary_key=True, autoincrement=True)16 body = db.Column(db.Text, nullable=False)17 user_id = db.Column(db.String(30), db.ForeignKey(18 'user.id', name='fk_user_id'), nullable=False)19 realms = db.relationship(20 'Realm',21 secondary=update_realm22 )23 job = db.relationship(24 'ScheduledJob',25 uselist=False,26 backref=db.backref('update', single_parent=True),27 cascade='all, delete-orphan'28 )29 attachments = db.relationship(30 'Attachment',31 backref=db.backref('update'),32 cascade='all, delete-orphan'33 )34 def to_json(self):35 return {36 'id': self.id,37 'body': self.body,38 'attachments': [attachment.to_json() for attachment in self.attachments],39 'realms': [realm.to_json() for realm in self.realms],40 'job': self.job.to_json() if self.job else None41 }42class ScheduledJob(db.Model):43 __tablename__ = 'scheduled_job'44 id = db.Column(db.String(36), primary_key=True)45 # Both in UTC46 scheduled_at: datetime = db.Column(db.DateTime, nullable=False)47 scheduled_in = db.Column(db.Interval)48 scheduled_for = db.Column(db.DateTime)49 update_id = db.Column(db.Integer, db.ForeignKey(50 'update.id', name='fk_update_id'), nullable=False)51 def to_json(self):52 return {53 'id': self.id,54 'scheduled_at': datetime_to_schoology(self.scheduled_at),55 'scheduled_in': isodate.duration_isoformat(self.scheduled_in) if self.scheduled_in else None,56 'scheduled_for': datetime_to_schoology(self.scheduled_for) if self.scheduled_for else None57 }58class Attachment(db.Model):59 __tablename__ = 'attachment'60 id = db.Column(db.Integer, primary_key=True, autoincrement=True)61 type = db.Column(db.String(5), nullable=False)62 title = db.Column(db.String(200))63 url = db.Column(db.String(300), nullable=False)64 summary = db.Column(db.Text)65 image = db.Column(db.Text)66 icon = db.Column(db.Text)67 update_id = db.Column(db.Integer, db.ForeignKey(68 'update.id', name='fk_attachment_update_id'), nullable=False)69 def to_json(self):70 return {71 'id': self.id,72 'type': self.type,73 'title': self.title,74 'image': self.image,75 'icon': self.icon,76 'url': self.url,77 'summary': self.summary78 }79 def to_schoology_json(self):80 return {81 'type': self.type,82 'title': self.title,83 'url': self.url,84 'summary': self.summary,85 'thumbnail': self.image or self.icon86 }87class Realm(db.Model):88 __tablename__ = 'realm'89 id = db.Column(db.String(36), primary_key=True)90 type = db.Column(db.String(20))91 name = db.Column(db.String(150))92 def to_json(self):93 return {94 'id': self.id,95 'type': self.type,96 'name': self.name...
urls.py
Source: urls.py
1from django.urls import path, re_path2from . import views3urlpatterns = [4 path('', views.index, name='index'),5 path('logout', views.logout_view, name='logout'),6 re_path(r'^server/(?P<guild_id>[0-9]+)$', views.server, name='server'),7 re_path(r'^server/(?P<guild_id>[0-9]+)/prefix$', views.server_prefix_post, name='server_prefix'),8 re_path(r'^server/(?P<guild_id>[0-9]+)/prefix/(?P<prefix>.*)$', views.server_remove_prefix, name='server_remove_prefix'),9 re_path(r'^server/(?P<guild_id>[0-9]+)/command/(?P<command_name>.*)$', views.server_remove_custom_command, name='server_remove_custom_command'),10 re_path(r'^server/(?P<guild_id>[0-9]+)/guild$', views.server_add_guild_server, name='server_add_guild_server'),11 re_path(r'^server/(?P<guild_id>[0-9]+)/guild/(?P<guild_server_id>[0-9]+)$', views.server_make_default_guild_server, name='server_default_guild_server'),12 re_path(r'^server/(?P<guild_id>[0-9]+)/guild/(?P<guild_server_id>[0-9]+)/delete$', views.server_remove_guild_server, name='server_remove_guild_server'),13 re_path(r'^server/(?P<guild_id>[0-9]+)/rank$', views.server_add_rank, name='server_add_rank'),14 re_path(r'^server/(?P<guild_id>[0-9]+)/rank/(?P<rank_id>.*)$', views.server_remove_rank, name='server_remove_rank'),15 path('update_realm/<str:region>', views.update_realm, name="update_realm"),16 path('myself', views.myself, name='myself'),17 path('myself/character/<int:character_id>', views.myself_update, name='update_character')...
3e1e3b0b2643_increase_realm_id_length.py
1"""Increase realm id length2Revision ID: 3e1e3b0b26433Revises: 7cd00819c52b4Create Date: 2021-11-25 22:40:22.3782515"""6from alembic import op7import sqlalchemy as sa8# revision identifiers, used by Alembic.9revision = '3e1e3b0b2643'10down_revision = '7cd00819c52b'11branch_labels = None12depends_on = None13def upgrade():14 # ### commands auto generated by Alembic - please adjust! ###15 with op.batch_alter_table('realm', schema=None) as batch_op:16 batch_op.alter_column('id',17 existing_type=sa.VARCHAR(length=30),18 type_=sa.String(length=36))19 with op.batch_alter_table('update_realm', schema=None) as batch_op:20 batch_op.alter_column('realm_id',21 existing_type=sa.VARCHAR(length=30),22 type_=sa.String(length=36))23 # ### end Alembic commands ###24def downgrade():25 # ### commands auto generated by Alembic - please adjust! ###26 with op.batch_alter_table('update_realm', schema=None) as batch_op:27 batch_op.alter_column('realm_id',28 existing_type=sa.String(length=36),29 type_=sa.VARCHAR(length=30))30 with op.batch_alter_table('realm', schema=None) as batch_op:31 batch_op.alter_column('id',32 existing_type=sa.String(length=36),33 type_=sa.VARCHAR(length=30))...
Check out the latest blogs from LambdaTest on this topic:
When it comes to UI components, there are two versatile methods that we can use to build it for your website: either we can use prebuilt components from a well-known library or framework, or we can develop our UI components from scratch.
The best agile teams are built from people who work together as one unit, where each team member has both the technical and the personal skills to allow the team to become self-organized, cross-functional, and self-motivated. These are all big words that I hear in almost every agile project. Still, the criteria to make a fantastic agile team are practically impossible to achieve without one major factor: motivation towards a common goal.
Ever since the Internet was invented, web developers have searched for the most efficient ways to display content on web browsers.
Hey LambdaTesters! We’ve got something special for you this week. ????
How do we acquire knowledge? This is one of the seemingly basic but critical questions you and your team members must ask and consider. We are experts; therefore, we understand why we study and what we should learn. However, many of us do not give enough thought to how we learn.
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!