A statically-typed Pythonic language for .NET
# hello.spy
def greet(name: str) -> str:
return f"Hello, {name}!"
def main():
print(greet("World"))$ sharpyc run hello.spy
Hello, World!Requires .NET 10.0 SDK.
dotnet tool install -g sharpycgit clone https://github.com/antonsynd/sharpy.git
cd sharpy
dotnet build sharpy.sln
dotnet run --project src/Sharpy.Cli -- run hello.spy- Documentation Site — language reference, stdlib API, tooling
- Playground — try Sharpy in the browser
- Language Specification
- VS Code Extension — syntax highlighting, LSP integration
- Editor Integration — Neovim, Emacs, Sublime Text, Helix, Zed
- Contributing
- GitHub Issues — bug reports, feature requests
- GitHub Discussions
Licensed under either of Apache License, Version 2.0 or MIT License at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project shall be dual licensed as above, without any additional terms or conditions.