本文整理汇总了Python中pages.Page.css方法的典型用法代码示例。如果您正苦于以下问题:Python Page.css方法的具体用法?Python Page.css怎么用?Python Page.css使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pages.Page
的用法示例。
在下文中一共展示了Page.css方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
p = Page()
p.title = 'My Page!'
p.css = 'css/main.css'
p.body = "Miss Piggy is aweful!"
p.update()
self.response.write(p.whole_page)
示例2: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
p = Page()
p.title = "My page!" #Setter was created so we could change
p.css = "css/style.css"
p.body = "Miss Piggy likes Kermit de Frog!"
p.update()
self.response.write(p.whole_page)
示例3: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
p = Page()
p.title = "My page!"
p.css = "css/style.css"
p.body = "Miss Piggy likes Kermit De Frog!" #modify body element
self.response.write(p.whole_page)
示例4: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
p = Page()
p.title = "My Page"
p.css = "/css/style.css"
p.body = "Changer"
p.update()
self.response.write(p.whole_page)
示例5: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
p = Page()
p.title ="My page"
p.css ="css/styles.css"
p.body = "Miss Piggy like Kermit De Frog"
self.response.write(p.whole_page)
示例6: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
p = Page()
p.title = "My Page"
p.css = "css/style.css"
p.body = "this is the body"
self.response.write(p.whole_page)
示例7: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
#self.response.write('Hello world!')
p = Page()
p.title = "My Page"
p.css = "css/style.css"
p.body = "This is Stacy's Python Example"
#self.response.write(p.print_out())
p.update()
self.response.write(p.whole_page)
示例8: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
p = Page()
p.title = "My page!"
p.css = "css/style.css"
p.body = "Miss Piggy likes Kermit de Frog" #this will replace the body text below in self.body
#print p.print_out()#this will print out in the google engine console
#self.response.write(p.print_out())# this will print out in browser (removed for getter/setter example)
# p.update() #replacing the above #self.response......
#let's remove p.update() from here and add to main.py to have it auto update whenever data changes; it won't be p.update it will be self.update over there
self.response.write(p.whole_page)
示例9: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
p = Page() #I want to make an instance of page
p.li = [['home'],['boy'],['girl'],['nature'],['animals']]
p.css = "css/styles.css"
#d = Data()
#d.home = self.request.GET['home']
#d.boy = self.request.GET['boy']
#d.girl = self.request.GET['girl']
#d.nature = self.request.GET['nature']
#d.animals = self.request.GET['animals']
self.response.write(p.print_out())
示例10: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
p = Page()
p.title = "My page!"
p.css = "css/style.css"
p.body = "Hello World"
self.response.write(p.whole_page)
示例11: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
h = hello()
p = Page()
p.title = "My New Page"
p.css = "css/styles.css"
p.update() #referencing my update class from pages
h.update_this()
# I will create an application that calculates the remaining storage for different users
#now I will hard code the values for each data object
m = Storage()
m.pictures = 5
m.videos = 10
m.documents = 1
m.music = 3
m.apps = 4
#write the values to the page
if self.request.GET:
total = self.request.GET['totalStorage']
self.response.write(h.user_page_update + "Total storage used is " + total + " GB <br/> There is " + str(m.final_storage) + " GB of storage remaining")
else:
self.response.write(p.user_page) #writing the user_page which has has all the html for my application
#now I am going create the remaining users
#now I will hard code the values for each data object
t = Storage()
t.pictures = 10
t.videos = 10
t.documents = 1
t.music = 20
t.apps = 7
#write the values to the page
# self.response.write(" <br/> Todd has " + str(t.final_storage) + " GB of storage remaining") #writing the user_page which has has all the html for my application
#now I will hard code the values for each data object
n = Storage()
n.pictures = 1
n.videos = 4
n.documents = 1
n.music = 9
n.apps = 7
#write the values to the page
# self.response.write(" <br/> Nancy has " + str(n.final_storage) + " GB of storage remaining") #writing the user_page which has has all the html for my application
#now I will hard code the values for each data object
h = Storage()
h.pictures = 18
h.videos = 10
h.documents = 1
h.music = 6
h.apps = 7
#write the values to the page
# self.response.write(" <br/> Henry has " + str(h.final_storage) + " GB of storage remaining") #writing the user_page which has has all the html for my application
#now I will hard code the values for each data object
j = Storage()
j.pictures = 6
j.videos = 4
j.documents = 1
j.music = 7
j.apps = 2
示例12: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
p = Page()
p.body = "Hello!"
p.title = "My Page!!!!!"
p.css = "css/main.css"
self.response.write(p.whole_page)
示例13: get
# 需要导入模块: from pages import Page [as 别名]
# 或者: from pages.Page import css [as 别名]
def get(self):
# Establishes p as referring to the Page class
p = Page()
# p.title uses the title setter in the Page class to set the value of title, the line below is similar
p.title = "Encapsulated Calculator"
p.css = "css/styles.css"
# c1 uses the Cameras class to assemble an object with the following attributes and sets their values
# c2=c5 is identical in function
c1 = Cameras()
c1.name = "Canon 5d3"
c1.body_cost = 3000
c1.lens_cost = 5000
c1.accessories_cost = 1000
c1.quality = "High"
c1.calc_value()
c2 = Cameras()
c2.name = "Nikon D800"
c2.body_cost = 2500
c2.lens_cost = 1500
c2.accessories_cost = 200
c2.quality = "Low"
c2.calc_value()
c3 = Cameras()
c3.name = "Leica M9"
c3.body_cost = 100
c3.lens_cost = 500
c3.accessories_cost = 100
c3.quality = "Medium"
c3.calc_value()
c4 = Cameras()
c4.name = "Pentax MX1"
c4.body_cost = 2000
c4.lens_cost = 200
c4.accessories_cost = 50
c4.quality = "High"
c4.calc_value()
c5 = Cameras()
c5.name = "GoPro Hero5 Platinum"
c5.body_cost = 10000
c5.lens_cost = 0
c5.accessories_cost = 10
c5.quality = "Low"
c5.calc_value()
# This establishes a variable that consolisates all c1-c5 objects
all_these_cameras = [c1, c2, c3, c4, c5]
# Checks if there is an instance of "cameras" in the request pushed from the browser
if "cameras" in self.request.GET:
# Uses a value in the request to determine which cX object I am requesting
# and sets just that object to the current_camera variable in Page class.
p.current_camera = all_these_cameras[int(self.request.GET["cameras"])]
# Writes the entire contents of whole_page variable in Page class to the browser
self.response.write(p.whole_page)
else:
# Writes the info to the browser even if a request hasnt been made.
self.response.write(p.whole_page)