Metadata-Version: 2.1
Name: brp
Version: 0.0.5
Summary: convert burpsuite export to python-requests
Author-email: Roberto Castellotti <me@rcastellotti.dev>
License: MIT License
        
        Copyright (c) 2023 Roberto Castellotti
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/rcastellotti/brp
Keywords: feed,reader,tutorial
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: feedparser (>=5.2.0)
Requires-Dist: html2text
Requires-Dist: tomli ; python_version < "3.11"

# brp


`brp` is a simple tool to convert request from [burpsuite](https://portswigger.net/burp)'s HTTP History export to [python-requests](https://requests.readthedocs.io/en/latest/user/quickstart/).

To obtain the HTTP History export file just intercept some requests, go to HTTP History, select them, right click and click `Save Items`.

## install

`pip3 install brp`

## usage 

I mainly use it to embed requests in a python notebooks, by using:   
```python
brp -i burp.xml -o template.ipynb
```

There is not much more to say, if in doubt run `python3 brp.py --help`

### release new version
+ bump version
+ `python3 -m build`
+ `python3 -m twine upload dist/*`
