morpc 0.2.3__tar.gz → 0.2.5__tar.gz

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.
morpc-0.2.5/PKG-INFO ADDED
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.4
2
+ Name: morpc
3
+ Version: 0.2.5
4
+ Summary: Data managment tools used by MORPC
5
+ Author-email: MORPC data team <dataandmaps@morpc.org>
6
+ License-Expression: MIT
7
+ Classifier: Development Status :: 1 - Planning
8
+ Classifier: Intended Audience :: Developers
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: requests
12
+ Requires-Dist: pandas
13
+ Requires-Dist: geopandas
14
+ Requires-Dist: frictionless
15
+ Requires-Dist: shapely
16
+ Requires-Dist: IPython
17
+ Requires-Dist: xlsxwriter
18
+
19
+ # MORPC Python package
20
+
21
+ ## Introduction
22
+
23
+ The MORPC data team maintains a package with contains commonly-used constants, mappings, and functions to allow for code-reuse in multiple scripts. The package documentation and code is available at the [morpc-py](https://github.com/morpc/morpc-py) repository in GitHub.
24
+
25
+ This package is still in development but currently contains the following modules:
26
+
27
+ - morpc - Main library. Includes contents which are broadly applicable for MORPC's work, including MORPC branding, region definitions and utilities, and general purpose data manipulation functions.
28
+ - morpc.frictionless - Functions and classes for working with metadata, including schemas, resources, and data packages. These are for internal processes that use the [frictionless-py](https://github.com/frictionlessdata/frictionless-py/tree/main) package. Frictionless was implemented by MORPRC roughly around 2025 to manage all metadata and to develop workflow documentation.
29
+ - morpc.census - Constants and functions that are relevant when working with Census data, including decennial census, ACS, and PEP.
30
+
31
+ ## Installation
32
+
33
+ Install via pip.
34
+
35
+
36
+ ```python
37
+ # !pip install morpc --upgrade
38
+ ```
39
+
40
+ ## Import morpc package
41
+
42
+
43
+ ```python
44
+ import morpc
45
+ ```
morpc-0.2.5/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # MORPC Python package
2
+
3
+ ## Introduction
4
+
5
+ The MORPC data team maintains a package with contains commonly-used constants, mappings, and functions to allow for code-reuse in multiple scripts. The package documentation and code is available at the [morpc-py](https://github.com/morpc/morpc-py) repository in GitHub.
6
+
7
+ This package is still in development but currently contains the following modules:
8
+
9
+ - morpc - Main library. Includes contents which are broadly applicable for MORPC's work, including MORPC branding, region definitions and utilities, and general purpose data manipulation functions.
10
+ - morpc.frictionless - Functions and classes for working with metadata, including schemas, resources, and data packages. These are for internal processes that use the [frictionless-py](https://github.com/frictionlessdata/frictionless-py/tree/main) package. Frictionless was implemented by MORPRC roughly around 2025 to manage all metadata and to develop workflow documentation.
11
+ - morpc.census - Constants and functions that are relevant when working with Census data, including decennial census, ACS, and PEP.
12
+
13
+ ## Installation
14
+
15
+ Install via pip.
16
+
17
+
18
+ ```python
19
+ # !pip install morpc --upgrade
20
+ ```
21
+
22
+ ## Import morpc package
23
+
24
+
25
+ ```python
26
+ import morpc
27
+ ```