Skip to main content

Uses the Repl Talk api to do stuff

Project description

Repl Talk

This package is an asynchronous wrapper for the (very unofficial) Repl.it api for Repl Talk

Here's some stuff

import repltalk
import asyncio
client = repltalk.Client()

async def main():
	print('Leaderboards:')
	async for u in client.get_leaderboard():
		print(f'{u.username} ({u.cycles})')
	print('\nPosts:')
	for p in await client.boards.all.get_posts():
		print(p.title)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

more documentation coming soon™

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

repltalk-0.2.0.tar.gz (4.7 kB view hashes)

Uploaded Source

Built Distribution

repltalk-0.2.0-py3-none-any.whl (5.8 kB view hashes)

Uploaded Python 3

Supported by

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