Skip to content

Instantly share code, notes, and snippets.

@k-nut
Created January 14, 2013 08:23
Show Gist options
  • Save k-nut/4528599 to your computer and use it in GitHub Desktop.
Save k-nut/4528599 to your computer and use it in GitHub Desktop.
@property
def upload_ratio(self):
if self.downloaded_size > 0:
return float(self.upload_size) / self.downloaded_size
else:
return 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment