Metadata-Version: 2.1
Name: psstore4-ru
Version: 0.0.5
Summary: Play Station 4 Store Russian Python Interface
Home-page: https://github.com/Ian-Gabaraev/psstorereader
Author: Ian Gabaraev
Author-email: hrattisianees@gmail.com
License: UNKNOWN
Platform: UNKNOWN
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: bs4

### **Python interface for PlayStation4 Store Russia**

#### **Basic Usage**

```python
from psstore4ru.games import PS4Game
game = PS4Game(alias="EP0002-CUSA23470_00-CB4STANDARD00001")

print(game.as_json())
```

#### **psstore4 supports different output formats, namely:**
```python
from psstore4ru.games import PS4Game
game = PS4Game(alias="EP0002-CUSA23470_00-CB4STANDARD00001")

print(game.as_json())
print(game.as_yaml())
```

