Skip to content

Commit 172d6cd

Browse files
committed
update
1 parent b3923ef commit 172d6cd

File tree

3 files changed

+58
-0
lines changed

3 files changed

+58
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
# testing
1414
/coverage
15+
/myenv
16+
myenv/
1517

1618
# next.js
1719
/.next/

python/.gitignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
12+
13+
# testing
14+
/coverage
15+
/myenv
16+
myenv/
17+
18+
# next.js
19+
/.next/
20+
/out/
21+
22+
# production
23+
/build
24+
25+
# misc
26+
.DS_Store
27+
*.pem
28+
29+
# debug
30+
npm-debug.log*
31+
yarn-debug.log*
32+
yarn-error.log*
33+
.pnpm-debug.log*
34+
35+
# env files (can opt-in for committing if needed)
36+
.env*
37+
38+
# vercel
39+
.vercel
40+
41+
# typescript
42+
*.tsbuildinfo
43+
next-env.d.ts

python/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@ This repository contains Python scripts to interact with the XRP Ledger (XRPL),
1919
pip install -r requirements.txt
2020
```
2121

22+
or:
23+
```bash
24+
# Create a virtual env
25+
python3 -m venv myenv
26+
27+
# Activate env
28+
source myenv/bin/activate # On macOS/Linux
29+
# myenv\Scripts\activate # On Windows
30+
31+
# Install xrpl-py in the virtual env
32+
pip install xrpl-py```
33+
```
34+
2235
## 📝 Usage
2336

2437
1. Generate a new wallet:

0 commit comments

Comments
 (0)