https://github.com/simmsb/aiofizzbuzz
An asynchronous implementation of fizzbuzz
https://github.com/simmsb/aiofizzbuzz
Last synced: 8 months ago
JSON representation
An asynchronous implementation of fizzbuzz
- Host: GitHub
- URL: https://github.com/simmsb/aiofizzbuzz
- Owner: simmsb
- Created: 2017-04-23T13:45:32.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-23T15:53:47.000Z (about 9 years ago)
- Last Synced: 2025-04-22T00:03:14.374Z (about 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Aiofizzbuzz [](https://travis-ci.org/nitros12/aiofizzbuzz)
An asynchronous implementation of fizzbuzz
# Installation
To install aiofizzbuzz use the following command
`python3 -m pip install -U git+git://github.com/nitros12/aiofizzbuzz@master`
# Example Usage
```python
import asyncio
from aiofizzbuzz import AioFizzBuzz
loop = asyncio.get_event_loop()
async def main():
async for i in AioFizzBuzz(1, 101):
print(i)
loop.run_until_complete(main())
```