Metadata-Version: 2.1
Name: django-smb
Version: 0.1.0
Summary: A simple Django app to manage SMB locations (Windows Share directories).
Home-page: https://github.com/ZviBaratz/django_dicom
Author: Zvi Baratz
Author-email: z.baratz@gmail.com
License: MIT
Keywords: django smb windows share remote
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: pysmb
Provides-Extra: dev
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: yapf ; extra == 'dev'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# django-smb



A django app to manage data sourcing from remote [SMB][1] locations.

This app creates models for SMB location configuration and file syncing.
The models are complemented with some utility methods to facilitate data import.



Quick start
-----------

1. Add "django_smb" to your INSTALLED_APPS setting like this::

<pre>
    INSTALLED_APPS = [  
        ...  
        'django_smb',  
    ]  
</pre>

2. Include the dicom URLconf in your project urls.py like this::

<pre>
    path('smb/', include('django_smb.urls')),
</pre>

3. Run `python manage.py migrate` to create the dicom models.

4. Start the development server and visit http://127.0.0.1:8000/admin/.

5. Visit http://127.0.0.1:8000/dicom/.




[1]: https://docs.microsoft.com/en-us/windows/desktop/fileio/microsoft-smb-protocol-and-cifs-protocol-overview


