Skip to content

Commit eefe582

Browse files
authored
download CSV batch (#1)
1 parent 208d826 commit eefe582

48 files changed

Lines changed: 3632 additions & 506 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,8 @@ venv
22
.idea/
33
__pycache__/
44
*.pyc
5+
*.csv
6+
*.db
7+
*.db.*
8+
*.csv.*
9+
*.sqbpro

Pipfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
flask = ">=3.0"
8+
flask-sqlalchemy = ">=3.1"
9+
flask-wtf = ">=1.2"
10+
wtforms = ">=3.1"
11+
12+
[dev-packages]
13+
14+
[requires]
15+
python_version = "3.13"

Pipfile.lock

Lines changed: 334 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Sample Tracker
1+
# Mass Spec Acquisition Tracker
22

33
Simple setup and run instructions.
44

0 commit comments

Comments
 (0)