Skip to content

FloteApp/PHub-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHub Unofficial API

Unofficial API for PHub.com in Python

Usage

Create client

import PHub
client = PHub.PHub()

Grab stars

for star in client.getStars(10):
    print(star)
    print(star["name"])

Create client with search keywords

keywords = ["word1", "word2"]
client = PHub.PHub(keywords)

for video in client.getVideos(10,page=2):
    print(video)
    print(video["url"])

License

MIT license

About

Undocumented PHub API we will need to access

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages