ragesh

Results 2 comments of ragesh

You could take the shortcode and convert it into media id Code: ``` def shortcode_to_media_id(shortcode): alp = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_' id = 0 for i in range(0, len(shortcode)): char = shortcode[i] id...