You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove Streamlit web interface and CLI, focus on Python API
BREAKING CHANGES:
- Remove `socialmapper` CLI command
- Remove `socialmapper/app.py` (Streamlit web interface)
- Remove `socialmapper/cli.py` (CLI entry point)
- Remove `streamlit` and `streamlit-folium` dependencies
SocialMapper is now a pure Python library. All 5 core functions
remain unchanged: create_isochrone, get_poi, get_census_blocks,
get_census_data, create_map.
Updated documentation:
- README: Removed web interface section
- Quick start guides: Focus on Python API usage
- Security docs: Simplified to match actual implementation
- API reference: Updated function signatures
Added examples/live_api_example.py for real API usage demo.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+32Lines changed: 32 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,38 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [1.0.0] - 2025-01-22
9
+
10
+
### ⚠️ Breaking Changes
11
+
12
+
**Removed Streamlit Web Interface and CLI**
13
+
14
+
SocialMapper is now a pure Python library focused on the API. The Streamlit web interface and CLI entry point have been removed to simplify the package and reduce dependencies.
15
+
16
+
**Removed:**
17
+
-`socialmapper` CLI command
18
+
-`socialmapper/app.py` (Streamlit web interface)
19
+
-`socialmapper/cli.py` (CLI entry point)
20
+
-`streamlit` and `streamlit-folium` dependencies
21
+
22
+
**Migration:**
23
+
- Use the Python API directly instead of the web interface
0 commit comments