Note 1: ⚠️ If you need API for buying stars and telegram premium, contact me on Telegram @JailBroken or iw4p@protonmail.com with Ton-Fragment subject.
Note 2: ⚠️ This package is still under develop and needs your contribution. Sometimes maybe you get an error, It's normal and fine; You can open an issue to keep me informed.
$ pip install ton-fragment
Also can be found on pypi
For Usernames(x, y) and Numbers(x, y): x can be one of ['auction', 'sold', 'sale'] and it's required. y is not required it can be ['listed', 'ending', 'price_asc']. the default is empty which triggerd price high to low function.
contact me on Telegram @JailBroken or iw4p@protonmail.com.
contact me on Telegram @JailBroken or iw4p@protonmail.com.
Get All Usernames - Top Auctions - Price high to low:
from ton_fragment.usernames.usernames import Usernames
all_usernames = Usernames('auction')
print(all_usernames.result)
Get All Usernames - Top Auctions - Price low to high:
from ton_fragment.usernames.usernames import Usernames
all_usernames = Usernames('auction', 'price_asc')
print(all_usernames.result)
Get All Usernames - Top Auctions - sort by recently listed:
from ton_fragment.usernames.usernames import Usernames
all_usernames = Usernames('auction', 'listed')
print(all_usernames.result)
Get All Usernames - Top Auctions - sort by ending soon:
from ton_fragment.usernames.usernames import Usernames
all_usernames = Usernames('auction', 'ending')
print(all_usernames.result)
Get All Numbers - For Sale:
from ton_fragment.numbers.numbers import Numbers
all_numbers = Numbers('sale')
print(all_numbers.result)
Get All Numbers - Sold - sort by recently listed:
from ton_fragment.numbers.numbers import Numbers
all_numbers = Numbers('sold', 'listed')
print(all_numbers.result)
Get All Numbers - For Sale - sort by ending soon:
from ton_fragment.numbers.numbers import Numbers
all_numbers = Numbers('sale', 'ending')
print(all_numbers.result)
Get a brief information about a number
from ton_fragment.numbers.number import Number
my_number = Number('8888888')
print(my_number.data)
print(my_number.number)
print(my_number.status)
print(my_number.ends_in)
Feel free to submit issues and enhancement requests or contact me via vida.page/nima.
Please refer to each project's style and contribution guidelines for submitting patches and additions. In general, we follow the "fork-and-pull" Git workflow.
- Fork the repo on GitHub
- Clone the project to your own machine
- Update the Version inside init.py
- Commit changes to your own branch
- Push your work back up to your fork
- Submit a Pull request so that we can review your changes