Skip to content

Commit

Permalink
removed progressive/adaptive from yt class
Browse files Browse the repository at this point in the history
  • Loading branch information
nficano committed Oct 9, 2017
1 parent dde04f5 commit 49374ef
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions pytube/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,18 +158,6 @@ def initialize_stream_objects(self, fmt):
)
self.fmt_streams.append(video)

@property
@memoize
def progressive_streams(self):
"""Interface to query progressive download streams."""
return StreamQuery([s for s in self.fmt_streams if not s.is_adaptive])

@property
@memoize
def adaptive_streams(self):
"""Interface to query adaptive (DASH) streams."""
return StreamQuery([s for s in self.fmt_streams if s.is_adaptive])

@property
@memoize
def streams(self):
Expand Down

0 comments on commit 49374ef

Please sign in to comment.