File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " snailpy"
7- version = " 1.0.9 "
7+ version = " 1.1.0 "
88dependencies = [
99 " requests" ,
1010]
11- requires-python = " >=3.7 "
11+ requires-python = " >=3.8 "
1212authors = [
1313 {name = " Nolan Simpson" , email = " nmsderp@gmail.com" },
1414]
Original file line number Diff line number Diff line change 22
33from .snailpy import *
44
5- print ('You are successfully using SnailPy v1.0.9!' )
5+ print ('You are successfully using SnailPy v1.1.0!' )
6+ print ('Anything made with 1.0.9 or under will most likely be broken due to server changes and the data loss.' )
Original file line number Diff line number Diff line change 11import requests
22
3- api_url = 'https://snailshare.xyz'
3+ v = "1.1.0"
4+ api_url = 'https://snailshare.dreamhosters.com'
45
56def customAPI (url ):
67 global api_url
@@ -66,3 +67,5 @@ def id_to_owner(args):
6667 except Exception as e :
6768 print (f"An error occurred: { e } " )
6869 return ""
70+ def version ():
71+ print (v )
You can’t perform that action at this time.
0 commit comments