Metadata-Version: 2.1
Name: distrowatchapi
Version: 0.1
Summary: Take a top of distributions from distrowatch.com
Home-page: https://github.com/vovsss/DistrowatchAPI
Author: vovsss
Author-email: vova4ka@internet.ru
License: MIT
License-File: LICENSE

# DistrowatchAPI
Very simple unofficial distrowatch api

It allows to take a top of distributions from <a href="https:\\distrowatch.com">distrowatch.com<a>:

    from api.distrowatch import Distrowatch
    from api.periods import PeriodType
    import asyncio


    async def main():
        distrowatch = Distrowatch()
        print(await distrowatch.get_top_of_distributions(10, PeriodType.LAST_MONTH))


    if __name__ == "__main__":
        asyncio.run(main())
