Skip to main content

介绍

sxtwl_cpp是参考寿星天文历并使用C++实现日历库。因为其依据天文历法算法实现,故其可查询范围广(BC722年以后与实历相符,支持1800年以前及2200年以后的日历查询)。支持Android、IOS、Windows、MacOS、Linux等平台。使用swig暴露接口给python,lua,java等语言使用。

安装方法

pip install sxtwl

旧工程代码兼容 如果有已使用V1.x版本的工程,想兼容代码

pip install sxtwl==1.1.0

或者在requirements.txt里修改

sxtwl 1.1.0

具体使用方法参考: https://pypi.org/project/sxtwl/

本项目 GitHub / Gitee(码云)。

使用方法

注:因为pip上传后不能二次修改,参考事例可能会有错误无法修改,如果发现下面例子不能用,请以为准: 传送门

  1. 因为考虑到繁体和简体字的原因,所以本库不以硬编码的形式显示结果。下面是参考的简单索引
Gan = ["甲", "乙", "丙", "丁", "戊", "己", "庚", "辛", "壬", "癸"]
Zhi = ["子", "丑", "寅", "卯", "辰", "巳", "午", "未", "申", "酉", "戌", "亥"]
ShX = ["鼠", "牛", "虎", "兔", "龙", "蛇", "马", "羊", "猴", "鸡", "狗", "猪"]
numCn = ["零", "一", "二", "三", "四", "五", "六", "七", "八", "九", "十"]
jqmc = ["冬至", "小寒", "大寒", "立春", "雨水", "惊蛰", "春分", "清明", "谷雨", "立夏",
     "小满", "芒种", "夏至", "小暑", "大暑", "立秋", "处暑","白露", "秋分", "寒露", "霜降", 
     "立冬", "小雪", "大雪"]
ymc = ["十一", "十二", "正", "二", "三", "四", "五", "六", "七", "八", "九", "十" ]
rmc = ["初一", "初二", "初三", "初四", "初五", "初六", "初七", "初八", "初九", "初十", 
    "十一", "十二", "十三", "十四", "十五", "十六", "十七", "十八", "十九", "二十", 
    "廿一", "廿二", "廿三", "廿四", "廿五", "廿六", "廿七", "廿八", "廿九", "三十", "卅一"]
XiZ = ['摩羯', '水瓶', '双鱼', '白羊', '金牛', '双子', '巨蟹', '狮子', '处女', '天秤', '天蝎', '射手']
WeekCn = ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]
  1. 引入本库
import  sxtwl

# 从公历年月日获取一天的信息
day = sxtwl.fromSolar(2021, 11, 7) 

# 从农历年月日获取一天的信息
day = sxtwl.fromLunar(2020, 12, 1)
  1. 获取某天的信息(这里的信息有,阴历,阳历,二十四节气,天干地支,星期几等)
# 公历的年月日
s = "公历:%d年%d月%d日" % (day.getSolarYear(), day.getSolarMonth(), day.getSolarDay())
print(s)

# 星期几
print(WeekCn[day.getWeek()])

# 这个月的第几周
print('该日属于这个月的第%d周'%(day.getWeekIndex(),))

# 星座(有bug?待修复)
print("星座:", XiZ[day.getConstellation()])

# 以春节为界的农历(注getLunarYear如果没有传参,或者传true,是以春节为界的)
s = "农历:%d年%s%d月%d日" % (day.getLunarYear(), 
    '闰' if day.isLunarLeap() else '', day.getLunarMonth(), day.getLunarDay())
print(s)

# 以立春为界的农历
s = "农历:%d年%s%d月%d日" % (day.getLunarYear(False), 
    '闰' if day.isLunarLeap() else '', day.getLunarMonth(), day.getLunarDay())
print(s)


# 以春节为界的天干地支 
yTG = day.getYearGZ(True)
print("以春节为界的年干支", Gan[yTG.tg] + Zhi[yTG.dz]) 
print("以春节为界的生肖:", ShX[yTG.dz])

