
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
poopmap-api
Advanced tools
An unofficial, unaffiliated Python client for the Poop Map API. This library allows you to interact with Poop Map's backend, log in, fetch feeds, leagues, posts, comments, likes, and more.
You can install PoopMap API from PyPI:
pip install poopmap-api
from poopmap_api import PoopmapAPI
# Login
api = PoopmapAPI.login_with_password('your_username', 'your_password')
# Get your feed
feed = api.get_feed()
print(feed)
# Get leagues
leagues = api.get_leagues()
# Join a league
api.post_join_league(league_id=123)
# Get a poop post
poop = api.get_poop_post(poop_id=456)
# Get comments and likes
comments = api.get_poop_comments(poop_id=456)
likes = api.get_poop_likes(poop_id=456)
PoopmapAPI.login_with_password(username, password)PoopmapAPI(authentication_token)get_feed()get_leagues()get_leagues_joinable()post_join_league(league_id)post_join_league_by_code(join_code)post_join_league_json(league_id)delete_leave_league(league_id)post_create_league(name, is_public, join_code)put_update_league(league_id, is_public)delete_league(league_id)get_notifications()get_poops()get_me_poops()get_poop_post(poop_id)post_create_poop(latitude, longitude, note, place, rating)put_update_poop(poop_id, note, rating, place)delete_poop(poop_id)post_like_poop(poop_id)post_unlike_poop(poop_id)post_create_comment(poop_id, comment)get_poop_comments(poop_id)delete_comment(poop_id, comment_id)get_followers(user_id)get_followings(user_id)post_create_following(user_id)delete_following(user_id)post_create_device()post_create_user(username, email, password, password_confirmation)put_update_user(user_id, **kwargs)get_users()get_user(user_id)get_user_stats(user_id)get_user_badges(user_id)get_world_poops()Contributions, bug reports, and suggestions are welcome! Please open an issue or submit a pull request.
https://api.poopmap.net/api/v1/docs can be a helpful reference source for endpoints and API details. However, note that this documentation is not of very high quality.
This project is released under the MIT License.
This project is not affiliated with or endorsed by Poop Map or its creators. Use at your own risk. Respect Poop Map's terms of service and privacy policy.
FAQs
An unofficial Python client library for the Poop Map API.
We found that poopmap-api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.