Advertisement
Guest User

next ep output

a guest
May 24th, 2010
445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 14.17 KB | None | 0 0
  1. >>>
  2. Loading Database...
  3. Database Loaded
  4. >>> see_shows()
  5. Rules of Engagement
  6. Romantically Challenged
  7. Glee
  8. CSI: Crime Scene Investigation
  9. Chuck
  10. >>> addshow("saving grace")
  11. Adding show to database...
  12. Show 'Saving Grace' added
  13. >>> see_shows()
  14. Romantically Challenged
  15. Rules of Engagement
  16. Glee
  17. Chuck
  18. CSI: Crime Scene Investigation
  19. Saving Grace
  20. >>> addshow("castle")
  21. Please select which show you want by using the number to the left of the show title
  22.  
  23. [0] Castle
  24.  
  25.  
  26. [1] Lavender Castle
  27.  
  28.  
  29. [2] Queenie's Castle
  30.  
  31.  
  32. [3] Union Castle
  33.  
  34.  
  35. [4] Eureeka's Castle
  36.  
  37.  
  38. [5] The Toy Castle
  39.  
  40.  
  41. [6] Blanding's Castle
  42.  
  43.  
  44. [7] Takeshi's Castle
  45.  
  46.  
  47. [8] Up the Elephant and Round the Castle
  48.  
  49.  
  50. [9] Crisis at the Castle
  51.  
  52.  
  53. [10] Castle (2009)
  54.  
  55.  
  56. [11] Conquer The Castle
  57.  
  58.  
  59. [12] Castle Haven
  60.  
  61.  
  62. Show number: 10
  63. Adding show to database...
  64. Show 'Castle (2009)' added
  65. >>> see_shows()
  66. Romantically Challenged
  67. Rules of Engagement
  68. Glee
  69. Chuck
  70. CSI: Crime Scene Investigation
  71. Castle (2009)
  72. Saving Grace
  73. >>> delshow()
  74. [0] Romantically Challenged
  75.  
  76. [1] Rules of Engagement
  77.  
  78. [2] Glee
  79.  
  80. [3] Chuck
  81.  
  82. [4] CSI: Crime Scene Investigation
  83.  
  84. [5] Castle (2009)
  85.  
  86. [6] Saving Grace
  87.  
  88. Please select the show you wish to delete by using the numbers listed to the left: 4
  89. Are you sure you want to delete 'CSI: Crime Scene Investigation'? Y/N: y
  90. Deleted
  91. >>> see_shows()
  92. Romantically Challenged
  93. Rules of Engagement
  94. Glee
  95. Chuck
  96. Castle (2009)
  97. Saving Grace
  98. >>> latest_eps()
  99. Romantically Challenged
  100. -----------------------------------------------------------------------------
  101.    S01       E05             Perry Dates His Assistant           Unknown  
  102. -----------------------------------------------------------------------------
  103.  
  104.  
  105. Rules of Engagement
  106. -----------------------------------------------------------------------------
  107.    S04       E13                      They Do?                  2010-05-24
  108. -----------------------------------------------------------------------------
  109.  
  110.  
  111. Glee
  112. -----------------------------------------------------------------------------
  113.    S01       E19                      Dream On                  2010-05-18
  114. -----------------------------------------------------------------------------
  115.  
  116.  
  117. Chuck
  118. -----------------------------------------------------------------------------
  119.    S03       E19           Chuck Versus the Ring: Part 2        2010-05-24
  120. -----------------------------------------------------------------------------
  121.  
  122.  
  123. Castle (2009)
  124. -----------------------------------------------------------------------------
  125.    S02       E24                   A Deadly Game                2010-05-17
  126. -----------------------------------------------------------------------------
  127.  
  128.  
  129. Saving Grace
  130. -----------------------------------------------------------------------------
  131.    S03       E14                  I Killed Kristin              2010-05-24
  132. -----------------------------------------------------------------------------
  133.  
  134.  
  135. >>> next_eps()
  136. Glee
  137. -----------------------------------------------------------------------------
  138.    S01       E20                   Theatricality                2010-05-25
  139. -----------------------------------------------------------------------------
  140.  
  141.  
  142. Saving Grace
  143. -----------------------------------------------------------------------------
  144.    S03       E15                  So Help You God               2010-05-31
  145. -----------------------------------------------------------------------------
  146.  
  147.  
  148. >>> upcoming_eps()
  149. Glee
  150. -----------------------------------------------------------------------------
  151.    S01       E20                   Theatricality                2010-05-25
  152.    S01       E21                        Funk                    2010-06-01
  153.    S01       E22                      Journey                   2010-06-08
  154. -----------------------------------------------------------------------------
  155.  
  156.  
  157. Saving Grace
  158. -----------------------------------------------------------------------------
  159.    S03       E15                  So Help You God               2010-05-31
  160.    S03       E16              Loose Men in Tight Jeans          2010-06-07
  161.    S03       E17          You Think I'm Gonna Eat My Gun?       2010-06-14
  162.   S03       E18              I Need You to Call Earl           2010-06-21
  163.   S03       E19          I'm Gonna Need a Big Night Light      2010-06-21
  164.    S04       E00                                                 Unknown  
  165.    S04       E00                                                 Unknown  
  166.    S04       E00                                                 Unknown  
  167. -----------------------------------------------------------------------------
  168.  
  169.  
  170. >>> show_episodes()
  171. [0] Romantically Challenged
  172.  
  173. [1] Rules of Engagement
  174.  
  175. [2] Glee
  176.  
  177. [3] Chuck
  178.  
  179. [4] Castle (2009)
  180.  
  181. [5] Saving Grace
  182.  
  183. Please select the show you wish to see all the episoders for by using the numbers listed to the left: 4
  184.  
  185.  
  186.   Season    Episode                   Title                  Air Date
  187. ----------------------------------------------------------------------
  188.     01         01             Flowers for Your Grave        2009-03-09
  189.     01         02                  Nanny McDead             2009-03-16
  190.     01         04              Hedge Fund Homeboys          2009-03-23
  191.     01         03               Hell Hath No Fury           2009-03-30
  192.     01         05         A Chill Goes Through Her Veins    2009-04-06
  193.     01         06               Always Buy Retail           2009-04-13
  194.     01         07         Home is Where the Heart Stops     2009-04-20
  195.     01         08                     Ghosts                2009-04-27
  196.     01         09                Little Girl Lost           2009-05-04
  197.     01         10             A Death in the Family         2009-05-11
  198. ----------------------------------------------------------------------
  199.     02         01                 Deep in Death             2009-09-21
  200.     02         02                The Double Down            2009-09-28
  201.     02         03               Inventing the Girl          2009-10-05
  202.     02         04                  Fool Me Once             2009-10-12
  203.     02         05             When the Bough Breaks         2009-10-19
  204.     02         06                Vampire Weekend            2009-10-26
  205.     02         07               Famous Last Words           2009-11-02
  206.     02         08               Kill the Messenger          2009-11-09
  207.     02         09                  Love Me Dead             2009-11-16
  208.     02         10               One Man's Treasure          2009-11-23
  209.    02         11                The Fifth Bullet           2009-12-07
  210.    02         12              A Rose For Everafter         2010-01-11
  211.    02         13                  Sucker Punch             2010-01-18
  212.    02         14                 The Third Man             2010-01-25
  213.    02         15                Suicide Squeeze            2010-02-08
  214.    02         16        The Mistress Always Spanks Twice   2010-03-08
  215.    02         17            Tick, Tick, Tick... (1)        2010-03-22
  216.    02         18                   Boom! (2)               2010-03-29
  217.    02         19              Wrapped Up in Death          2010-04-05
  218.    02         20                 The Late Shaft            2010-04-12
  219.    02         21                 Den of Thieves            2010-04-19
  220.    02         22                Food to Die For            2010-05-03
  221.    02         23                    Overkill               2010-05-10
  222.    02         24                 A Deadly Game             2010-05-17
  223. ----------------------------------------------------------------------
  224. >>> show_episodes("chuck")
  225.  Season    Episode                     Title                     Air Date
  226. ---------------------------------------------------------------------------
  227.    01         01             Chuck Versus the Intersect         2007-09-24
  228.    01         02            Chuck Versus the Helicopter         2007-10-01
  229.    01         03               Chuck Versus the Tango           2007-10-08
  230.    01         04              Chuck Versus the Wookiee          2007-10-15
  231.    01         05          Chuck Versus the Sizzling Shrimp      2007-10-22
  232.    01         06             Chuck Versus the Sandworm          2007-10-29
  233.    01         07            Chuck Versus the Alma Mater         2007-11-05
  234.    01         08               Chuck Versus the Truth           2007-11-12
  235.    01         09       Chuck Versus the Imported Hard Salami    2007-11-19
  236.    01         10              Chuck Versus the Nemesis          2007-11-26
  237.    01         11             Chuck Versus the Crown Vic         2007-12-03
  238.    01         12         Chuck Versus the Undercover Lover      2008-01-24
  239.    01         13              Chuck Versus the Marlin           2008-01-24
  240. ---------------------------------------------------------------------------
  241.    02         01            Chuck Versus the First Date         2008-09-29
  242.    02         02             Chuck Versus the Seduction         2008-10-06
  243.    02         03             Chuck Versus the Break-Up          2008-10-13
  244.    02         04              Chuck Versus the Cougars          2008-10-20
  245.    02         05              Chuck Versus Tom Sawyer           2008-10-27
  246.    02         06                Chuck Versus the Ex             2008-11-10
  247.    02         07             Chuck Versus the Fat Lady          2008-11-17
  248.    02         08             Chuck Versus the Gravitron         2008-11-24
  249.    02         09              Chuck Versus the Sensei           2008-12-01
  250.    02         10             Chuck Versus the DeLorean          2008-12-08
  251.    02         11              Chuck Versus Santa Claus          2008-12-15
  252.    02         12        Chuck Versus the Third Dimension 3D     2009-02-02
  253.    02         13              Chuck Versus the Suburbs          2009-02-16
  254.    02         14            Chuck Versus the Best Friend        2009-02-23
  255.    02         15             Chuck Versus the Beefcake          2009-03-02
  256.    02         16           Chuck Versus the Lethal Weapon       2009-03-09
  257.    02         17             Chuck Versus the Predator          2009-03-23
  258.    02         18           Chuck Versus the Broken Heart        2009-03-30
  259.    02         19             Chuck Versus the Dream Job         2009-04-06
  260.    02         20            Chuck Versus the First Kill         2009-04-13
  261.    02         21              Chuck Versus the Colonel          2009-04-20
  262.    02         22               Chuck Versus the Ring            2009-04-27
  263.    02         23                                                 Unknown  
  264. ---------------------------------------------------------------------------
  265.    03         01             Chuck Versus the Pink Slip         2010-01-10
  266.    03         02            Chuck Versus the Three Words        2010-01-10
  267.    03         03        Chuck Versus the Angel de la Muerte     2010-01-11
  268.    03         04           Chuck Versus Operation Awesome       2010-01-18
  269.    03         05              Chuck Versus First Class          2010-01-25
  270.    03         06           Chuck Versus the Nacho Sampler       2010-02-01
  271.    03         07               Chuck Versus the Mask            2010-02-08
  272.    03         08             Chuck Versus the Fake Name         2010-03-01
  273.    03         09               Chuck Versus the Beard           2010-03-08
  274.    03         10              Chuck Versus the Tic Tac          2010-03-15
  275.    03         11            Chuck Versus the Final Exam         2010-03-22
  276.    03         12           Chuck Versus the American Hero       2010-03-29
  277.    03         13             Chuck Versus the Other Guy         2010-04-05
  278.    03         14           Chuck Versus the Honeymooners        2010-04-26
  279.    03         15            Chuck Versus the Role Models        2010-05-03
  280.    03         16               Chuck Versus the Tooth           2010-05-10
  281.    03         17            Chuck Versus the Living Dead        2010-05-17
  282.    03         18              Chuck Versus the Subway           2010-05-24
  283.    03         19           Chuck Versus the Ring: Part 2        2010-05-24
  284. ---------------------------------------------------------------------------
  285. >>> show_season()
  286. [0] Romantically Challenged
  287.  
  288. [1] Rules of Engagement
  289.  
  290. [2] Glee
  291.  
  292. [3] Chuck
  293.  
  294. [4] Castle (2009)
  295.  
  296. [5] Saving Grace
  297.  
  298. Please select the show by using the numbers listed to the left: 1
  299.  
  300.  
  301. Please select the season you wish to view.
  302. There are 4 seaons for 'Rules of Engagement'
  303. Season: 1
  304.  
  305.  
  306. Episode              Title              Air Date
  307. ---------------------------------------------------
  308.    01                Pilot             2007-02-05
  309.    02          The Birthday Deal       2007-02-12
  310.    03        Young and the Restless    2007-02-19
  311.    06               Game On            2007-02-26
  312.    05                 Kids             2007-03-05
  313.    04           Hard Day's Night       2007-03-12
  314.     07             Jeff's Wooby         2007-03-19
  315. ---------------------------------------------------
  316. >>> show_season("saving grace","1")
  317.  
  318.  
  319. Episode                      Title                      Air Date
  320. -------------------------------------------------------------------
  321.    01                        Pilot                     2007-07-23
  322.    02                  Bring It On, Earl               2007-07-30
  323.    03         Bless Me, Father, for I Have Sinned      2007-08-06
  324.    04          Keep Your Damn Wings Off My Nephew      2007-08-13
  325.    05            Would You Want Me To Tell You?        2007-08-20
  326.    06               And You Wonder Why I Lie           2007-08-27
  327.    07                    Yeehaw, Geepaw                2007-09-03
  328.    08            Everything's Got a Shelf Life         2007-09-10
  329.     09                 A Language of Angels             2007-09-17
  330.     10            It's Better When I Can See You        2007-12-03
  331.    11            This Is Way Too Normal For You        2007-12-10
  332.    12       Is There A Scarlet Letter On My Breast?    2007-12-17
  333.    13            Taco, Tulips, Duck and Spices         2007-12-24
  334. -------------------------------------------------------------------
  335. >>> show_shownames()
  336. Show names as entered by you upon creation of show:
  337.  
  338. romantically challenged
  339.  
  340.  
  341. Rules
  342.  
  343.  
  344. glee
  345.  
  346.  
  347. chuck
  348.  
  349.  
  350. castle
  351.  
  352.  
  353. saving grace
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement