Skip to main content

A python module for friend.tech

Project description

friendtech - A python module to interact with friend.tech platform

Run pip install friendtech to install the module!

The module uses friend.tech APIs (by default) and you can change the nodeURL to use any other node.

Developed by ItsAditya

For support join discord: FriendTechFeed

How to Use:

Platform Info

  1. Getting global activity (list of recent trades on the platform)
import friendtech



platform = friendtech.Platform()

globalActivity = platform.getGlobalActivity().json()

print(globalActivity)
  1. Getting recently joined users
import friendtech



platform = friendtech.Platform()

recentlyJoined = platform.getRecentlyJoinedUsers().json()

print(recentlyJoined)
  1. Getting address from twitter username
import friendtech



jwt = <YOUR JWT TOKEN> # get this from local storage of friendtech in your browser

platform = friendtech.Platform(jwt=jwt)

addressInfo = platform.getAddressFromTwitterUsername("itsaditya_xyz").json()

print(addressInfo)
  1. Getting share and profile info from address
import friendtech



platform = friendtech.Platform()

userInfo = platform.getInfoFromAddress("0xeab1e59d08e927ec19c9249f4841395bc4af43b8").json()

print(userInfo)
  1. Getting holders of an address
import friendtech



platform = friendtech.Platform()

holderInfo = platform.getHolders("0xeab1e59d08e927ec19c9249f4841395bc4af43b8").json()

print(holderInfo)
  1. Getting holdings of an address
import friendtech



platform = friendtech.Platform()

holdingInfo = platform.getHoldings("0xeab1e59d08e927ec19c9249f4841395bc4af43b8").json()

print(holdingInfo)
  1. Getting info from userID
import friendtech

platform = friendtech.Platform()

userInfo = platform.getInfoFromUserID(69).json()

print(userInfo)

Contract

  1. Getting buy price of a share
import friendtech



contract = friendtech.Contract()

buyPrice = contract.getBuyPrice("0xeab1e59d08e927ec19c9249f4841395bc4af43b8", 1)

print(buyPrice)
  1. Getting buy price after fee of a share
import friendtech



contract = friendtech.Contract()

buyPrice = contract.getBuyPriceAfterFee("0xeab1e59d08e927ec19c9249f4841395bc4af43b8", 1)

print(buyPrice)
  1. Getting sell price of a share
import friendtech



contract = friendtech.Contract()

sellPrice = contract.getSellPrice("0xeab1e59d08e927ec19c9249f4841395bc4af43b8", 1)

print(sellPrice)
  1. Getting sell price after fee of a share
import friendtech



contract = friendtech.Contract()

sellPrice = contract.getSellPriceAfterFee("0xeab1e59d08e927ec19c9249f4841395bc4af43b8", 1)

print(sellPrice)
  1. Getting shares supply
import friendtech



contract = friendtech.Contract()

shareSupply = contract.getSharesSupply("0xeab1e59d08e927ec19c9249f4841395bc4af43b8")

print(shareSupply)
  1. Getting shares owned by an address for subjectAddress
import friendtech



contract = friendtech.Contract()

address = "0xeab1e59d08e927ec19c9249f4841395bc4af43b8"

subjectAddress = "0x61da0a10f748a4d0c7060cd0d9907f9174f59a15"

sharesOwned = contract.getSharesSupply(address, subjectAddress)

print(sharesOwned)

WRITING FUNCTIONS OF CONTRACT

To execute writing functions you will need a wallet that has some eth on base network

  1. Create a new wallet (store the private key in .env always!)
from eth_account import Account

import secrets

priv = secrets.token_hex(32)

private_key = "0x" + priv

print ("SAVE BUT DO NOT SHARE THIS:", private_key)

acct = Account.from_key(private_key)

print("Address:", acct.address)

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

friendtech-0.1.1.tar.gz (4.5 kB view details)

Uploaded Source

File details

Details for the file friendtech-0.1.1.tar.gz.

File metadata

  • Download URL: friendtech-0.1.1.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for friendtech-0.1.1.tar.gz
Algorithm Hash digest
SHA256 7d10f79bb0fb5615c970e162b84c002de2dc3ff435438c17d050ebd6e6367c99
MD5 e4bdf0fd6db5f81ba98c269a47398fd7
BLAKE2b-256 ae2d68ec78f07f9581a27cbfebeae155c2986eb0e06221bba7e3cd7224fd897a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page