You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
874 B
43 lines
874 B
import six
|
|
|
|
from datetime import datetime
|
|
|
|
DISCORD_EPOCH = 1420070400000
|
|
|
|
|
|
def to_datetime(snowflake):
|
|
"""
|
|
Converts a snowflake to a UTC datetime.
|
|
"""
|
|
return datetime.utcfromtimestamp(to_unix(snowflake))
|
|
|
|
|
|
def to_unix(snowflake):
|
|
return to_unix_ms(snowflake) / 1000
|
|
|
|
|
|
def to_unix_ms(snowflake):
|
|
return (int(snowflake) >> 22) + DISCORD_EPOCH
|
|
|
|
|
|
def from_datetime(date):
|
|
return from_timestamp(int(date.isoformat('%s')))
|
|
|
|
|
|
def from_timestamp(ts):
|
|
return long(ts * 1000.0 - DISCORD_EPOCH) << 22
|
|
|
|
|
|
def to_snowflake(i):
|
|
if isinstance(i, six.integer_types):
|
|
return i
|
|
elif isinstance(i, str):
|
|
return int(i)
|
|
elif hasattr(i, 'id'):
|
|
return i.id
|
|
|
|
raise Exception('{} ({}) is not convertable to a snowflake'.format(type(i), i))
|
|
|
|
|
|
def calculate_shard(shard_count, guild_id):
|
|
return (guild_id >> 22) % shard_count
|
|
|