Metadata-Version: 2.1
Name: best-hashtags
Version: 0.1.0
Summary: A simple hashtag scraper
Home-page: https://github.com/robertobalestri/best_hashtags
Author: Roberto Balestri
Author-email: roberto.balestri2@unibo.it
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: beautifulsoup4

robertobalestri: @workspace write a good readme, don't talk abotu scrape, tal kabout getting best hastags for a given word, and add a little usage example

Workspace: Collecting workspace informationHere is an improved README.md:

```md
# Best Hashtags

Best Hashtags is a Python tool that helps you find the best hashtags for a given word. It retrieves popular hashtags from the website `https://best-hashtags.com/hashtag/{search_word}/`.

## Features

- Retrieve top hashtags for any given word.
- Option to get a specific number of hashtags.
- Option to get hashtags in a random order.

## Installation

1. **Clone the repository**:
   ```bash
   git clone https://github.com/robertobalestri/best_hashtags.git
   cd best_hashtags
   ```

2. **Create a Python virtual environment**:
   ```bash
   python -m venv venv
   ```

3. **Activate the virtual environment**:
   - On Windows:
     ```bash
     venv\Scripts\activate
     ```
   - On macOS/Linux:
     ```bash
     source venv/bin/activate
     ```

4. **Install the required packages**:
   ```bash
   pip install -r requirements.txt
   ```

## Usage

To get the best hashtags for a given word, you can use the following command:

```bash
python src/best_hashtags.py <search_word>
```

Replace `<search_word>` with the word you want to search for hashtags.

### Example

```bash
python src/best_hashtags.py music
```

This will print the top 30 hashtags related to the word "music".

## Dependencies

- `requests`: For making HTTP requests.
- `beautifulsoup4`: For parsing HTML content.

## License

This project is licensed under the MIT License.
```

robertobalestri: ok, modify the file

GitHub Copilot: Sure, here is the updated README.md file:

```markdown
# Best Hashtags

Best Hashtags is a Python tool that helps you find the best hashtags for a given word. It retrieves popular hashtags from the website `https://best-hashtags.com/hashtag/{search_word}/`.

## Features

- Retrieve top hashtags for any given word.
- Option to get a specific number of hashtags.
- Option to get hashtags in a random order.

## Installation

1. **Clone the repository**:
   ```bash
   git clone https://github.com/robertobalestri/best_hashtags.git
   cd best_hashtags
   ```

2. **Create a Python virtual environment**:
   ```bash
   python -m venv venv
   ```

3. **Activate the virtual environment**:
   - On Windows:
     ```bash
     venv\Scripts\activate
     ```
   - On macOS/Linux:
     ```bash
     source venv/bin/activate
     ```

4. **Install the required packages**:
   ```bash
   pip install -r requirements.txt
   ```

## Usage

To get the best hashtags for a given word, you can use the following command:

```bash
python src/best_hashtags.py <search_word>
```

Replace `<search_word>` with the word you want to search for hashtags.

### Example

```bash
python src/best_hashtags.py music
```

This will print the top 30 hashtags related to the word "music".

## Dependencies

- `requests`: For making HTTP requests.
- `beautifulsoup4`: For parsing HTML content.

## License

This project is licensed under the MIT License.
```
