Skip to content

Commit

Permalink
built new release
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsomer committed May 19, 2024
1 parent 64e5abf commit adce031
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions autofollow.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -13,24 +13,24 @@ 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
```

## 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"
Expand All @@ -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,
Expand All @@ -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.
Expand Down
Binary file added dist/autofollow-0.1.2-py3-none-any.whl
Binary file not shown.
Binary file added dist/autofollow-0.1.2.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='autofollow',
version='0.1.1',
version='0.1.2',
packages=find_packages(),
install_requires=[
'selenium',
Expand Down

0 comments on commit adce031

Please sign in to comment.