# 以立春为界的天干地支 (注,如果没有传参,或者传false,是以立春为界的。刚好和getLunarYear相反)
yTG = day.getYearGZ()
print("以立春为界的年干支", Gan[yTG.tg] + Zhi[yTG.dz]) 
print("以立春为界的生肖:", ShX[yTG.dz])

#月干支
mTG = day.getMonthGZ()
print("月干支", Gan[mTG.tg] + Zhi[mTG.dz]) 

#日干支
dTG  = day.getDayGZ()
print("日干支", Gan[dTG.tg] + Zhi[dTG.dz]) 


#时干支,传24小时制的时间,分早晚子时
hour = 18
sTG = day.getHourGZ(hour)
print("%d时的干支"%(hour, ), Gan[sTG.tg] + Zhi[sTG.dz]) 


#时干支
for hour in range(24):
    # 第一个参数为该天的天干,第二个参数为小时
    hTG  = sxtwl.getShiGz(dTG.tg, hour)
    print("%d时天干地支:"%(hour), Gan[hTG.tg] + Zhi[hTG.dz])


# 当日是否有节气
if day.hasJieQi():
    print('节气:%s'% jqmc[day.getJieQi()])
    #获取节气的儒略日数
    jd = day.getJieQiJD()
    # 将儒略日数转换成年月日时秒
    t = sxtwl.JD2DD(jd )

    # 注意,t.s是小数,需要四舍五入
    print("节气时间:%d-%d-%d %d:%d:%d"%(t.Y, t.M, t.D, t.h, t.m, round(t.s)))
else:
    print("当天不是节气日")

  1. 获取某日的前几天或者后几天的信息 (可以用到很多场景中)
# 获取某天的后面几天
num = 1    #你喜欢写多少天 也多少天,可以写负数,相当于往前
day = day.after(num)  #获取num天后的日信息
s = "公历:%d年%d月%d日" % (day.getSolarYear(), day.getSolarMonth(), day.getSolarDay())
print(s)

# 同上
day = day.before(num)
s = "公历:%d年%d月%d日" % (day.getSolarYear(), day.getSolarMonth(), day.getSolarDay())
print(s)
  1. 获取一年中的闰月
# 获取一年中的闰月
year = 2020
month = sxtwl.getRunMonth(year)
if month >= 0:
    print("%d年的闰月是%d"%(year, month) )
else:
    print("没有闰月")
  1. 获取一个农历月的天数
# 一个农历月的天数
year = 2020 #农历年
month  = 4 #农历月
isRun = False #是否是闰月
daynum = sxtwl.getLunarMonthNum(year, month, isRun)
print("农历%d年%s%d月的天数:"%(year, '闰'if isRun else '', month), daynum)

  1. 儒略日数与公历的互转
#儒略日数转公历
jd = sxtwl.J2000
t = sxtwl.JD2DD(jd )

#公历转儒略日
jd = sxtwl.toJD(t)
  1. 查找某日之前或者之后的节气
# 查找某日前后的节气,此例为之后,之前把after替换成before
while True:
    # 这里可以使用after或者before,不用担心速度,这里的计算在底层仅仅是+1这么简单
    day = day.after(1)
    # hasJieQi的接口比getJieQiJD速度要快,你也可以使用getJieQiJD来判断是否有节气。
    if day.hasJieQi():
        print('节气:%s'% jqmc[day.getJieQi()])
        #获取节气的儒略日数, 如果说你要计算什么时间的相距多少,直接比对儒略日要方便,相信我。
        jd = day.getJieQiJD()

        # 将儒略日数转换成年月日时秒
        t = sxtwl.JD2DD(jd )

        # 注意,t.s是小数,需要四舍五入
        print("节气时间:%d-%d-%d %d:%d:%d"%(t.Y, t.M, t.D, t.h, t.m, round(t.s)))

        break
  1. 四柱反查 (好像还有bug,待修复)
###==================================================================================
# 四柱反查工具方法
# 实际项目中不要这样子搞哈,因为汉字utf-8,GBK2312不同的编码。建议还是直接使用天干地支的数字索引 
def getGZ(gzStr):
    tg = -1
    dz = -1
    for i, v in enumerate(Gan):
        if gzStr[0]  == v:
            tg = i
            break

    for i, v in enumerate(Zhi):
        if  gzStr[1] == v:
            dz = i
            break   
    return sxtwl.GZ(tg, dz)
