Skip to content

Commit

Permalink
oooooooooops
Browse files Browse the repository at this point in the history
  • Loading branch information
sctech-tr committed Oct 18, 2024
1 parent c59ba32 commit 98ecba9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ share/python-wheels/
.installed.cfg
*.egg
MANIFEST
*.pyz

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ A powerful Python tool for creating, editing, and managing RSS feeds with both p
- Validate feed structure and required elements
- Command-line interface for easy management
- Support for optional elements like author and publication date
- JSON export capability for feed items

## Installation

Expand All @@ -29,13 +28,22 @@ click>=8.0.0
pip install rsstools
```

### Installing via pyz
### Using via pyz

1. Download the latest pyz from the releases tab.
2. Run:
2. Make the file executable:
```bash
chmod +x rsstools.pyz
```
3. You can run it directly:
```bash
python rsstools.pyz
```

If you need to extract the contents:
```bash
pip install rsstools.pyz
unzip rsstools.pyz -d rsstools_extracted
cd rsstools_extracted
```

### Installing from source
Expand Down

0 comments on commit 98ecba9

Please sign in to comment.