Skip to content

Instantly share code, notes, and snippets.

@iezg
Last active December 18, 2015 09:49
Show Gist options
  • Save iezg/5764621 to your computer and use it in GitHub Desktop.
Save iezg/5764621 to your computer and use it in GitHub Desktop.
Tizen package name generator
import string
import random
def generate_tizen_app_id(self):
"""Generates a 10-character alphanumeric value used to identify
a Tizen application"""
chars = string.ascii_letters + string.digits
return ''.join(random.choice(chars) for x in range(10))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment