Skip to content

Latest commit

 

History

History
60 lines (37 loc) · 1.4 KB

README.md

File metadata and controls

60 lines (37 loc) · 1.4 KB

Animal Crossing Villager Search Microservice

This microservice allows you to search for Animal Crossing villagers based on species or personality type.

Prerequisites

  • Python 3.x
  • ZeroMQ (pyzmq)

Getting Started

  1. Clone this repository:

    git clone https://github.com/crandquist/AC-Microservice
    cd ac-microservice
  2. Install dependencies:

    pip install -r requirements.txt
  3. Start the Microservice (Server):

    python server.py

    The microservice will start listening for search requests on tcp://localhost:5555.

  4. Run the Search Program:

    python search.py

    The search program will prompt you to enter search terms and display matching villagers.

    • To exit the search program, enter 'exit'.

Customization

  • Replace the villagers.json file with your own villagers' data in the specified format.
  • Modify the search logic in server.py to meet your specific requirements.

Additional Notes

  • This microservice is a demonstration and may require further customization for production use.
  • Ensure the microservice is running before using the search program or client.

Acknowledgments

License

This project is licensed under the MIT License - see the LICENSE file for details.