Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mr #11

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open

mr #11

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# in-n-out
general purpose data ingestion app

# Run app in dev mode
An app to make reading/writing from different data sources a piece of cake.

If you wish to use the universal connector for your own application, checkout [in-n-out-clients](https://github.com/namiyousef/in-n-out-clients).

## Run app in dev mode
```bash
uvicorn main:app --reload
```
```
2 changes: 1 addition & 1 deletion in_n_out/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.2.1"
2 changes: 1 addition & 1 deletion in_n_out/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_file_type(file):
return "csv"
elif file.content_type == "text/tab-separated-values":
return "tsv"
elif file.content_type == "application/octer-stream":
elif file.content_type == "application/octet-stream":
return "parquet"


Expand Down
1 change: 1 addition & 0 deletions requirements/core.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ fastapi[all]==0.99.1
pandas
python-multipart
numpy
pyarrow
Loading