Metadata-Version: 2.1
Name: postman-drf
Version: 0.1.1
Summary: A package to convert Postman collections to Django rest framework code and vice versa.
Home-page: https://github.com/HasanAdeli/postman-drf
Author: Hassan adeli
Author-email: hasanadeli1374@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer

# postman-drf
A package to convert Postman collections to Django rest framework code and vice versa.
## installation
```shell
pip install postman-drf
```
## usage
```shell
python -m postman_drf [OPTIONS] COMMAND [ARGS]
```
To convert a Postman collection to Django rest framework test, you can use the following command:
```shell
python -m postman_drf postman_to_drf Example_collection.json tests.py
```
