Juungle python package for juungle.net
Project description
NOTE: ALTHOUGH THIS PROJECT WORKS, IT IS STILL UNDER HEAVY DEVELOPMENT AND THINGS WILL CHANGE BEFORE 1.0
juungle-python
Python package to access Juungle.net API
Requirements
$ python -m pip -r requirements.txt
User credentials for Juungle.net
Using a config file
Create a file user-config.ini:
LOGIN_USERNAME="username@email"
LOGIN_PASSWORD="password"
While creaing the object
Inside the code
from juungle.nfts import NFTs
nfts = NFTs('username@email', 'password')
Usage
List all WAIFUs nfts that are being sale for 0.01 BCH or less
from juungle.nfts import NFTs
nfts = NFTs()
nfts.available_to_buy = True
nfts.purchased = False
nfts.token_group = 'WAIFU'
nfts.get_nfts()
for nft in nfts.list_nfts:
if nft.price_bch <= 0.01:
print(nft.token_name)
List all my NFTs
from juungle.nfts import NFTS
nfts = NFTs()
nfts.get_my_nfts()
for nft in nfts.list_nfts:
print(nft.token_name)
Tokens Group IDs
Because tokens/group name are not unique we have to use the HEX id that can be found at the simpleledger.info.
Juungle-python package provides a list of IDs just to make easier of the most common toekns:
| Token Name | Token ID |
|---|---|
| WAIFU | a2987562a405648a6c5622ed6c205fca6169faa8afeb96a994b48010bd186a66 |
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file juungle-0.5.tar.gz.
File metadata
- Download URL: juungle-0.5.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4739b145c7cf22fe7934b2a2b16a35a4250ed613df575890d1cf77fe4ca0594
|
|
| MD5 |
bb449ea9221ba00e60654857f831dc7a
|
|
| BLAKE2b-256 |
67ddf213c4696281ef8cd547cc40ce032da4a75d9b9ab722e33d88d45b361865
|
File details
Details for the file juungle-0.5-py3-none-any.whl.
File metadata
- Download URL: juungle-0.5-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
def53894baf00eabf63213d1c560c87e5252891f46718e4bbbb6d97de2ad19aa
|
|
| MD5 |
2f0bfbeaaeaf4473a055961d7a426eee
|
|
| BLAKE2b-256 |
7d0bba8fa1b926fcf096034f692f0290caf57fa1b2e5f47f54096dece0f01e80
|