###==================================================================================

# 四注反查 分别传的是年天干,月天干,日天干,时天干, 开始查询年,结束查询年  返回满足条件的儒略日数
jds = sxtwl.siZhu2Year(getGZ('辛丑'), getGZ('己亥'), getGZ('丙寅'), getGZ('癸巳'), 2003, 2029);
for jd in jds:
    t = sxtwl.JD2DD(jd )
    print("符合条件的时间:%d-%d-%d %d:%d:%d"%(t.Y, t.M, t.D, t.h, t.m, round(t.s)))

联系作者及广告

作者微信二维码:

微信二维码

请您扫码支持作者的海棠万年历(广告):

海棠万年历

如果您想请作者喝杯奶茶,扫如下微信支付码:

微信收款

Release files for sxtwl 2.0.7

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for sxtwl 2.0.7
File Size Uploaded
sxtwl-2.0.7.tar.gz 163.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for sxtwl 2.0.7
File
sxtwl-2.0.7-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64 Details
sxtwl-2.0.7-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
sxtwl-2.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
sxtwl-2.0.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
sxtwl-2.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
sxtwl-2.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
sxtwl-2.0.7-cp312-cp312-macosx_12_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 12.0+ x86-64 Details
sxtwl-2.0.7-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
sxtwl-2.0.7-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
sxtwl-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
sxtwl-2.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
sxtwl-2.0.7-cp311-cp311-macosx_12_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 12.0+ x86-64 Details
sxtwl-2.0.7-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
sxtwl-2.0.7-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
sxtwl-2.0.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
sxtwl-2.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
sxtwl-2.0.7-cp310-cp310-macosx_12_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 12.0+ x86-64 Details
sxtwl-2.0.7-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
sxtwl-2.0.7-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
sxtwl-2.0.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
sxtwl-2.0.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
sxtwl-2.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
sxtwl-2.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
sxtwl-2.0.7-cp39-cp39-macosx_12_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 12.0+ x86-64 Details
sxtwl-2.0.7-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
sxtwl-2.0.7-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
sxtwl-2.0.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
sxtwl-2.0.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
sxtwl-2.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
sxtwl-2.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
sxtwl-2.0.7-cp38-cp38-macosx_12_0_x86_64.whl CPython 3.8 CPython 3.8 macOS 12.0+ x86-64 Details
sxtwl-2.0.7-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
sxtwl-2.0.7-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64, Linux glibc 2.12+ x86-64 Details
sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32, Linux glibc 2.5+ x86-32 Details
sxtwl-2.0.7-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
sxtwl-2.0.7-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
sxtwl-2.0.7-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64, Linux glibc 2.12+ x86-64 Details
sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32, Linux glibc 2.5+ x86-32 Details
sxtwl-2.0.7-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
sxtwl-2.0.7-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
sxtwl-2.0.7-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
sxtwl-2.0.7-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
sxtwl-2.0.7-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
sxtwl-2.0.7-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
sxtwl-2.0.7-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
sxtwl-2.0.7-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details
sxtwl-2.0.7-cp27-cp27m-macosx_12_0_x86_64.whl CPython 2.7 CPython 2.7 pymalloc macOS 12.0+ x86-64 Details

Total release size: 35.9 MB

Release files / sxtwl-2.0.7.tar.gz

Download URL sxtwl-2.0.7.tar.gz
Size 163.8 kB
Tags Source
SHA-256 checksum
How to use checksums
38b24472389f7f6f3521c2c99e4b5e86c0184c7d6eb02e5409c239d21f0a6512
BLAKE2b-256 checksum
How to use checksums
f6e3ee4e81d6759ccbc5718308108f94edc7fd962024bd9bb042169c542febf4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.4

