1
0
Fork 0
mirror of https://github.com/SocksPls/hltv-api synced 2025-04-30 15:43:07 +00:00

Merge pull request #11 from zGrav/master

fix(main): remove comments just to get some output
This commit is contained in:
David Silva 2018-02-10 13:36:51 +01:00 committed by GitHub
commit 92ff9f8a50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

40
main.py
View file

@ -212,23 +212,23 @@ if __name__ == "__main__":
import pprint
pp = pprint.PrettyPrinter()
# pp.pprint('top5')
# pp.pprint(top5teams())
#
# pp.pprint('top30')
# pp.pprint(top30teams())
#
# pp.pprint('top_players')
# pp.pprint(top_players())
#
# pp.pprint('get_players')
# pp.pprint(get_players('6137'))
#
# pp.pprint('get_team_info')
# pp.pprint(get_team_info('6137'))
#
# pp.pprint('get_matches')
# pp.pprint(get_matches())
#
# pp.pprint('get_results')
# pp.pprint(get_results())
pp.pprint('top5')
pp.pprint(top5teams())
pp.pprint('top30')
pp.pprint(top30teams())
pp.pprint('top_players')
pp.pprint(top_players())
pp.pprint('get_players')
pp.pprint(get_players('6137'))
pp.pprint('get_team_info')
pp.pprint(get_team_info('6137'))
pp.pprint('get_matches')
pp.pprint(get_matches())
pp.pprint('get_results')
pp.pprint(get_results())