Coder Social home page Coder Social logo

musically-tiktok-api-python's Introduction

musically tiktok api python

Musically ( Tiktok ) api python open source free...

I not Updating

Required

  • Python 3.x
  • Json
  • requests

Wiki Info

Login Username, Password

if captcha check demo.py

print(api.login("username","password"))

Home Video List ( No Require Session )

# Cookie Active User
# home_list = api.home_list(api.active_user)
# No Cookie
home_list = api.home_list()
print(home_list)

Search User ( No Require Session )

search = api.search_user(text='teamtolga')
print(search)

User Follower List ( Require Session )

follower = api.follow_list(user_id=6594722549190574086,count=20,session=api.active_user['cookies'])
print(follower)	

User Following List ( Require Session )

following = api.following_list(user_id=6594722549190574086,count=20,session=api.active_user['cookies'])
print(following)		

Like and Unlike Video ( Require Session )

like = api.like_post(aweme_id='6632541425961536773',type='1',session=api.active_user['cookies'])
print(like)
unlike = api.like_post(aweme_id='6632541425961536773',type='0',session=api.active_user['cookies'])
print(unlike)

increase monitoring ( Require Session )

for x in range(255):
    	view = api.view_post(aweme_id=6632541425961536773,session=api.active_user['cookies'])
    	print(view)

Follow and Unfollow ( Require Session )

follow = api.follow(user_id='6594722549190574086',type=1,session=api.active_user['cookies'])
print(follow)
unfollow = api.follow(user_id='6594722549190574086',type=0,session=api.active_user['cookies'])
print(unfollow)

Get User İnfo ( No Require Session )

user_info = api.user_info(user_id=6594722549190574086,session=api.active_user['cookies'])
print(user_info)

User Video List ( No Require Session )

user_video_list = api.user_video_list(user_id=6594722549190574086)
print(user_video_list)

Search Tags ( No Require Session )

tags = api.search_hashtag(text="teamtolga")
print(tags)

Tag list Videos ( No Require Session )

tag_videos = api.list_hashtag(cid=cid)
print(tag_videos)	

Get QRCode ( No Require Session )

getQRCode= api.getQRCode(user_id='6646182534211108870')
print(getQRCode)	

musically-tiktok-api-python's People

Contributors

tolgatasci avatar

Watchers

 avatar

Forkers

gh48e

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.