Metadata-Version: 2.1
Name: fast-files
Version: 0.0.1
Summary: Serve static files with fastapi.
Home-page: https://github.com/alphabet5/fastapi-file-server
Author: John Burt
Author-email: johnburt.jab@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: fastapi
Requires-Dist: uvicorn
Requires-Dist: aiofiles
Requires-Dist: yamlarg

# fastapi-file-server
 Fastapi file server for quick serving of files.

## Example Usage
```bash
fast-files

fast-files --help

```

## Updating the package and uploading to pypi
Make sure the version information is updated before uploading. You cannot upload 2 copies with the same version.

```bash
sudo rm -r dist
python3.9 setup.py bdist_wheel --universal
twine upload dist/*
```

