scrappi 0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
scrappi/__init__.py ADDED
@@ -0,0 +1,9 @@
1
+ """scrappi - EO Satellite product catalogue retrieval by API or file system"""
2
+
3
+ __author__ = "Sam Hunt <sam.hunt@npl.co.uk>"
4
+ __all__ = []
5
+
6
+ from ._version import get_versions
7
+
8
+ __version__ = get_versions()["version"]
9
+ del get_versions
scrappi/_version.py ADDED
@@ -0,0 +1,21 @@
1
+
2
+ # This file was generated by 'versioneer.py' (0.18) from
3
+ # revision-control system data, or from the parent directory name of an
4
+ # unpacked source archive. Distribution tarballs contain a pre-generated copy
5
+ # of this file.
6
+
7
+ import json
8
+
9
+ version_json = '''
10
+ {
11
+ "date": "2023-02-20T09:26:28+0000",
12
+ "dirty": false,
13
+ "error": null,
14
+ "full-revisionid": "acf153509f59a0218ecde39090c57efcc06b725d",
15
+ "version": "v0.0"
16
+ }
17
+ ''' # END VERSION_JSON
18
+
19
+
20
+ def get_versions():
21
+ return json.loads(version_json)
File without changes
@@ -0,0 +1,29 @@
1
+ """describe class"""
2
+
3
+ """___Built-In Modules___"""
4
+ #import here
5
+
6
+ """___Third-Party Modules___"""
7
+ #import here
8
+
9
+ """___NPL Modules___"""
10
+ #import here
11
+
12
+ """___Authorship___"""
13
+ __author__ = "Pieter De Vis"
14
+ __created__ = "01/02/2021"
15
+ __maintainer__ = "Pieter De Vis"
16
+ __email__ = "pieter.de.vis@npl.co.uk"
17
+ __status__ = "Development"
18
+
19
+
20
+ class ClassName:
21
+ def __init__(
22
+ self,
23
+ something
24
+ ):
25
+ self.something = something
26
+
27
+ def function1(self, argument1, argument2):
28
+ return argument1+argument2
29
+
File without changes
@@ -0,0 +1,26 @@
1
+ """Tests for classname module"""
2
+
3
+ """___Built-In Modules___"""
4
+ #import here
5
+
6
+ """___Third-Party Modules___"""
7
+ import unittest
8
+
9
+ """___NPL Modules___"""
10
+ #import here
11
+
12
+ """___Authorship___"""
13
+ __author__ = "Pieter De Vis"
14
+ __created__ = "01/02/2021"
15
+ __maintainer__ = "Pieter De Vis"
16
+ __email__ = "pieter.de.vis@npl.co.uk"
17
+ __status__ = "Development"
18
+
19
+
20
+ class TestClassName(unittest.TestCase):
21
+ def test_function1(self):
22
+ pass
23
+
24
+ if __name__ == "__main__":
25
+ unittest.main()
26
+
@@ -0,0 +1,70 @@
1
+ Metadata-Version: 2.1
2
+ Name: scrappi
3
+ Version: 0.0
4
+ Summary: EO Satellite product catalogue retrieval by API or file system
5
+ Home-page: https://gitlab.npl.co.uk/eco/tools/scrappi
6
+ Author: Sam Hunt
7
+ Author-email: sam.hunt@npl.co.uk
8
+ License: None
9
+ Classifier: Development Status :: 2 - Pre-Alpha
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Programming Language :: Python :: 3.6
12
+ Classifier: Programming Language :: Python :: 3.7
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Provides-Extra: dev
15
+ Requires-Dist: pre-commit ; extra == 'dev'
16
+ Requires-Dist: tox ; extra == 'dev'
17
+ Requires-Dist: sphinx ; extra == 'dev'
18
+ Requires-Dist: sphinx-rtd-theme ; extra == 'dev'
19
+
20
+ scrappi
21
+ =======
22
+
23
+ EO Satellite product catalogue retrieval by API or file system
24
+
25
+ Usage
26
+ =====
27
+
28
+ Virtual environment
29
+ -------------------
30
+
31
+ It's always recommended to make a virtual environment for each of your python
32
+ projects. Use your preferred virtual environment manager if you want and
33
+ activate it for the rest of these commands. If you're unfamiliar, read
34
+ https://realpython.com/python-virtual-environments-a-primer/. You can set one up
35
+ using::
36
+
37
+ python -m venv venv
38
+
39
+ and then activate it on Windows by using ``venv/Scripts/activate``.
40
+
41
+ Installation
42
+ ------------
43
+
44
+ Install your package and its dependancies by using::
45
+
46
+ pip install -e .
47
+
48
+ Development
49
+ -----------
50
+
51
+ For developing the package, you'll want to install the pre-commit hooks as well. Type::
52
+
53
+ pre-commit install
54
+
55
+
56
+ Note that from now on when you commit, `black` will check your code for styling
57
+ errors. If it finds any it will correct them, but the commit will be aborted.
58
+ This is so that you can check its work before you continue. If you're happy,
59
+ just commit again.
60
+
61
+ Compatibility
62
+ -------------
63
+
64
+ Licence
65
+ -------
66
+
67
+ Authors
68
+ -------
69
+
70
+ `scrappi` was written by `Sam Hunt <sam.hunt@npl.co.uk>`_.
@@ -0,0 +1,10 @@
1
+ scrappi/__init__.py,sha256=gKWBdisIbag0pUym5GnHcAgSRn4XeUS4r1X3k9IWwdQ,241
2
+ scrappi/_version.py,sha256=wcnuZlC7Y_oiAwycJz-KkLbT3JABtVzokYTQKJQko98,517
3
+ scrappi/submodule_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ scrappi/submodule_template/class_template.py,sha256=NQyELv4jBtQQOQ1Tp8e3vCcmZ9cOBLHPmcNNBguNR4s,556
5
+ scrappi/submodule_template/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ scrappi/submodule_template/tests/test_class_template.py,sha256=3pS7qXMOPC6u330RiNtxAf3e4qSCiyPN738W-isPzAE,507
7
+ scrappi-0.0.dist-info/METADATA,sha256=h-r56wz8ZI4t_Fa6V8Pts6NCk8aSc67z0dJ5U_szcXY,1900
8
+ scrappi-0.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
9
+ scrappi-0.0.dist-info/top_level.txt,sha256=2Y3ZdhkLgMBn_MyfApC9iBuXYERw5t_y5M_n5p3BUtE,8
10
+ scrappi-0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.41.2)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ scrappi