Release files / sxtwl-2.0.7-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL sxtwl-2.0.7-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
75e022c1601b321a93592d0b2464c1139dafe2bc86c42136eb3837905afd231f
BLAKE2b-256 checksum
How to use checksums
bc027d8736b89768c4f2361e96a13fd3e2c6e28590558f70b39de0b43ea67c4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL sxtwl-2.0.7-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.1 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
ef8db940b98583e3916486c0d5433f987500f1331bfb027753416a9de33f9487
BLAKE2b-256 checksum
How to use checksums
fc4abbc4e45255001353cf52967698e37cefa81b03ad46d728f5b42e9e575f63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL sxtwl-2.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8d1143cca29c7e635fcd9877b54f9f07057c99275ebf547586e4e1c572513cef
BLAKE2b-256 checksum
How to use checksums
25e99dcd837900b4aa2abcb2c55b507925639ee9ef5f02e6fa8ef20d67c56586
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL sxtwl-2.0.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.1 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2e9e1596b7c943d31d411d987d2231d461e83eb24b0d317de3cd8d43faea8609
BLAKE2b-256 checksum
How to use checksums
6534367d19786a14aa1e0a78b9091ff17376b3dfa6eb1c738ac460d65f41955c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL sxtwl-2.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2091687ded7c7312830e1ac862d986cebaaf72115f07ce791ac0142601d13732
BLAKE2b-256 checksum
How to use checksums
20bd4facf4c01f8337a8961992d2bd88783bbce34cd82396da70c8d95cd5f17a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL sxtwl-2.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.1 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
6a3c853579c5bdb1c5d0e75b085df0d980ab355ecb98034e04290af831fa3ace
BLAKE2b-256 checksum
How to use checksums
62e757ba5316857ad8bc2b9897b8a783651a26390248aff14ae145cb3c585361
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp312-cp312-macosx_12_0_x86_64.whl

Download URL sxtwl-2.0.7-cp312-cp312-macosx_12_0_x86_64.whl
Size 234.1 kB
Tags CPython 3.12 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
812251071821c35ea7c9539d0fe5c036a016da309bc0f49406d8deb8a3959d4a
BLAKE2b-256 checksum
How to use checksums
0bc5b83f9e279b0c874a74436ffbc4017dbb5ec2febe622b7c7d0eee979184a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.18

Release files / sxtwl-2.0.7-cp311-cp311-win_amd64.whl

Download URL sxtwl-2.0.7-cp311-cp311-win_amd64.whl
Size 189.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
78405ee906adf7b36b07c8942da764646cf8a13b6ae4319f62cbb2aa1b765dd7
BLAKE2b-256 checksum
How to use checksums
ac6a61eea689e14fe4cb1f79e23463b245573e9fcb85a3faab81d6ca279fe936
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / sxtwl-2.0.7-cp311-cp311-win32.whl

Download URL sxtwl-2.0.7-cp311-cp311-win32.whl
Size 172.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
a8a49a45fba761898578af7403bd403b3d8375e34ff8113dec37790d694ce075
BLAKE2b-256 checksum
How to use checksums
c1b7712427a123a4d306bdff8d80379884a17be17fb5a20fb9672b4e5c955538
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / sxtwl-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL sxtwl-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
083d1ae0b38069e8a688ea7416cdc23d02193aa266320a88976e71509d9caa7a
BLAKE2b-256 checksum
How to use checksums
34053f895421788799cd36fc11535a5ce69144251a944f7db8328eee639f4c36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL sxtwl-2.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.1 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
57d0e1b616270e84b864067458481396c43025299000fb4cca0965d90118402a
BLAKE2b-256 checksum
How to use checksums
aeecaac6465ebe6bfc661ec30cfc7eaa9a956e358454ab1a76107c95f09f9d73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp311-cp311-macosx_12_0_x86_64.whl

Download URL sxtwl-2.0.7-cp311-cp311-macosx_12_0_x86_64.whl
Size 233.5 kB
Tags CPython 3.11 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
9b53aa9ad2f93143ef4cf07c378e87fd3320f5cea1d4ae1d25169d7f09abf44a
BLAKE2b-256 checksum
How to use checksums
86aa5aa2bd4556bd904eff23ce55cec6501ffe0fad90e7c274f0ac9954572ef7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.18

Release files / sxtwl-2.0.7-cp310-cp310-win_amd64.whl

