Metadata-Version: 2.1
Name: roblopy
Version: 5.2
Summary: Roblox API built in Python
Home-page: https://github.com/jackprogramsjp/Roblopy
Author: Jack Murrow
Author-email: jack.murrow122005@gmail.com
License: MIT
Description: # Roblopy
        
        ![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)
        
        Roblox API built in Python.
        
        Migrating from 4.5 to 5.0, we will now be using snake case to follow PEP8. We are also adding type hints and docstrings.
        
        ## Installing
        
        Here is a simple way to install:
        ```
        pip install roblopy
        ```
        
        Here is a simple way to upgrade the package to the newest version:
        ```
        pip install roblopy --upgrade
        ```
        
        ## Quick Example
        
        ```python
        from roblopy import Users
        
        user_id = Users.get_id_from_username("ROBLOX")
        
        print("Roblox's User ID is " + str(user_id))
        ```
        
        ## Documentation
        
        https://github.com/jackprogramsjp/Roblopy/wiki
        
        ## Requirements
        
        * requests
        * Beautiful Soup
        
Keywords: Roblox,Roblox Python,Roblox Api
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
