Skip to content

Commit 6960be7

Browse files
committed
Added readme and updated gitignore
1 parent 3e6b853 commit 6960be7

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
.idea
12
venv
23
example.py
3-
.idea
4-
idea
4+
pandasxml.egg-info
5+
dist
6+
build

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# PandasXML
2+
PandasXML is a Python package that imports data from remote XML files into Pandas dataframes, so they can be manipulated or exported to other file formats, such as CSV.
3+
4+
### Usage
5+
6+
```python
7+
import pandas as pd
8+
import pandasxml as px
9+
10+
df = px.xml_to_df('https://practicaldatascience.co.uk/sitemap.xml', item='url')
11+
df.head()
12+
```
13+

0 commit comments

Comments
 (0)