Download URL sxtwl-2.0.7-cp310-cp310-win_amd64.whl
Size 189.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
7832c60bb95fca900c3e80b73a76ce611ca951c302ea6ada0771ca1c8873c22b
BLAKE2b-256 checksum
How to use checksums
0c39a9169ef67f228afe0ad2c6df89df94578c9510f3b26ea34727f2f92bc722
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / sxtwl-2.0.7-cp310-cp310-win32.whl

Download URL sxtwl-2.0.7-cp310-cp310-win32.whl
Size 172.0 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
2ffd049584e2bdff31fa909c132fdfd307a5f02fc3d05e1f1a6bb4a7e840edcb
BLAKE2b-256 checksum
How to use checksums
2b1f2159bd4bed0027e21d80146e3c3832d5f1ae6f782bb4d1e18f1135ce2f9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / sxtwl-2.0.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL sxtwl-2.0.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.1 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
48911722d7c5f751ba9eaa971a4ee2bd827b689e33f4deb233637da0e32c6d96
BLAKE2b-256 checksum
How to use checksums
d3dc9fe59f3edd20bfe250334ab6cec5673cfd7ba0700152d7d40de87fdf3ae7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL sxtwl-2.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
34324a146519c5c0c69cf5174fb2483916c46189fe1f32759d902b4ee77851dd
BLAKE2b-256 checksum
How to use checksums
bae6e6148718bf9732d88370c3456740c88bb913fc356f7a72618c9fbe57a7c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp310-cp310-macosx_12_0_x86_64.whl

Download URL sxtwl-2.0.7-cp310-cp310-macosx_12_0_x86_64.whl
Size 233.5 kB
Tags CPython 3.10 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
f2c35794712e173313c4ae2a4f1c661518fe0bf47bbae84d118340f4e90a88b3
BLAKE2b-256 checksum
How to use checksums
68bae3bb892ba21ba972b5552b7a47fa3e0a3d2be730946340070f6429ed3850
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.18

Release files / sxtwl-2.0.7-cp39-cp39-win_amd64.whl

Download URL sxtwl-2.0.7-cp39-cp39-win_amd64.whl
Size 189.5 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
caa26e745544c28049713cd07e8d0a4fef1b85a8a09620d9e930e55a4a55a09d
BLAKE2b-256 checksum
How to use checksums
e29654b33c2d9196615e84fda23fa3947121eb18c356a95531faf55028e4ec0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / sxtwl-2.0.7-cp39-cp39-win32.whl

Download URL sxtwl-2.0.7-cp39-cp39-win32.whl
Size 171.9 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
c1eeffaaf5e22db1c9c591a9b5cf3c0e2cc5c41ea66c3fa428c3818429178f42
BLAKE2b-256 checksum
How to use checksums
739b71a09a288a76322a456b808db00aad5d88ea0fe7c2c6e6b0dca71d8af4ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / sxtwl-2.0.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL sxtwl-2.0.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 792.2 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d21af330339402910a9c271d9dfa04826f5b2733da6fd4879236086aae231ed9
BLAKE2b-256 checksum
How to use checksums
17831a2cd17cd93da241f5d281f2716b553e2109b3a597f6b453ea039282bdba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL sxtwl-2.0.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 792.2 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
e3075876dd8ee2cafbf0b0a53dd2cab0b6eacefe1fba1bc75a45cc45088d4f64
BLAKE2b-256 checksum
How to use checksums
e2ff62ba783c81d1ce4a266c2570ace43d8d14f37a718d03bf3fa513c9cd557e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL sxtwl-2.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 768.3 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a29da6ae47f46a6687109797b1869600dd9fe02c4c57f922aad2a839d7623898
BLAKE2b-256 checksum
How to use checksums
c2be7246ca63d220bb30ccedf824f441f66b14aef48c033e47ac2d4d1f9d5755
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL sxtwl-2.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 768.2 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
ce9bf56f7898f1b5d7072aef83bdbbefef5626efddd81b4122222df6bd49c988
BLAKE2b-256 checksum
How to use checksums
78b88b3c873e97530954d8d09102ee6dd5aa405be112fc16d74d11ba9d60bd26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp39-cp39-macosx_12_0_x86_64.whl

