diff --git a/autofollow.egg-info/PKG-INFO b/autofollow.egg-info/PKG-INFO index 71b964f..9a9394b 100644 --- a/autofollow.egg-info/PKG-INFO +++ b/autofollow.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: autofollow -Version: 0.1.1 +Version: 0.1.2 Summary: A package for automating interactions on social media platforms like x and GitHub Home-page: https://github.com/jacobsomer/autofollow Author: Jacob Somer @@ -13,13 +13,13 @@ Description-Content-Type: text/markdown License-File: LICENSE Requires-Dist: selenium -# AutoFollow +# autofollow -AutoFollow is a Python package for automating interactions on social media platforms like Twitter (X) and GitHub. +autofollow is a Python package for automating interactions on social media platforms like Twitter (X) and GitHub. ## Installation -You can install AutoFollow using pip: +You can install autofollow using pip: ```bash pip install autofollow @@ -27,10 +27,10 @@ pip install autofollow ## Usage -Here’s an example of how to use AutoFollow to automate actions on Twitter (X) and GitHub: +Here’s an example of how to use autofollow to automate actions on Twitter (X) and GitHub: ```python -from autofollow.agent import AutoFollowAgent +from autofollow.agent import autofollowAgent def main(): driver_path = "YOUR_DRIVER_PATH" @@ -41,7 +41,7 @@ def main(): github_password = "YOUR_GITHUB_PASSWORD" url = "https://github.com/orgs/Azure/people" - agent = AutoFollowAgent( + agent = autofollowAgent( driver_path=driver_path, profile_path=profile_path, twitter_username=twitter_username, @@ -61,11 +61,11 @@ if __name__ == "__main__": main() ``` -### AutoFollowAgent Methods +### autofollowAgent Methods #### `__init__(self, driver_path, profile_path, github_username=None, github_password=None)` -Initializes the AutoFollowAgent. +Initializes the autofollowAgent. - `driver_path`: Path to the ChromeDriver executable. Download ChromeDriver from [here](https://googlechromelabs.github.io/chrome-for-testing/). - `profile_path`: Path to the user profile directory for Chrome. To find this, type "chrome://version" into your Chrome browser's address bar, and look for the "Profile Path" variable. diff --git a/dist/autofollow-0.1.2-py3-none-any.whl b/dist/autofollow-0.1.2-py3-none-any.whl new file mode 100644 index 0000000..37595fd Binary files /dev/null and b/dist/autofollow-0.1.2-py3-none-any.whl differ diff --git a/dist/autofollow-0.1.2.tar.gz b/dist/autofollow-0.1.2.tar.gz new file mode 100644 index 0000000..fb18dd5 Binary files /dev/null and b/dist/autofollow-0.1.2.tar.gz differ diff --git a/setup.py b/setup.py index c4ec180..e8b593b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='autofollow', - version='0.1.1', + version='0.1.2', packages=find_packages(), install_requires=[ 'selenium',