Metadata-Version: 2.4
Name: ai_robot_position_scraper
Version: 0.0.6
Summary: Position scraper library for AI-Robot
Home-page: https://github.com/aruncs31s/ai_robot_position_scraper
Author: Arun CS
Author-email: your.email@example.com
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# ai_robo_position_scraper


## Installation 

```bash
pip install ai-robot-position-scraper
```


## Usage

```python
from position_scraper import extract_positions
print(
    extract_positions(
        "https://github.com/AI-Robot-GCEK/robo-initial-positions/blob/main/src/initial-positions.h"
    )
)
```
output
```
{'LA1_INITIAL_POSITION': 25, 'LA2_INITIAL_POSITION': 30, 'LA3_INITIAL_POSITION': 160, 'RA1_INITIAL_POSITION': 160, 'RA2_INITIAL_POSITION': 160, 'RA3_INITIAL_POSITION': 30, 'LH_INITIAL_POSITION': 93, 'RH_INITIAL_POSITION': 107, 'LL1_INITIAL_POSITION': 130, 'LL2_INITIAL_POSITION': 25, 'LL3_INITIAL_POSITION': 160, 'RL1_INITIAL_POSITION': 60, 'RL2_INITIAL_POSITION': 150, 'RL3_INITIAL_POSITION': 30, 'LF_INITIAL_POSITION': 90, 'RF_INITIAL_POSITION': 99}
```