Download URL sxtwl-2.0.7-cp39-cp39-macosx_12_0_x86_64.whl
Size 233.5 kB
Tags CPython 3.9 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
675008e6bd0d7e99d872a8063e06672df398df0e7e5b4ac4101784da764d40ee
BLAKE2b-256 checksum
How to use checksums
8b4970f03465d8a6ffeeb19e62250fab66c6e5f8d57c190d5dc1d483ea9d94cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.18

Release files / sxtwl-2.0.7-cp38-cp38-win_amd64.whl

Download URL sxtwl-2.0.7-cp38-cp38-win_amd64.whl
Size 189.6 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
fc955dc5cfe5e302304ab64f8ad9475ada113f5f9c29765e0e1cea6ad24e54ed
BLAKE2b-256 checksum
How to use checksums
26f927e541c6810f11bb14f0e3e4ea140d196b18a01f4c89b988bbbea37943fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / sxtwl-2.0.7-cp38-cp38-win32.whl

Download URL sxtwl-2.0.7-cp38-cp38-win32.whl
Size 172.1 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
8fadae22ad7621f5f04d39da1a278b1242371d6515747388d56ceff8791e1f7f
BLAKE2b-256 checksum
How to use checksums
80a4bd34af1700c23d8df0688c156a0a40550074deb5800dd383de7e8832b09b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / sxtwl-2.0.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL sxtwl-2.0.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 794.1 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
b095cbebab47e0c0846b1ad1c985c5fbcddfc9c9c9f2c955c47f942f5e262e3c
BLAKE2b-256 checksum
How to use checksums
8a3138c6c0110f38e02641f399c6d27b13c888a5619a6e504a3aa9c8ba94c2f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL sxtwl-2.0.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 794.1 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
36430e6a04c9fdc6b82329f8171cb6325a672e9fe00ed934e83b09a676e9de2a
BLAKE2b-256 checksum
How to use checksums
332c90278b06ba40e61a89b5095bb89d1eb717d873c1f965de33d9b1e15d1d89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL sxtwl-2.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 770.1 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
07632259f88f460bc2c68ee319c69931da66a0d2311a54ed0f8116246bfea1c7
BLAKE2b-256 checksum
How to use checksums
aad2c30af0fe47b54256fd5b25eb1dd6085bcfdeefc2b9be208ddf9b3178ab86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL sxtwl-2.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 770.0 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
10205d2e133d60a201adf9393644f63a69a979c68fa521bd0694ecd5cb925a68
BLAKE2b-256 checksum
How to use checksums
3e36df94e68bf6790cf347b74b4a3286af8ff5ae251e4b77002242b41967a015
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp38-cp38-macosx_12_0_x86_64.whl

Download URL sxtwl-2.0.7-cp38-cp38-macosx_12_0_x86_64.whl
Size 233.9 kB
Tags CPython 3.8 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
e8988364ac5aadd4b121d0179cc95ce219c38fdfea8a7f3d506f10213a70d704
BLAKE2b-256 checksum
How to use checksums
c216c4891ef1c17b953a5ac8d0c26880048473696c4e1252c9f5b6d32fed0ad8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.18

Release files / sxtwl-2.0.7-cp37-cp37m-win_amd64.whl

Download URL sxtwl-2.0.7-cp37-cp37m-win_amd64.whl
Size 189.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
7059ec3d9effe84e5bf86c03b5b52cf08b7dbfb6b3efe0d39933836a2d323c2b
BLAKE2b-256 checksum
How to use checksums
a3ea89fa5b5ddd09d3f03977fb593fc800713195b4253f2ab571da1247a77e8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / sxtwl-2.0.7-cp37-cp37m-win32.whl

