Skip to content

yugantar7/py-cricket

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

py-cricket library for Roanuz Cricket API

py-cricket library for Python using Roanuz Cricket API's. Easy to install and simple way to access all Roanuz Cricket API's. Its a Python library for getting Live Cricket Score, Cricket Schedule and Statistics.

Getting started

  1. Install py-cricket using pip install py-cricket

  2. Create a Cricket API App here My APP Login

  3. Import pycricket and create Authentication using 'RcaFileStorageHandler' or 'RcaStorageHandler' approach.For accessing each API we need to get the 'AccessToken'

    Example

    //Use your Cricket API Application details below.
    
    //RcaStorageHandler
    import pycricket
    handler = pycricket.RcaStorageHandler()
    start = pycricket.RcaApp(access_key="Your_AccessKey", \
                            secret_key="Your_SecretKey", \
                            app_id="Your_APP_ID", \
                            store_handler=handler \
                           )
    
    'OR'
    
    //RcaFileStorageHandler(from environmental variable)
    
    Environmental variable:
        RCA_ACCESS_KEY = access_key
        RCA_SECRET_KEY = secret_key
        RCA_APP_ID = app_id
    
    handler = pycricket.RcaFileStorageHandler()
    start = pycricket.RcaApp(store_handler=handler)
    
    // After Completing Authentication you can successfully access the API's.
    
    start.get_match("iplt20_2013_g30") //Return Match information in json format
    start.get_season("dev_season_2014") //Return Season information in json format
    For more free API's visit : https://www.cricketapi.com/docs/freeapi/

List of Roanuz Cricket API

Roanuz Cricket API

This Library uses the Roanuz Cricket API for fetching cricket scores and stats.
Learn more about Litzscore Cricket API on https://www.cricketapi.com/ 

Contact:

Feel free to call us anytime, We have an amazing team to support you.
You can contact us at : support@cricketapi.com

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%