diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/emoji-list.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/emoji-list.py b/bin/emoji-list.py index 9e17c30..590dddc 100644 --- a/bin/emoji-list.py +++ b/bin/emoji-list.py @@ -2,7 +2,7 @@ import json, os, urllib.request, urllib.parse, urllib.error import xml.etree.ElementTree as ET emoji_list = json.load(urllib.request.urlopen( - 'https://raw.githubusercontent.com/iamcal/emoji-data/master/emoji.json' + 'https://raw.githubusercontent.com/iamcal/emoji-data/refs/heads/master/emoji.json' )) dictionary = {} for emoji in emoji_list: @@ -11,7 +11,7 @@ for emoji in emoji_list: dictionary[character] = ' [%s] ' % (name) stupidspeak_map = ET.fromstring(urllib.request.urlopen( - 'http://slothsoft.net/getResource.php/slothsoft/unicode-mapper' + 'http://slothsoft.net/slothsoft@slothsoft.net/static/unicode-mapper' ).read()) for letter in stupidspeak_map.findall('.//letter'): if letter.attrib['target'] != letter.attrib['source']: |