Download URL sxtwl-2.0.7-cp37-cp37m-win32.whl
Size 172.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
e5cf2af422954c7f495d99dc8d025e1ff3617e6263b333e8f36bcc84e1de23f7
BLAKE2b-256 checksum
How to use checksums
442bebed14edf5f96fd981d02e9dda4e399ccd57688adb54520231efd6b7f06e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 790.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
37c81be54baab139073b9aaaeddeb5e4f07b5d180642869f43f16ee4debae841
BLAKE2b-256 checksum
How to use checksums
b785c4cfc38236adce918fd52272179a4e803ec78073d5532586f75ab854f33a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 790.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
006705600e45ae304f007eb19d392a29ec079682b8afe371c4f3cdfed333b896
BLAKE2b-256 checksum
How to use checksums
c656eb52a25067cf80e7594a9eba3858ca17acb16c505464d68d0f924ac4beb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 790.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
602752cdca3cc7a444baf15d1504537d3de84b82b78e86b7142b479a7cc2c7b2
BLAKE2b-256 checksum
How to use checksums
8b51a435958db32eff83e41b66c122c997cb1d5c1f07255bd6fe2bb25f4b36bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Size 765.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
410fa3d329499f322faba2f8af8933597a23ec46aa2b9e07420e6e9d45dcff37
BLAKE2b-256 checksum
How to use checksums
6d90ebac4955507c58bfb4911916890b2172539ea1d5389c5b62ffbb8e77f4fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 765.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
8b90477a4016142f2db296828465f7f89ea3ad3ae49272983f4c39961159b2c6
BLAKE2b-256 checksum
How to use checksums
d28884c5d9dda3b8b6556358f3a65b6d7469a33c2e3856012525f2f42551c5a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl

Download URL sxtwl-2.0.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Size 765.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
ac195d966eaf1606172c9145bd306848e88a95d79e3bea27962bf2fec6d3a683
BLAKE2b-256 checksum
How to use checksums
272fbd07baf5a65a12e07d9f02cf5d9a08feeb9de7645744e90b87ce5436b092
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL sxtwl-2.0.7-cp37-cp37m-macosx_10_9_x86_64.whl
Size 239.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
667875b1724c494b004ce94d6ce861d3c0ced2d92f933bed13bf8459b05bb733
BLAKE2b-256 checksum
How to use checksums
478e48ecacb76bce0eb6c986b664d7975e200bab137a5fb006d03886191db0ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.5.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.4

Release files / sxtwl-2.0.7-cp36-cp36m-win_amd64.whl

Download URL sxtwl-2.0.7-cp36-cp36m-win_amd64.whl
Size 197.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
49f170691b0a2436bd608ac9671a07de63b629e0ab4a8a38668ce6f3ce022d73
BLAKE2b-256 checksum
How to use checksums
dd51d158852d79e1951ce09dd6dd13a3dfb7647482e06aef410d1dab227e5324
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / sxtwl-2.0.7-cp36-cp36m-win32.whl

Download URL sxtwl-2.0.7-cp36-cp36m-win32.whl
Size 174.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
bfc42e9f6324c0301af98a23ebbac1adfd0e076b877384a79a5cfb444a4fb663
BLAKE2b-256 checksum
How to use checksums
7db1abfda38821fbc503c052af6c14adf55a695030b93468933b0a61aca87961
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 793.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
90ffcfc6b94d0090a529206902a88174757ecb6a8a1a5531ffe202cfc5e87d92
BLAKE2b-256 checksum
How to use checksums
31d655b60938eb35c6506f3f0fc0f3cb792180cbabd8ff6e91745bd1cc549202
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 793.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
5f48de7e81e8b5dafc5f0c039ee9421d1585943f4ef310e0e8433d2942b3dc6c
BLAKE2b-256 checksum
How to use checksums
af2e23056255a75143f4b2662e25f5713d2229fd540cd7f776d4145883ddce10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 793.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
4a40d461a5eb99893356fe1c2585895d6074dc47b149e4b30f083ee5d5e59dd3
BLAKE2b-256 checksum
How to use checksums
28f9de983468aa7645a6e6b23f87a6ba257c3a790fd6e194fbf418dad9614674
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Size 769.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2c57ad079bcb315baed6a1c2e811d810df64becb29ff2bccdef2ab300208a75a
BLAKE2b-256 checksum
How to use checksums
9a7cf71c2bc999da2ac07d0c4f9dea197abbca17860303a220ebf6574eed7404
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 769.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
8c3343af497691160a5c81e0a14a0c9ec2d1b7d039a313b03db59750ec06bf17
BLAKE2b-256 checksum
How to use checksums
e7d7e530757ea8a4e133d5f56b0ad26ad35d3914b49ff4aa0c8d54523434a19f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl

