{"id":28722493,"url":"https://github.com/veerupandey/sharesphere","last_synced_at":"2026-02-13T20:15:33.703Z","repository":{"id":274372267,"uuid":"922702537","full_name":"veerupandey/sharesphere","owner":"veerupandey","description":"ShareSphere is a multi-user file sharing system built with Streamlit, SQLAlchemy, and SQLite. It allows users to upload, share, and download files within a group or with specific users.","archived":false,"fork":false,"pushed_at":"2025-01-27T06:23:09.000Z","size":73,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-05T09:15:15.784Z","etag":null,"topics":["file-sharing","streamlit"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/veerupandey.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-01-26T21:54:30.000Z","updated_at":"2025-01-27T06:23:13.000Z","dependencies_parsed_at":"2025-06-15T09:01:23.905Z","dependency_job_id":"38256c94-ff20-4051-a13a-4db694418a1d","html_url":"https://github.com/veerupandey/sharesphere","commit_stats":null,"previous_names":["veerupandey/sharesphere"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/veerupandey/sharesphere","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veerupandey%2Fsharesphere","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veerupandey%2Fsharesphere/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veerupandey%2Fsharesphere/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veerupandey%2Fsharesphere/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/veerupandey","download_url":"https://codeload.github.com/veerupandey/sharesphere/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veerupandey%2Fsharesphere/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29416334,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T06:24:03.484Z","status":"ssl_error","status_checked_at":"2026-02-13T06:23:12.830Z","response_time":78,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["file-sharing","streamlit"],"created_at":"2025-06-15T09:00:54.741Z","updated_at":"2026-02-13T20:15:33.698Z","avatar_url":"https://github.com/veerupandey.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ShareSphere\n\nShareSphere is a multi-user file sharing system built with Streamlit, SQLAlchemy, and SQLite. It allows users to upload, share, and download files within a group or with specific users.\n\n## Features\n\n- User authentication and authorization\n- File upload and download\n- File sharing with groups or specific users\n- Admin panel for managing users, files, and groups\n\n## What ShareSphere Can Do\n\n### User Features\n\n- **Login and Logout**: Secure authentication for users to access the system.\n- **Upload Files**: Users can upload files and add comments.\n- **Download Files**: Users can download files they have uploaded or that have been shared with them.\n- **Share Files**: Users can share files with specific users or groups.\n- **View Shared Files**: Users can view files shared with them by others.\n- **Group Management**: Users can view and request to join groups.\n- **User Settings**: Users can change their password.\n\n### Admin Features\n\n- **Manage Users**: Admins can create, delete, and reset passwords for users.\n- **Manage Files**: Admins can view and delete any files uploaded by users.\n- **Manage Groups**: Admins can create and manage user groups.\n- **View Logs**: Admins can view system logs to monitor activities and troubleshoot issues.\n- **Approve/Reject Group Requests**: Admins can approve or reject user requests to join groups.\n\n## Setup\n\n### Prerequisites\n\n- Python 3.8 or higher\n\n### Installation\n\n#### Using pip\n\n1. Install the ShareSphere package using pip:\n\n```sh\npip install sharesphere\n```\n\n2. Initialize the database and create an admin account:\n\n```sh\nsharesphere init\n```\n\nDuring initialization, you will be prompted to provide configuration details such as database URL, upload folder, log folder, log level, backup folder, and backup schedule. These details will be saved to a `config.yaml` file.\n\n3. Start the ShareSphere application:\n\n```sh\nsharesphere start\n```\n\n4. Open your web browser and navigate to `http://localhost:8501` to access the ShareSphere application.\n\n#### Using Poetry for Development or Building from Source\n\n1. Clone the repository:\n\n```sh\ngit clone https://github.com/veerupandey/sharesphere.git\ncd sharesphere\n```\n\n2. Install the required packages using Poetry:\n\n```sh\npoetry install\n```\n\n3. Initialize the database:\n\n```sh\npoetry run sharesphere init\n```\n\n4. Run the Streamlit application:\n\n```sh\npoetry run streamlit run sharesphere/app.py\n```\n\n5. Open your web browser and navigate to `http://localhost:8501` to access the ShareSphere application.\n\n## Project Structure\n\n```\nsharesphere/\n├── admin.py\n├── app.py\n├── auth.py\n├── cli.py\n├── config.py\n├── database.py\n├── file_manager.py\n├── models.py\n└── README.md\n```\n\n- `admin.py`: Admin functionalities for managing users, files, and groups.\n- `app.py`: Main Streamlit application.\n- `auth.py`: Authentication and authorization logic.\n- `cli.py`: Command-line interface for initialization and starting the application.\n- `config.py`: Configuration settings.\n- `database.py`: Database setup and connection.\n- `file_manager.py`: File upload, download, and management logic.\n- `models.py`: SQLAlchemy models for the database.\n\n## Contributing\n\nContributions are welcome! Please fork the repository and submit a pull request with your changes.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Contact\n\nFor any questions or suggestions, please contact [rakeshpandey820@gmail.com](mailto:rakeshpandey820@gmail.com).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveerupandey%2Fsharesphere","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fveerupandey%2Fsharesphere","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveerupandey%2Fsharesphere/lists"}