Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,19 @@ Use pip: `pip install access-parser`

Or install manually:
```bash
# Clone the repository
git clone https://github.com/ClarotyICS/access_parser.git
cd access_parser
python3 setup.py install

# Create a virtual environment (recommended)
python3 -m venv .venv # On Windows use: py -m venv .venv
source .venv/bin/activate # On Windows use: .venv\Scripts\activate

# Install using pip (modern approach)
pip install .

# Verify installation
python -c "import access_parser; print('Installed successfully')"
```

# Demo
Expand Down
664 changes: 375 additions & 289 deletions access_parser/access_parser.py

Large diffs are not rendered by default.

Loading