Download URL sxtwl-2.0.7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Size 769.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
456a14626db8383069683f15144e58a5e8f6551210d1061859c4cb00b5f2821c
BLAKE2b-256 checksum
How to use checksums
b4ce133f228e45bc32eb085d8f2248b5ba87dd7debe360cb58ce68e36fccfda5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL sxtwl-2.0.7-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 793.1 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
e5e14bf53369753358d7363945d11719828a19c8225a7505efb2043f944b335f
BLAKE2b-256 checksum
How to use checksums
9fd0f859eaaadd11eebf854923351c63d37ecbb6dd84b0b3fe35eb6d5005235b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL sxtwl-2.0.7-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl
Size 769.5 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
9e1eee880655baf3e64261d3f408e9e03547a457a2f32db8fedb3487d7a4579a
BLAKE2b-256 checksum
How to use checksums
5765e553a25af79b1d196ff8a57cd762e617713f2b02623955d6466df4a81ba3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL sxtwl-2.0.7-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 790.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
4d5a605163310b20d75e23f417d5cd4da92817542f8df5d4b8b53666e61510c4
BLAKE2b-256 checksum
How to use checksums
c0a8e58fdc58892e4cdce68b13f44a13023009d7c051a6a80f62c5fc0173f192
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl

Download URL sxtwl-2.0.7-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl
Size 768.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
26d0d07c96c8ecfc278abe0a4155e9868abf79162fd34c2fc5789972b88d5bff
BLAKE2b-256 checksum
How to use checksums
b7d74c4b6a4a72aa930208b8c7c6072f702371062aff452f3894b70fbd72d01d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp27-cp27m-win_amd64.whl

Download URL sxtwl-2.0.7-cp27-cp27m-win_amd64.whl
Size 199.2 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
367b7ff264c240bf954975725573f9f46abf80a6e52a51249d0db8a1a2e8c639
BLAKE2b-256 checksum
How to use checksums
7fe275e3760d05ebed4ea3157813e3ec5752e7f16ef8be64bc82817699251dc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

Release files / sxtwl-2.0.7-cp27-cp27m-win32.whl

Download URL sxtwl-2.0.7-cp27-cp27m-win32.whl
Size 175.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
3bc20a21c21e91268935d3273b744ccee9166b741bb9bfa4af2c282a2f96bfa0
BLAKE2b-256 checksum
How to use checksums
a3e9f16a6a99e4351919cd8dc1900aef1f830f1d4b6fa1157467b76b3298be28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

Release files / sxtwl-2.0.7-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL sxtwl-2.0.7-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 790.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
6b76d0098adf6c713af6c397b0b8bb9420148d65a2657e350e3477dc06bce4dd
BLAKE2b-256 checksum
How to use checksums
5a17db3d64bfc69058b0d12e6db360c864e0f0bd2123870963a97c337c6a38f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL sxtwl-2.0.7-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl
Size 768.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4b5e477dc93c9b074ce9d8167ec6f3a19831c13623e2a1ab3dd83451e28aaab6
BLAKE2b-256 checksum
How to use checksums
03ad329497f743c8a8c71668805f82385de8e601ac496f59efd5403cc40245d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.17

Release files / sxtwl-2.0.7-cp27-cp27m-macosx_12_0_x86_64.whl

Download URL sxtwl-2.0.7-cp27-cp27m-macosx_12_0_x86_64.whl
Size 236.2 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
c3c875be3063be5117c38292d3b11dd98e85c9b8b0229c6f0374c0b70059a0c9
BLAKE2b-256 checksum
How to use checksums
547bc7112e18e21b8e1b1d8d463af647bc8ea284588a0c839c076d8be10b86dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.18

Release history Release notifications | RSS feed

This release

2.0.7 This release

58 release files

2.0.5

1 release file

2.0.4

59 release files

2.0.3

59 release files

2.0.2

40 release files

1.0.7

13 release files

1.0.6

13 release files

1.0.5

1 release file

1.0.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page